Skip to content
Merged
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
2 changes: 1 addition & 1 deletion src/components/landing/CurrentSponsors.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { motion } from 'framer-motion';

const CurrentSponsors = () => {
return (
<section className="py-8 bg-transparent relative z-20">
<section className="py-8 bg-transparent relative z-20" id="sponsors">
<div className="container mx-auto px-4 flex justify-center">
<motion.div
initial={{ opacity: 0, y: 30 }}
Expand Down
9 changes: 0 additions & 9 deletions src/components/landing/LandingOrganizedBy.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,15 +42,6 @@ const LandingOrganizedBy = () => {
</motion.div>
</div>

<div className="flex justify-center mb-10">
<a
href="/sponsors"
className="inline-flex items-center gap-2 rounded-full border border-sky-500/40 bg-sky-500/10 px-4 py-2 text-xs font-mono uppercase tracking-[0.24em] text-sky-300 transition hover:border-sky-400 hover:bg-sky-500/20 hover:text-white"
>
Sponsors
</a>
</div>

{/* 3 Organizers Grid */}
<div className="grid grid-cols-1 md:grid-cols-3 gap-8">
{organizers.map((org, i) => (
Expand Down
4 changes: 4 additions & 0 deletions src/components/shared/TopBar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,10 @@ const TopBar = ({ UTMSource = null }) => {
}
]
},
{
label: "Sponsors",
link: "/#sponsors"
},
{
label: "Get Started",
link: "/resources",
Expand Down
Loading