Files
vpinball/app/page.tsx
T

22 lines
652 B
TypeScript
Raw Normal View History

import AttractHero from "@/components/landing/AttractHero";
import TableLibrary from "@/components/landing/TableLibrary";
export default function Home() {
return (
<main className="flex flex-1 flex-col items-center justify-center gap-8 px-4 py-16">
<AttractHero />
<TableLibrary />
<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>
);
}