Skip to content
Merged
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
12 changes: 11 additions & 1 deletion app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,17 @@ export const metadata: Metadata = {
description:
'Open-source research on the physical chokepoints between here and a technological singularity.',
metadataBase: new URL(`https://${SITE.host}`),
openGraph: { siteName: SITE.name, type: 'website' },
// siteName and type alone render no og:title and no og:description, so a
// shared link previewed with whatever the scraper could infer. Naming them
// explicitly is the difference between a card and a bare URL.
openGraph: {
siteName: SITE.name,
type: 'website',
title: SITE.name,
description:
'Open-source research on the physical chokepoints between here and a technological singularity.',
},
twitter: { card: 'summary_large_image', title: SITE.name },
};

/**
Expand Down
Loading