Skip to content

Commit

Permalink
feat: added standalone /ad page
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshuaKGoldberg committed Sep 23, 2024
1 parent 8849e0d commit 82eded0
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions src/pages/ad.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
import "@fontsource-variable/josefin-sans";
import "@fontsource/urbanist";
import HeroName from "~/components/HeroName.astro";
import AdLayout from "~/layouts/AdLayout.astro";
import "~/layouts/base.css";
import "~/layouts/normalize.css";
---

<AdLayout>
<div class="ad-center">
<HeroName align="center" color="inverted" level="h2" size="normal" />
</div>
</AdLayout>

<style>
.ad-center {
height: 100%;
display: flex;
align-items: center;
justify-content: center;
}
</style>

0 comments on commit 82eded0

Please sign in to comment.