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 11import Image from "next/image" ;
22import Landing from "@/components/Landing" ;
3+ import Sponsors from "@/components/Sponsors" ;
34
45export default function Home ( ) {
56 return (
67 < section >
78 < Landing />
9+ < Sponsors />
810 </ section >
911 ) ;
1012}
You can’t perform that action at this time.
0 commit comments