import { Outlet, Link, createRootRoute, HeadContent, Scripts } from "@tanstack/react-router";
import appCss from "../styles.css?url";
function NotFoundComponent() {
return (
404
Page not found
The page you're looking for doesn't exist or has been moved.
Go home
);
}
export const Route = createRootRoute({
head: () => ({
meta: [
{ charSet: "utf-8" },
{ name: "viewport", content: "width=device-width, initial-scale=1" },
{ title: "Peak Crimelife" },
{ name: "description", content: "Peak Crimelife Hub is a website for a FiveM server, featuring team applications and server information." },
{ name: "author", content: "Lovable" },
{ property: "og:title", content: "Peak Crimelife" },
{ property: "og:description", content: "Peak Crimelife Hub is a website for a FiveM server, featuring team applications and server information." },
{ property: "og:type", content: "website" },
{ name: "twitter:card", content: "summary" },
{ name: "twitter:site", content: "@Lovable" },
{ name: "twitter:title", content: "Peak Crimelife" },
{ name: "twitter:description", content: "Peak Crimelife Hub is a website for a FiveM server, featuring team applications and server information." },
{ property: "og:image", content: "https://pub-bb2e103a32db4e198524a2e9ed8f35b4.r2.dev/7869e7ec-1c94-4ca8-898a-e5c81fe93367/id-preview-973d5a48--9d8aacb4-aff5-483f-9210-6847fa30a50f.lovable.app-1776693260608.png" },
{ name: "twitter:image", content: "https://pub-bb2e103a32db4e198524a2e9ed8f35b4.r2.dev/7869e7ec-1c94-4ca8-898a-e5c81fe93367/id-preview-973d5a48--9d8aacb4-aff5-483f-9210-6847fa30a50f.lovable.app-1776693260608.png" },
],
links: [
{
rel: "stylesheet",
href: appCss,
},
],
}),
shellComponent: RootShell,
component: RootComponent,
notFoundComponent: NotFoundComponent,
});
function RootShell({ children }: { children: React.ReactNode }) {
return (
{children}
);
}
function RootComponent() {
return ;
}