template: tanstack_start_ts

This commit is contained in:
Lovable 2025-01-01 00:00:00 +00:00
commit 929a9a457a
65 changed files with 15569 additions and 0 deletions

26
src/routes/index.tsx Normal file
View file

@ -0,0 +1,26 @@
import { createFileRoute } from "@tanstack/react-router";
export const Route = createFileRoute("/")({
component: Index,
});
// IMPORTANT: Replace this placeholder. For sites with multiple pages (About, Services, Contact, etc.),
// create separate route files (about.tsx, services.tsx, contact.tsx) — don't put all pages in this file.
function PlaceholderIndex() {
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>
);
}
function Index() {
return <PlaceholderIndex />;
}