Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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";

Expand All @@ -18,6 +19,12 @@ const Home = () => {
<div id="theme" className="flex flex-col items-center justify-center h-screen text-white">
<RetroRemix />
</div>
<div className="font-akshar flex flex-col items-center justify-center h-fit text-white">
<SponserInfo />
</div>
<div className="flex flex-col items-center justify-center min-h-screen text-white">section</div>
<div className="flex flex-col items-center justify-center min-h-screen text-white">section</div>
<div id="about" className="flex flex-col items-center justify-center min-h-screen text-white">section</div>

<div className="flex flex-col items-center justify-center min-h-screen text-white"></div>
<div className="h-auto w-full">
Comment on lines 21 to 30
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this should all be under the sponsors page not the main page. (under /app/sponsors/page.tsx).

Copy link
Author

@araujozBU araujozBU Sep 5, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I messaged on slack but, I couldn't find the graphs from the design team, and I also didn't have the reviews to put in there. So I just put this up as a draft with the complete skeleton and layout work complete.

Copy link
Contributor

@d0w d0w Sep 12, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

update: we're still working with design right now to get some new graphics

Expand Down
29 changes: 29 additions & 0 deletions components/SponsorInfo.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
import React from 'react';

const SponsorInfo = () => {
return (
<section className='h-fit w-[90%] flex flex-col items-center justify-center p-4 mt-[35%] md:p-8 text-white'>
<div className='w-full max-w-7xl flex flex-col mx-auto items-center justify-center'>
<h2 className='font-neuropol text-3xl bg-white/10 backdrop-blur-md md:text-5xl rounded-full p-10 font-bold text-center mb-12 shadow-xl/30 w-fit'>
Let&apos;s talk numbers!
</h2>
<div className='grid grid-cols-1 md:grid-cols-3 gap-8 w-full'>
{/* Card 1 */}
<div className="bg-white/10 backdrop-blur-md border w-auto border-white/20 rounded-3xl shadow-xl/30 p-8 h-96 flex items-center justify-center">
<p className="text-xl">Graph 1 Area</p>
</div>
{/* Card 2 */}
<div className="bg-white/10 backdrop-blur-md border w-auto border-white/20 rounded-3xl shadow-xl/30 p-8 h-96 flex items-center justify-center">
<p className="text-xl">Graph 2 Area</p>
</div>
{/* Card 3 */}
<div className="bg-white/10 backdrop-blur-md border w-auto border-white/20 rounded-3xl shadow-xl/30 p-8 h-96 flex items-center justify-center">
<p className="text-xl">Info/Reviews Area</p>
</div>
</div>
</div>
</section>
);
};

export default SponsorInfo;