From b93beb13288711fd649c3a133a4f3a2162070b4a Mon Sep 17 00:00:00 2001 From: Rajat Rajdeep <46029666+RajatRajdeep@users.noreply.github.com> Date: Mon, 6 Jan 2025 20:48:30 +0530 Subject: [PATCH] Add sponsor section (#47) --- data/conference.js | 3 +++ data/navItems.js | 10 ++++++++++ data/sponsors.js | 18 +++++++++--------- src/app/layout.js | 2 +- src/app/page.jsx | 2 +- src/components/Header.jsx | 2 +- src/components/Hero.jsx | 23 +---------------------- src/components/MeetOrganizers.jsx | 6 +++++- src/components/Sponsors.jsx | 9 ++++++--- 9 files changed, 37 insertions(+), 38 deletions(-) diff --git a/data/conference.js b/data/conference.js index 718d3b6..4115f9e 100644 --- a/data/conference.js +++ b/data/conference.js @@ -25,6 +25,9 @@ export const KEY_LINKS = { cfpUrl: 'https://www.papercall.io/pyconfhyd2025', interestedInSponsoringLabel: 'INTERESTED IN SPONSORING', interestedInSponsoringUrl: 'https://forms.gle/d5cg5WpayP9mEfAm9', + sponsorshipProspectusLabel: 'SPONSORSHIP PROSPECTUS', + sponsorshipProspectusUrl: + 'https://drive.google.com/file/d/15gfdVu8FyVP9-zohx_y56jmW1v-2DUid/view?usp=sharing', }; export const SOCIALS = [ diff --git a/data/navItems.js b/data/navItems.js index e23a866..386353b 100644 --- a/data/navItems.js +++ b/data/navItems.js @@ -4,6 +4,16 @@ export const NAV_ITEMS = [ path: '/', target: '_self', }, + { + name: 'Sponsors', + path: '/#sponsors', + target: '_self', + }, + { + name: 'Meet our Organizers', + path: '/#organizers', + target: '_self', + }, { name: 'Code Of Conduct', path: 'https://docs.google.com/document/d/1yjPaVdsQCbowelwI1LlGco3CFGG3vZKhGiMYXDOOKrY', diff --git a/data/sponsors.js b/data/sponsors.js index fb55d5e..e6799a6 100644 --- a/data/sponsors.js +++ b/data/sponsors.js @@ -5,13 +5,13 @@ export const SPONSORS_INFO = { }; export const SPONSORS = { - Platinum: [ - { - id: 1, - name: 'Python Software Foundation', - description: 'The organization behind Python programming language', - hyperLink: 'https://www.python.org/psf/', - logoUrl: '/images/logo.svg', - }, - ], + // Platinum: [ + // { + // id: 1, + // name: 'Python Software Foundation', + // description: 'The organization behind Python programming language', + // hyperLink: 'https://www.python.org/psf/', + // logoUrl: '/images/logo.svg', + // }, + // ], }; diff --git a/src/app/layout.js b/src/app/layout.js index 34ef0fe..8145c52 100644 --- a/src/app/layout.js +++ b/src/app/layout.js @@ -19,7 +19,7 @@ export const metadata = { export default function RootLayout({ children }) { return ( - +
} />
{children}
diff --git a/src/app/page.jsx b/src/app/page.jsx index e7ccbd2..34d67e9 100644 --- a/src/app/page.jsx +++ b/src/app/page.jsx @@ -6,8 +6,8 @@ export default function Home() { return ( <> + - {/* */} ); } diff --git a/src/components/Header.jsx b/src/components/Header.jsx index 1853dd4..3f36696 100644 --- a/src/components/Header.jsx +++ b/src/components/Header.jsx @@ -40,7 +40,7 @@ const Header = ({ themeToggle }) => { }; return ( -
+