-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlocaldata.tsx
54 lines (53 loc) · 1.56 KB
/
localdata.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import { Contact, Project } from "@prisma/client";
export const links: Contact[] = [
{
id: "111",
profileId: "x",
link: "https://github.com/daishek",
type: "Github",
createdAt: new Date(),
updatedAt: new Date(),
},
{
id: "215",
profileId: "x",
link: "https://facebook.com/daichekkal",
type: "Facebook",
createdAt: new Date(),
updatedAt: new Date(),
},
{
id: "214855",
profileId: "x",
link: "https://twitter.com/daixek",
type: "Twitter",
createdAt: new Date(),
updatedAt: new Date(),
},
];
export const projects: Project[] = [
{
id: "111",
profileId: "x",
title: "Job portal",
description:
"A platform where you can advertise jobs and search for resumes",
year: 2022,
client: "",
link: "#",
createdAt: new Date(),
updatedAt: new Date(),
},
{
id: "458",
profileId: "x",
title: "Autorent",
description:
"Autorent is an Algerian car rental platform. This platform is the link between Agencies and the client. It helps Agencies to manage the car business and the clients to book vehicles according to their requirements and needs and inquiry about new cars. Both the client and the Agency administrator(s) have different rights from their perspectives as well as different credentials. Autorent was made by 3 students from Mohamed El Bachir El Ibrahimi University of Bordj Bou Arréridj El-Anasser as a final undergraduate project.",
year: 2022,
client: "",
link: "#",
createdAt: new Date(),
updatedAt: new Date(),
},
];