Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/components/Registration.astro
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,18 @@ import Arrow from "./Arrow.astro";
<DecorativeImage class="manta manta-up" src={mantaUp} />
<TextSquiggly renderAs="strong" width="wide">
<Fragment slot="inside">
<Heading level="h2">Registration is open!</Heading>
<Heading level="h2">Returning Spring 2027</Heading>
</Fragment>
</TextSquiggly>
<Button
as="a"
class="tickets-link"
href={links.tickets}
href="/#newsletter"
target="_blank"
size="large"
variant="emphasized"
>
Get your tickets now for year two
Subscribe up for conference updates
<Arrow />
</Button>
</ContentArea>
Expand Down
2 changes: 1 addition & 1 deletion src/components/explainers/ExplainersList.astro
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ const explainers = [
var(--colorBlueBright4) 100%
);
overflow: hidden;
padding-bottom: 3.5rem;
padding: 2.1rem 0 3.5rem;
width: 100%;
}
</style>
4 changes: 2 additions & 2 deletions src/components/hero/HeroLocators.astro
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ const { class: className, multiline, ...props } = Astro.props;

<div class:list={["hero-locators", className]} {...props}>
<InlineBlock class="date"
>September 18-19, 2025{multiline ? "" : " ·"}</InlineBlock
>Thank you for joining us!{multiline ? "" : " ·"}</InlineBlock
>
<InlineBlock class="location">Boston New England Aquarium</InlineBlock>
<InlineBlock class="location">SquiggleConf returns Spring 2027</InlineBlock>
</div>

<style>
Expand Down
8 changes: 2 additions & 6 deletions src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,10 @@ import Hero from "~/components/hero/Hero.astro";
import HeroLocators from "~/components/hero/HeroLocators.astro";
import HeroTagline from "~/components/hero/HeroTagline.astro";
import InlineBlock from "~/components/InlineBlock.astro";
import SessionsSummarySection from "~/components/SessionsSummarySection.astro";
import Newsletter from "~/components/Newsletter.astro";
import Registration from "~/components/Registration.astro";
import SponsorsAndPartners from "~/components/SponsorsAndPartners.astro";
import TextSquiggly from "~/components/TextSquiggly.astro";
import { links } from "~/data/links";
import PageLayout from "~/layouts/PageLayout.astro";
---

Expand All @@ -37,15 +35,13 @@ import PageLayout from "~/layouts/PageLayout.astro";
class="hero-button"
size="large"
variant="emphasized"
href={links.tickets}
target="_blank"
href="#newsletter"
>
Get your tickets now
Subscribe up for 2027 conference updates
<Arrow />
</Button>
</div>
</Hero>
<SessionsSummarySection />
<ExplainersList />
<AboutUs />
<Registration />
Expand Down