diff --git a/apps/web/app/(base-org)/third-party-cookies/page.tsx b/apps/web/app/(base-org)/third-party-cookies/page.tsx
new file mode 100644
index 0000000..9c563be
--- /dev/null
+++ b/apps/web/app/(base-org)/third-party-cookies/page.tsx
@@ -0,0 +1,68 @@
+import type { Metadata } from 'next';
+
+export const metadata: Metadata = {
+ metadataBase: new URL('https://base.org'),
+ title: `Base | Third Party Cookies`,
+ openGraph: {
+ title: `Base | Third Party Cookies`,
+ url: `/third-party-cookies`,
+ },
+};
+
+export default async function ThirdPartyCookies() {
+ return (
+
+
+ Third-Party Cookies
+
+ Last updated: 26 February 2024
+
+
+ This page lists the companies that use cookies and other technologies. From time to time,
+ we may change the companies we work with and will update this list.
+
+
+
+
+ );
+}
+
+// import Head from 'next/head';
+
+// export default function ThirdPartyCookies() {
+// const ogData = {
+// title: 'Base | Third Party Cookies',
+// description: 'This page lists the companies that use cookies and other technologies.',
+// url: 'https://base.org/third-party-cookies',
+// };
+// return (
+// <>
+//
+// {/* Open-graph */}
+//
+//
+//
+
+// {/* Default */}
+// {ogData.title}
+//
+//
+//
+// >
+// );
+// }
diff --git a/apps/web/pages/third-party-cookies.tsx b/apps/web/pages/third-party-cookies.tsx
deleted file mode 100644
index 809f26a..0000000
--- a/apps/web/pages/third-party-cookies.tsx
+++ /dev/null
@@ -1,51 +0,0 @@
-import Head from 'next/head';
-
-export default function ThirdPartyCookies() {
- const ogData = {
- title: 'Base | Third Party Cookies',
- description: 'This page lists the companies that use cookies and other technologies.',
- url: 'https://base.org/third-party-cookies',
- };
- return (
- <>
-
- {/* Open-graph */}
-
-
-
-
- {/* Default */}
- {ogData.title}
-
-
-
-
- Third-Party Cookies
-
- Last updated: 26 February 2024
-
-
- This page lists the companies that use cookies and other technologies. From time to
- time, we may change the companies we work with and will update this list.
-
-
-
-
- >
- );
-}