From a58bd8c37ee7dfb303b677cb9d1be17001ceb28e Mon Sep 17 00:00:00 2001 From: kenneth Date: Sun, 8 Mar 2026 01:24:31 +0000 Subject: [PATCH] chore[waitlist]: clean up --- apps/waitlist-website/app/root.tsx | 14 ---- .../app/welcome/logo-dark.svg | 23 ------ .../app/welcome/logo-light.svg | 23 ------ apps/waitlist-website/app/welcome/welcome.tsx | 81 ------------------- 4 files changed, 141 deletions(-) delete mode 100644 apps/waitlist-website/app/welcome/logo-dark.svg delete mode 100644 apps/waitlist-website/app/welcome/logo-light.svg delete mode 100644 apps/waitlist-website/app/welcome/welcome.tsx 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 ( -
-
-
-
- React Router - React Router -
-
-
- -
-
-
- ) -} - -const resources = [ - { - href: "https://reactrouter.com/docs", - text: "React Router Docs", - icon: ( - - - - ), - }, - { - href: "https://rmx.as/discord", - text: "Join Discord", - icon: ( - - - - ), - }, -]