-
Notifications
You must be signed in to change notification settings - Fork 164
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
style: have different Houstons for newsletter (#971)
- Loading branch information
1 parent
ab620dc
commit 1f2caa8
Showing
3 changed files
with
14 additions
and
20 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,21 @@ | ||
--- | ||
import Layout from "~/layouts/Standalone.astro" | ||
import Houston from "../_assets/houston_peep.webp" | ||
import Houston from "../_assets/houston_love.webp" | ||
--- | ||
|
||
<Layout title="Signup"> | ||
<div class="bg-grid absolute inset-0 z-grid"></div> | ||
<div class="mx-8 my-auto flex h-full flex-col items-center justify-center"> | ||
<h1 class="font-obviously text-3xl font-semibold text-white md:text-6xl">Almost there!</h1> | ||
<p class="my-6 text-astro-gray-200 md:body-large lg:text-3xl"> | ||
Check your inbox to confirm the subscription. | ||
</p> | ||
</div> | ||
|
||
<div class="flex w-full justify-center overflow-clip"> | ||
<img | ||
src={Houston.src} | ||
width={Houston.width} | ||
height={Houston.height} | ||
class="absolute bottom-0 h-24 w-auto md:h-28 lg:h-32" | ||
class="mb-12 h-24 w-auto md:h-28 lg:h-32" | ||
alt="" | ||
/> | ||
<h1 class="font-obviously text-3xl font-semibold text-white md:text-6xl">Almost there!</h1> | ||
<p class="my-6 text-astro-gray-200 md:body-large lg:text-3xl"> | ||
Check your inbox to confirm the subscription. | ||
</p> | ||
</div> | ||
</Layout> |