2026-08-23 05:25:15 +02:00
|
|
|
import AttractHero from "@/components/landing/AttractHero";
|
2026-08-23 20:15:41 +02:00
|
|
|
import TableLibrary from "@/components/landing/TableLibrary";
|
2026-08-23 05:25:15 +02:00
|
|
|
|
|
|
|
|
export default function Home() {
|
|
|
|
|
return (
|
|
|
|
|
<main className="flex flex-1 flex-col items-center justify-center gap-8 px-4 py-16">
|
|
|
|
|
<AttractHero />
|
2026-08-23 20:15:41 +02:00
|
|
|
<TableLibrary />
|
2026-08-23 05:25:15 +02:00
|
|
|
<footer className="font-mono text-xs text-chrome/70">
|
|
|
|
|
Powered by{" "}
|
|
|
|
|
<a
|
|
|
|
|
href="https://github.com/vpinball/vpinball"
|
|
|
|
|
className="underline decoration-dotted underline-offset-2 hover:text-arc"
|
|
|
|
|
>
|
|
|
|
|
Visual Pinball
|
|
|
|
|
</a>
|
|
|
|
|
, compiled to WebAssembly.
|
|
|
|
|
</footer>
|
|
|
|
|
</main>
|
|
|
|
|
);
|
|
|
|
|
}
|