Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 16 additions & 1 deletion packages/web/src/pages/_static/about.page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,20 @@ export const Route = createFileRoute("/_static/about/")({
});

function AboutRoute() {
return <div>Hello "/_static/about"!</div>;
return (
<main className="container mx-auto flex min-h-screen flex-col items-center justify-center gap-8 px-6 text-center">
<img src="/blank-logo.svg" alt="blank logo" className="h-16 w-16" />
<h1 className="text-4xl font-semibold tracking-tight">
<span className="uppercase">about</span> blank
</h1>
<p className="max-w-prose text-lg text-muted-foreground lowercase">
blank helps you handle your expenses without the hassle—as easy as
sending a text.
</p>
<p className="max-w-prose text-lg text-muted-foreground lowercase">
our mission is to streamline your financial tasks so you can spend more
time on what matters.
</p>
</main>
);
}