File tree Expand file tree Collapse file tree 2 files changed +23
-0
lines changed Expand file tree Collapse file tree 2 files changed +23
-0
lines changed Original file line number Diff line number Diff line change
1
+ import React from 'react'
2
+
3
+ const Sponsors = ( ) => {
4
+ return (
5
+ < section className = "flex flex-col min-h-screen py-8 px-24" >
6
+ < div >
7
+ < p > 04</ p >
8
+ < h2 > SUPPORT CSESOC</ h2 >
9
+ </ div >
10
+ < div className = "flex-1 grid grid-cols-10 grid-row-2 py-80 px-64" >
11
+ < div className = "bg-blue-300 sponsors col-span-4 row-start-1 row-end-3" > </ div >
12
+ < div className = "bg-red-300 atlassian col-span-3 row-start-1 row-end-2" > </ div >
13
+ < div className = "bg-yellow-300 google col-span-3 row-start-1 row-end-2" > </ div >
14
+ < div className = "bg-pink-300 freelancer col-span-3 row-start-2 row-end-3" > </ div >
15
+ < div className = "bg-green-300 microsoft col-span-3 row-start-2 row-end-3" > </ div >
16
+ </ div >
17
+ </ section >
18
+ )
19
+ }
20
+
21
+ export default Sponsors
Original file line number Diff line number Diff line change 1
1
import Image from "next/image" ;
2
2
import Landing from "@/components/Landing" ;
3
+ import Sponsors from "@/components/Sponsors" ;
3
4
4
5
export default function Home ( ) {
5
6
return (
6
7
< section >
7
8
< Landing />
9
+ < Sponsors />
8
10
</ section >
9
11
) ;
10
12
}
You can’t perform that action at this time.
0 commit comments