Skip to content

Commit

Permalink
chore: add footer on arcade
Browse files Browse the repository at this point in the history
  • Loading branch information
lajbel committed Nov 11, 2024
1 parent 9d5c7bc commit 285a0a7
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions src/pages/[...path]/arcade.astro
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
---
import FeaturedGame from "@/components/Arcade/FeaturedGame.astro";
import Navbar from "@/components/Land/Navbar.astro";
import Page from "@/layouts/Page.astro";
import NavbarPage from "@/layouts/NavbarPage.astro";
import { getStaticPathsByLocales } from "@/util/path";
export function getStaticPaths() {
Expand All @@ -11,7 +10,7 @@ export function getStaticPaths() {
const { lang } = Astro.props;
---

<Page
<NavbarPage
{lang}
meta={{
title: "KAPLAY.js Arcade, a lot of HTML5 and web games made with KAPLAY",
Expand All @@ -21,10 +20,7 @@ const { lang } = Astro.props;
}}>
<meta name="robots" content="noindex, nofollow" slot="head" />

<header>
<Navbar />
</header>
<main class="lg:pt-20">
<main class="land h-full lg:pt-20">
<div>
<h1 class="text-center text-5xl font-bold">Featured games</h1>

Expand All @@ -34,4 +30,4 @@ const { lang } = Astro.props;
</div>
</div>
</main>
</Page>
</NavbarPage>

0 comments on commit 285a0a7

Please sign in to comment.