Skip to content

Commit

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

<AdLayout>
<AdContents>
<h1 slot="body">3 Weeks To Go!</h1>
</AdContents>
</AdLayout>

<style>
h1 {
color: var(--colorOffWhite);
font-size: 7rem;
}
</style>

0 comments on commit ce79763

Please sign in to comment.