Skip to content

Commit 7e25999

Browse files
committed
Implemented grid design for sponsors.
1 parent 2128633 commit 7e25999

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed

components/Sponsors/index.tsx

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
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

pages/index.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
import Image from "next/image";
22
import Landing from "@/components/Landing";
3+
import Sponsors from "@/components/Sponsors";
34

45
export default function Home() {
56
return (
67
<section>
78
<Landing />
9+
<Sponsors />
810
</section>
911
);
1012
}

0 commit comments

Comments
 (0)