Initial frontend draft

This commit is contained in:
Fishandchips321 2025-12-22 18:10:28 +00:00
parent 1606d1faf0
commit b6293beeec
21 changed files with 4105 additions and 150 deletions

View file

@ -1,7 +1,7 @@
import type { Route } from "./+types/home";
import { Welcome } from "../welcome/welcome";
export function meta({}: Route.MetaArgs) {
// eslint-disable-next-line no-empty-pattern
export function meta({ }: Route.MetaArgs) {
return [
{ title: "New React Router App" },
{ name: "description", content: "Welcome to React Router!" },
@ -9,5 +9,7 @@ export function meta({}: Route.MetaArgs) {
}
export default function Home() {
return <Welcome />;
return (
<></>
);
}