Update App.jsx
This commit is contained in:
parent
53c38a3247
commit
9e9ba8efbb
21
src/App.jsx
21
src/App.jsx
@ -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 () => {
|
||||
|
||||
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>
|
||||
</>
|
||||
)
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user