create-vanjs
Version:
🍦 Quick tool for scaffolding your first VanJS project
14 lines (12 loc) • 338 B
JSX
import { A } from "@vanjs/router";
export function Page() {
return (
<div class="flex h-screen">
<div class="container mx-auto p-4">
<h1 class="text-5xl font-bold my-8">About</h1>
<p class="mb-4">This is the about page</p>
<A class="btn" href="/not-found">Not found</A>
</div>
</div>
);
}