1
- import Image from "next/image" ;
2
- import { Card } from "@repo/ui/card" ;
1
+ import Image from 'next/image'
3
2
4
3
function Gradient ( {
5
4
conic,
6
5
className,
7
6
small,
8
7
} : {
9
- small ?: boolean ;
10
- conic ?: boolean ;
11
- className ?: string ;
8
+ small ?: boolean
9
+ conic ?: boolean
10
+ className ?: string
12
11
} ) : JSX . Element {
13
12
return (
14
13
< span
15
14
className = { `absolute mix-blend-normal will-change-[filter] rounded-[100%] ${
16
- small ? " blur-[32px]" : " blur-[75px]"
17
- } ${ conic ? " bg-glow-conic" : "" } ${ className } `}
15
+ small ? ' blur-[32px]' : ' blur-[75px]'
16
+ } ${ conic ? ' bg-glow-conic' : '' } ${ className } `}
18
17
/>
19
- ) ;
18
+ )
20
19
}
21
20
22
- const LINKS = [
23
- {
24
- title : "Docs" ,
25
- href : "https://turbo.build/repo/docs" ,
26
- description : "Find in-depth information about Turborepo features and API." ,
27
- } ,
28
- {
29
- title : "Learn" ,
30
- href : "https://turbo.build/repo/docs/handbook" ,
31
- description : "Learn more about monorepos with our handbook." ,
32
- } ,
33
- {
34
- title : "Templates" ,
35
- href : "https://turbo.build/repo/docs/getting-started/from-example" ,
36
- description : "Choose from over 15 examples and deploy with a single click." ,
37
- } ,
38
- {
39
- title : "Deploy" ,
40
- href : "https://vercel.com/new" ,
41
- description :
42
- "Instantly deploy your Turborepo to a shareable URL with Vercel." ,
43
- } ,
44
- ] ;
45
-
46
21
export default function Page ( ) : JSX . Element {
47
22
return (
48
23
< main className = "flex flex-col items-center justify-between min-h-screen p-24" >
@@ -58,7 +33,7 @@ export default function Page(): JSX.Element {
58
33
rel = "noopener noreferrer"
59
34
target = "_blank"
60
35
>
61
- By{ " " }
36
+ By{ ' ' }
62
37
< Image
63
38
alt = "Vercel Logo"
64
39
className = "invert"
@@ -125,14 +100,6 @@ export default function Page(): JSX.Element {
125
100
</ div >
126
101
</ div >
127
102
</ div >
128
-
129
- < div className = "grid mb-32 text-center lg:max-w-5xl lg:w-full lg:mb-0 lg:grid-cols-4 lg:text-left" >
130
- { LINKS . map ( ( { title, href, description } ) => (
131
- < Card href = { href } key = { title } title = { title } >
132
- { description }
133
- </ Card >
134
- ) ) }
135
- </ div >
136
103
</ main >
137
- ) ;
104
+ )
138
105
}
0 commit comments