-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: ticket links and more link things
- Loading branch information
1 parent
711c11f
commit 3c0efdc
Showing
13 changed files
with
111 additions
and
39 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
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,10 +1,13 @@ | ||
--- | ||
import { links } from "~/data/links"; | ||
import Button from "./Button.astro"; | ||
import ContentArea from "./ContentArea.astro"; | ||
import Heading from "./Heading.astro"; | ||
--- | ||
|
||
<ContentArea as="section"> | ||
<Heading level="h2">Registration is open!</Heading> | ||
<Button>Get extra early bird tickets now!</Button> | ||
<Button as="a" href={links.tickets} target="_blank" variant="accent" | ||
>Get extra early bird tickets now!</Button | ||
> | ||
</ContentArea> |
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
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
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
export const links = { | ||
tickets: "https://buytickets.at/squiggleconf/1488622", | ||
}; |
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
--- | ||
import "@fontsource-variable/josefin-sans"; | ||
import "@fontsource-variable/urbanist"; | ||
import Head, { Props as HeadProps } from "~/components/Head.astro"; | ||
import "./base.css"; | ||
import "./normalize.css"; | ||
type Props = HeadProps; | ||
--- | ||
|
||
<html lang="en"> | ||
<Head {...Astro.props} /> | ||
<slot /> | ||
</html> |
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,23 +1,17 @@ | ||
--- | ||
import "@fontsource-variable/josefin-sans"; | ||
import "@fontsource-variable/urbanist"; | ||
import Head, { Props as HeadProps } from "~/components/Head.astro"; | ||
import { Props as HeadProps } from "~/components/Head.astro"; | ||
import Header from "~/components/Header.astro"; | ||
import BodyArea from "~/components/BodyArea.astro"; | ||
import Footer from "~/components/Footer.astro"; | ||
import "./base.css"; | ||
import "./normalize.css"; | ||
import BaseLayout from "./BaseLayout.astro"; | ||
type Props = HeadProps; | ||
--- | ||
|
||
<html lang="en"> | ||
<Head {...Astro.props} /> | ||
<BaseLayout {...Astro.props}> | ||
<Header /> | ||
<BodyArea> | ||
<slot /> | ||
</BodyArea> | ||
<Footer /> | ||
</html> | ||
</BaseLayout> |
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 |
---|---|---|
@@ -0,0 +1,32 @@ | ||
--- | ||
import InlineBlock from "~/components/InlineBlock.astro"; | ||
import Logo from "~/components/Logo.astro"; | ||
import BaseLayout from "~/layouts/BaseLayout.astro"; | ||
--- | ||
|
||
<BaseLayout | ||
description="A Boston conference for excellent web dev tooling." | ||
title="Ad" | ||
> | ||
<div class="ad"> | ||
<Logo /> | ||
<div> | ||
<InlineBlock>September 18-19, 2025 · </InlineBlock> | ||
<InlineBlock>Boston New England Aquarium</InlineBlock> | ||
</div> | ||
</div> | ||
</BaseLayout> | ||
|
||
<style> | ||
.ad { | ||
align-items: center; | ||
color: var(--colorAccentLight); | ||
display: flex; | ||
flex-direction: column; | ||
font-size: 0.5rem; | ||
gap: 1rem; | ||
height: 100vh; | ||
justify-content: center; | ||
width: 100%; | ||
} | ||
</style> |
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