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
1 change: 0 additions & 1 deletion .astro/types.d.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
/// <reference types="astro/client" />
/// <reference path="content.d.ts" />
1 change: 1 addition & 0 deletions cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"pnpm-lock.yaml"
],
"words": [
"astropub",
"astrojs",
"Bluesky",
"Devries",
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
"dependencies": {
"@astrojs/check": "0.9.4",
"@astrojs/vercel": "^8.0.7",
"@astropub/md": "^1.0.0",
"@fontsource-variable/inter": "^5.1.1",
"@fontsource-variable/josefin-sans": "^5.1.1",
"@fontsource-variable/urbanist": "^5.1.1",
Expand Down
12 changes: 12 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 13 additions & 0 deletions src/assets/glyphs/dropdown.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 3 additions & 1 deletion src/components/Header.astro
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ function hrefProps(pathname: string) {
<a {...hrefProps("/about")}>About</a>
<a {...hrefProps("/articles")}>Articles</a>
<a {...hrefProps("/cfp")}>CFP</a>
<a {...hrefProps("/faqs")}>FAQs</a>
<a {...hrefProps(links.shop)}>Shop</a>
<a {...hrefProps("/travel")}>Travel</a>
<Button
Expand All @@ -42,6 +43,7 @@ function hrefProps(pathname: string) {
<a {...hrefProps("/about")}>About</a>
<a {...hrefProps("/articles")}>Articles</a>
<a {...hrefProps("/cfp")}>CFP</a>
<a {...hrefProps("/faqs")}>FAQs</a>
<a {...hrefProps(links.shop)}>Shop</a>
<a {...hrefProps("/travel")}>Travel</a>
<Button
Expand Down Expand Up @@ -148,7 +150,7 @@ function hrefProps(pathname: string) {
display: flex;
align-items: center;
font-weight: var(--fontWeightLight);
gap: clamp(1rem, 1.5vw, 2rem);
gap: clamp(0.75rem, 1.5vw, 2rem);
}

.header-link-inactive {
Expand Down
2 changes: 1 addition & 1 deletion src/components/Newsletter.astro
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import ContentArea from "./ContentArea.astro";
import Heading from "./Heading.astro";
---

<div class="newsletter">
<div class="newsletter" id="newsletter">
<svg
class="light-beam"
fill="none"
Expand Down
2 changes: 2 additions & 0 deletions src/layouts/base.css
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,8 @@
--sizeContentAreaNormal: 70.5rem;
--sizeContentAreaWide: 75rem;

--transitionMedium: 280ms;

color-scheme: light;
}

Expand Down
12 changes: 4 additions & 8 deletions src/pages/articles/how-to-attend-squiggleconf-for-free.astro
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,13 @@ import PageLayout from "~/layouts/PageLayout.astro";

const description =
"13 different ways you can get a free ticket to SquiggleConf 2025. Free!";

const title = "How to Attend SquiggleConf for Free";
---

<PageLayout
description={description}
title="How to Attend SquiggleConf for Free"
>
<PageLayout description={description} title={title}>
<Hero>
<HeroContentsStandard
heading="How to Attend SquiggleConf for Free"
squiggly="none"
>
<HeroContentsStandard heading={title} squiggly="none">
{description}
</HeroContentsStandard>
</Hero>
Expand Down
8 changes: 8 additions & 0 deletions src/pages/cfp.astro
Original file line number Diff line number Diff line change
Expand Up @@ -243,6 +243,10 @@ const topicAreas = [
Apply to the CFP here!
<Arrow />
</Button>

<BodyText class="faq-link">
See <a href="/faqs#cfp">FAQs &gt; CFP</a> for answers to common questions.
</BodyText>
</CommonContent>
</PageLayout>

Expand All @@ -259,4 +263,8 @@ const topicAreas = [
.apply-button-bottom {
margin: 3.5rem auto 0;
}

.faq-link {
margin-top: 3.5rem;
}
</style>
Loading