Skip to content

Commit

Permalink
Added OG tags to the Layout component
Browse files Browse the repository at this point in the history
  • Loading branch information
Aditya Kela committed Nov 28, 2023
1 parent 9935bce commit 7d071eb
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/layouts/Layout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,18 @@ const { title } = Astro.props;
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="description" content="Astro description" />
<meta name="description" content="Q(AI)²" />
<meta name="viewport" content="width=device-width" />
<link rel="icon" type="image/ico" href={qai2Favicon} />
<meta name="generator" content={Astro.generator} />

<!-- OG Tags -->
<meta property="og:title" content="The Rock" />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://qai2.de" />
<meta property="og:image" content={qai2Favicon} />

<!-- Title -->
<title>Q(AI)²</title>
</head>
<body>
Expand Down

0 comments on commit 7d071eb

Please sign in to comment.