mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-04-05 18:09:04 +00:00
17 lines
453 B
TypeScript
17 lines
453 B
TypeScript
import type { Route } from "./+types/beers";
|
|
|
|
export function meta({}: Route.MetaArgs) {
|
|
return [{ title: "Beers | The Biergarten App" }];
|
|
}
|
|
|
|
export default function Beers() {
|
|
return (
|
|
<div className="min-h-screen bg-base-200">
|
|
<div className="container mx-auto p-4">
|
|
<h1 className="text-4xl font-bold mb-4">Beers</h1>
|
|
<p className="text-base-content/70">Explore our collection of beers.</p>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|