Update App.jsx

This commit is contained in:
Mathias Wagner 2025-02-16 21:36:46 +01:00
parent 53c38a3247
commit 9e9ba8efbb
Signed by: Mathias
GPG Key ID: B8DC354B0A1F5B44

View File

@ -1,8 +1,27 @@
import {Navigation} from "./components/Navigation/Navigation.jsx";
import "@fontsource/inter/300.css";
import "@fontsource/inter/400.css";
import "@fontsource/inter/500.css";
import "@fontsource/inter/600.css";
import "@/styles/main.sass";
import gameSources from "./data/games.js";
import {Card} from "@/components/Card/Card.jsx";
export default () => { export default () => {
return ( return (
<> <>
<h2>Planspiele</h2> <Navigation />
<main>
<h2>Beliebte Spiele</h2>
{gameSources.map((game, index) => (
<Card key={index} game={game} />
))}
</main>
<footer>
<p>Alle Spiele sind <span>Open Source</span>, <span>100% kostenlos</span> und <span>sicher</span>.</p>
</footer>
</> </>
) )
} }