chore: Initial
Some checks failed
Build and Push Docker Image / Build (push) Failing after 46s
Build and Push Docker Image / Package (push) Has been skipped

This commit is contained in:
Jan K9f 2025-09-10 12:03:56 +02:00
commit e551781de0
Signed by: jank
GPG key ID: 22BEAC760B3333D6
19 changed files with 446 additions and 0 deletions

13
app/routes/home.tsx Normal file
View file

@ -0,0 +1,13 @@
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 />;
}