chore[waitlist]: clean up

This commit is contained in:
2026-03-08 01:24:31 +00:00
parent bd7055af29
commit a58bd8c37e
4 changed files with 0 additions and 141 deletions

View File

@@ -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 (
<html lang="en">