diff --git a/app/page.tsx b/app/page.tsx index c9973f1..f666a58 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -4,6 +4,7 @@ import { routes } from "./const"; import Navbar from "@/components/Navbar"; import Tracks from "./tracks/Tracks"; import Header from "@/components/Header"; +import SponserInfo from "@/components/SponsorInfo" import RetroRemix from "@/components/RetroRemix/RetroRemix"; import Schedule from "@/components/Schedule/Schedule"; @@ -18,6 +19,12 @@ const Home = () => {
+
+ +
+
section
+
section
+
section
diff --git a/components/SponsorInfo.tsx b/components/SponsorInfo.tsx new file mode 100644 index 0000000..b1d195e --- /dev/null +++ b/components/SponsorInfo.tsx @@ -0,0 +1,29 @@ +import React from 'react'; + +const SponsorInfo = () => { + return ( +
+
+

+ Let's talk numbers! +

+
+ {/* Card 1 */} +
+

Graph 1 Area

+
+ {/* Card 2 */} +
+

Graph 2 Area

+
+ {/* Card 3 */} +
+

Info/Reviews Area

+
+
+
+
+ ); +}; + +export default SponsorInfo; \ No newline at end of file