Clean and add main page to src

This commit is contained in:
2025-03-10 11:21:13 +01:00
parent 83508ddcb3
commit 0f3d8d60b1
9 changed files with 16 additions and 241 deletions

View File

@@ -1,13 +0,0 @@
import type { Route } from "./+types/home";
import { Welcome } from "../welcome/welcome";
export function meta({}: Route.MetaArgs) {
return [
{ title: "New React Router App" },
{ name: "description", content: "Welcome to React Router!" },
];
}
export default function Home() {
return <Welcome />;
}