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() {
-
);
}
diff --git a/app/code-of-conduct/page.tsx b/app/code-of-conduct/page.tsx
new file mode 100644
index 0000000..0593eb5
--- /dev/null
+++ b/app/code-of-conduct/page.tsx
@@ -0,0 +1,35 @@
+export default function CodeOfConductPage() {
+ return (
+
+
+ Code of Conduct
+
+
+
+ We value respect and inclusivity in all events.
+
+
+
+ The Python community is made up of members from around the globe with a
+ diverse set of skills, personalities, and experiences. It is through
+ these differences that our community experiences great successes and
+ continued growth.
+
+
+
+ To clarify our expectations, all participants, including attendees,
+ speakers, exhibitors, organizers, and volunteers at any DurianPy event,
+ must adhere to the following{' '}
+
+ Code of Conduct
+
+ .
+
+
+ );
+}
diff --git a/app/layout.tsx b/app/layout.tsx
index 3187df6..8edc913 100644
--- a/app/layout.tsx
+++ b/app/layout.tsx
@@ -2,6 +2,7 @@ import type { Metadata } from 'next';
import '@/styles/globals.css';
import Navbar from '@/components/navs/public/Navbar';
import { ReactLenis } from 'lenis/react';
+import { Footer } from './(home)/components/Footer';
const head = {
title: 'DurianPy',
@@ -43,6 +44,7 @@ export default function RootLayout({
{children}
+