diff --git a/apps/waitlist-website/app/root.tsx b/apps/waitlist-website/app/root.tsx
index 6c4498a..a553222 100644
--- a/apps/waitlist-website/app/root.tsx
+++ b/apps/waitlist-website/app/root.tsx
@@ -30,20 +30,6 @@ export const links: Route.LinksFunction = () => [
},
]
-export const meta: Route.MetaFunction = () => {
- return [
- { property: "og:title", content: "Page Title" },
- { property: "og:description", content: "Page description" },
- { property: "og:image", content: "https://example.com/og-image.png" },
- { property: "og:url", content: "https://example.com" },
- { property: "og:type", content: "website" },
- { name: "twitter:card", content: "summary_large_image" },
- { name: "twitter:title", content: "Page Title" },
- { name: "twitter:description", content: "Page description" },
- { name: "twitter:image", content: "https://example.com/og-image.png" },
- ]
-}
-
export function Layout({ children }: { children: React.ReactNode }) {
return (
diff --git a/apps/waitlist-website/app/welcome/logo-dark.svg b/apps/waitlist-website/app/welcome/logo-dark.svg
deleted file mode 100644
index dd82028..0000000
--- a/apps/waitlist-website/app/welcome/logo-dark.svg
+++ /dev/null
@@ -1,23 +0,0 @@
-
diff --git a/apps/waitlist-website/app/welcome/logo-light.svg b/apps/waitlist-website/app/welcome/logo-light.svg
deleted file mode 100644
index 7328492..0000000
--- a/apps/waitlist-website/app/welcome/logo-light.svg
+++ /dev/null
@@ -1,23 +0,0 @@
-
diff --git a/apps/waitlist-website/app/welcome/welcome.tsx b/apps/waitlist-website/app/welcome/welcome.tsx
deleted file mode 100644
index 6d1fe8a..0000000
--- a/apps/waitlist-website/app/welcome/welcome.tsx
+++ /dev/null
@@ -1,81 +0,0 @@
-import logoDark from "./logo-dark.svg"
-import logoLight from "./logo-light.svg"
-
-export function Welcome() {
- return (
-
-
-
-
-

-

-
-
-
-
-
-
-
- )
-}
-
-const resources = [
- {
- href: "https://reactrouter.com/docs",
- text: "React Router Docs",
- icon: (
-
- ),
- },
- {
- href: "https://rmx.as/discord",
- text: "Join Discord",
- icon: (
-
- ),
- },
-]