template: tanstack_start_ts_current-40f3c252c0da
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
import { createFileRoute } from "@tanstack/react-router";
|
||||
|
||||
export const Route = createFileRoute("/")({
|
||||
head: () => ({
|
||||
meta: [
|
||||
{ title: "Your App" },
|
||||
{ name: "description", content: "Replace this with a one-sentence description of your app." },
|
||||
{ property: "og:title", content: "Your App" },
|
||||
{ property: "og:description", content: "Replace this with a one-sentence description of your app." },
|
||||
],
|
||||
}),
|
||||
component: Index,
|
||||
});
|
||||
|
||||
// IMPORTANT: Replace this placeholder. See ./README.md for routing conventions.
|
||||
function Index() {
|
||||
return (
|
||||
<div
|
||||
className="flex min-h-screen items-center justify-center"
|
||||
style={{ backgroundColor: "#fcfbf8" }}
|
||||
>
|
||||
<img
|
||||
data-lovable-blank-page-placeholder="REMOVE_THIS"
|
||||
src="https://cdn.gpteng.co/blank-app-v1.svg"
|
||||
alt="Your app will live here!"
|
||||
/>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user