-
Notifications
You must be signed in to change notification settings - Fork 2
/
extras.ts
38 lines (36 loc) · 954 Bytes
/
extras.ts
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
const projectdescription =
"Blaze is a project management system, built with Nextjs in Typescript, Firebase for authentication, Planetscale for database management and Recoil and recoil for state management. It's a desktop-oriented web application with duo-theming that allows users organize their tasks, priorities and schedules.";
const letter = {
hidden: { opacity: 0, y: 50, color: '#718' },
visible: {
opacity: 1,
y: 0,
color: '#e1e1e1',
},
};
const sentence = {
hidden: { opacity: 1 },
visible: {
opacity: 1,
transition: {
delay: 0.2,
staggerChildren: 0.1,
},
},
};
export { projectdescription, sentence, letter };
// const Tasks = await prisma.category.findMany({
// select: {
// id: true,
// title: true,
// tasks: {
// orderBy: {
// id: 'desc',
// },
// },
// },
// orderBy: {
// id: 'asc',
// },
// });
// return res.status(200).json(Tasks);