@@ -11,33 +11,34 @@ const NAV_ITEMS = [
11
11
]
12
12
13
13
export default function Home ( ) {
14
- return (
15
- < div className = "max-w-7xl mx-auto px-4 sm:px-6 lg:px-8" >
16
- < div className = "my-10 sm:my-20 text-center font-extrabold text-5xl sm:text-6xl" >
17
- Ignite the Meaning?
18
- </ div >
14
+ return ( < >
15
+ </ >
16
+ // <div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
17
+ // <div className="my-10 sm:my-20 text-center font-extrabold text-5xl sm:text-6xl">
18
+ // Ignite the Meaning?
19
+ // </div>
19
20
20
- < div className = "grid sm:grid-cols-3 gap-6" >
21
- { NAV_ITEMS . map ( ( { title, image } , index ) => (
22
- < Link
23
- key = { index }
24
- href = { `/${ title . toLowerCase ( ) . replace ( ' ' , '-' ) } ` }
25
- className = "group flex flex-col items-center p-2 rounded-md transition duration-150 ease-in-out w-full hover:opacity-80"
26
- >
27
- < div className = "bg-gray-300 w-full h-11 flex justify-center items-center text-balance" >
28
- { /* Image soon... */ }
29
- </ div >
30
- { /* <Image
31
- src={image}
32
- alt={title}
33
- className="transition-transform duration-300 group-hover:scale-105"
34
- /> */ }
35
- < div className = "mt-2 h-20 flex justify-center items-center text-center font-bold text-xl" >
36
- { title }
37
- </ div >
38
- </ Link >
39
- ) ) }
40
- </ div >
41
- </ div >
21
+ // <div className="grid sm:grid-cols-3 gap-6">
22
+ // {NAV_ITEMS.map(({ title, image }, index) => (
23
+ // <Link
24
+ // key={index}
25
+ // href={`/${title.toLowerCase().replace(' ', '-')}`}
26
+ // className="group flex flex-col items-center p-2 rounded-md transition duration-150 ease-in-out w-full hover:opacity-80"
27
+ // >
28
+ // <div className="bg-gray-300 w-full h-11 flex justify-center items-center text-balance">
29
+ // {/* Image soon... */}
30
+ // </div>
31
+ // {/* <Image
32
+ // src={image}
33
+ // alt={title}
34
+ // className="transition-transform duration-300 group-hover:scale-105"
35
+ // /> */ }
36
+ // <div className="mt-2 h-20 flex justify-center items-center text-center font-bold text-xl">
37
+ // {title}
38
+ // </div>
39
+ // </Link>
40
+ // ))}
41
+ // </div>
42
+ // </div>
42
43
)
43
44
}
0 commit comments