Skip to content

Commit

Permalink
feat: Add og tags
Browse files Browse the repository at this point in the history
  • Loading branch information
hampfh committed Mar 10, 2024
1 parent be141c9 commit 288d9bf
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,21 @@ const lato = Lato({

export const metadata: Metadata = {
title: `THS Armada ${DateTime.now().year} Career Fair`,
description: "Scandinavia's largest career fair for engineers"
description: "Scandinavia's largest student career fair",
openGraph: {
title: `THS Armada ${DateTime.now().year} Career Fair`,
description: "Scandinavia's largest student career fair",
url: "https://armada.nu",
type: "website",
images: [
{
url: "/armada_white.svg",
width: 500,
height: 500,
alt: "THS Armada Logo white"
}
]
}
}

export const revalidate = 60 * 60 * 12 // 12 hours
Expand Down

0 comments on commit 288d9bf

Please sign in to comment.