Skip to content

Commit 3936cff

Browse files
committed
feat: add Code of Conduct and Disclaimer pages with content and testimonials
- Introduced CodeOfConductContent and DisclaimerContent components for respective pages. - Implemented dynamic table of contents and smooth scrolling for better navigation. - Added testimonials section to enhance user engagement. - Updated page components to utilize new content components for improved structure and readability.
1 parent 1bcdd8b commit 3936cff

14 files changed

Lines changed: 2959 additions & 32 deletions

File tree

app/(landing)/code-of-conduct/CodeOfConductContent.tsx

Lines changed: 732 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,12 @@
11
import React from 'react';
22
import { Metadata } from 'next';
33
import { generatePageMetadata } from '@/lib/metadata';
4+
import CodeOfConductContent from './CodeOfConductContent';
45

56
export const metadata: Metadata = generatePageMetadata('codeOfConduct');
67

78
const CodeOfConductPage = () => {
8-
return (
9-
<div className='mx-auto mt-10 max-w-[1440px] px-5 py-5 text-center text-4xl font-bold text-white md:px-[50px] lg:px-[100px]'>
10-
Code of Conduct Page
11-
</div>
12-
);
9+
return <CodeOfConductContent />;
1310
};
1411

1512
export default CodeOfConductPage;

0 commit comments

Comments
 (0)