diff --git a/app/(home)/components/Footer.tsx b/app/(home)/components/Footer.tsx index 7c17201..e935861 100644 --- a/app/(home)/components/Footer.tsx +++ b/app/(home)/components/Footer.tsx @@ -42,7 +42,12 @@ const socialLinks = [ const links = [ { label: 'Home', href: '/' }, - { label: 'SIGs', href: '/sigs' }, + // { label: 'SIGs', href: '/sigs' }, + { + label: 'Code of Conduct', + href: '/code-of-conduct', + external: false, + }, { label: 'About', href: 'https://www.meetup.com/durianpy/', external: true }, { label: 'Speak', diff --git a/app/(home)/page.tsx b/app/(home)/page.tsx index b64309e..3362a3a 100644 --- a/app/(home)/page.tsx +++ b/app/(home)/page.tsx @@ -4,7 +4,6 @@ import { CTASection } from './components/CTASection'; import { StatsAndReviews } from './components/StatsAndReviews'; import { PythonFoundation } from './components//PythonFoundation'; import { Partners } from './components//Partners'; -import { Footer } from './components//Footer'; export default function HomePage() { return ( @@ -15,7 +14,6 @@ export default function HomePage() { -