Skip to content
This repository was archived by the owner on Jun 19, 2025. It is now read-only.
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
4 changes: 3 additions & 1 deletion src/components/Head.astro
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
---
export interface Props {
canonical?: string;
description: string;
title?: string;
}

const { description } = Astro.props;
const { canonical, description } = Astro.props;

const image = new URL("favicon.png", Astro.site).toString();

Expand Down Expand Up @@ -98,6 +99,7 @@ const metaPairs = [
<meta charset="utf-8" />
<link href="/favicon.png" rel="icon" type="image/svg+xml" />
<link href="/apple-touch-icon.png" rel="apple-touch-icon" sizes="180x180" />
{canonical && <link rel="canonical" href={canonical} />}
{metaPairs.map((meta) => <meta {...meta} />)}
<meta content={description} name="description" />
<meta content={keywords.join()} name="keywords" />
Expand Down
1 change: 1 addition & 0 deletions src/pages/about.astro
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ const brandingAssets = [
---

<ContentLayout
canonical="https://2025.squiggleconf.com/about"
description="About SquiggleConf: a Boston conference focused on excellent web dev tooling."
title="About Us"
>
Expand Down
1 change: 1 addition & 0 deletions src/pages/code-of-conduct.astro
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import ContentLayout from "~/layouts/ContentLayout.astro";
---

<ContentLayout
canonical="https://2025.squiggleconf.com/code-of-conduct"
description="Code of Conduct for SquiggleConf: a Boston conference focused on excellent web dev tooling."
title="Code of Conduct"
>
Expand Down
1 change: 1 addition & 0 deletions src/pages/faqs.astro
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import BodyText from "~/components/BodyText.astro";
---

<ContentLayout
canonical="https://2025.squiggleconf.com/faqs"
description="FAQs for SquiggleConf: a Boston conference focused on excellent web dev tooling."
title="FAQs"
>
Expand Down
1 change: 1 addition & 0 deletions src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import ContentLayout from "~/layouts/ContentLayout.astro";
---

<ContentLayout
canonical="https://2025.squiggleconf.com"
description="A Boston conference focused on excellent web dev tooling."
>
<PrimaryHero slot="hero" />
Expand Down
Loading