initial commit

This commit is contained in:
Chris Kruining 2024-09-24 13:38:55 +02:00
commit 9e3f3cf46b
17 changed files with 269 additions and 0 deletions

19
src/routes/[...404].tsx Normal file
View file

@ -0,0 +1,19 @@
import { Title } from "@solidjs/meta";
import { HttpStatusCode } from "@solidjs/start";
export default function NotFound() {
return (
<main>
<Title>Not Found</Title>
<HttpStatusCode code={404} />
<h1>Page Not Found</h1>
<p>
Visit{" "}
<a href="https://start.solidjs.com" target="_blank">
start.solidjs.com
</a>{" "}
to learn how to build SolidStart apps.
</p>
</main>
);
}

10
src/routes/about.tsx Normal file
View file

@ -0,0 +1,10 @@
import { Title } from "@solidjs/meta";
export default function Home() {
return (
<main>
<Title>About</Title>
<h1>About</h1>
</main>
);
}

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

@ -0,0 +1,19 @@
import { Title } from "@solidjs/meta";
import Counter from "~/components/Counter";
export default function Home() {
return (
<main>
<Title>Hello World</Title>
<h1>Hello world!</h1>
<Counter />
<p>
Visit{" "}
<a href="https://start.solidjs.com" target="_blank">
start.solidjs.com
</a>{" "}
to learn how to build SolidStart apps.
</p>
</main>
);
}