template: tanstack_start_ts_current-40f3c252c0da

This commit is contained in:
Lovable
2025-01-01 00:00:00 +00:00
commit cb75921659
71 changed files with 6545 additions and 0 deletions
+29
View File
@@ -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>
);
}