Skip to content

Commit

Permalink
fix broken meta tags
Browse files Browse the repository at this point in the history
  • Loading branch information
ArhanChaudhary committed Aug 23, 2024
1 parent a251966 commit 2d35075
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 16 deletions.
14 changes: 14 additions & 0 deletions src/app.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,20 @@
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="How Many Iconic Computing Numbers can you Recognize?" />
<meta property="og:url" content="https://numbers.arhan.sh" />
<meta property="og:title" content="Numbers" />
<meta
property="og:description"
content="How Many Iconic Computing Numbers can you Recognize?"
/>
<meta property="og:image" content="https://numbers.arhan.sh/favicon.ico" />
<meta name="twitter:card" content="summary" />
<meta name="author" content="Arhan Chaudhary" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="anonymous" />
<link href="https://fonts.googleapis.com/css2?family=Patua+One&display=swap" rel="stylesheet" />
<title>Numbers</title>
%sveltekit.head%
</head>
<body data-sveltekit-preload-data="hover">
Expand Down
16 changes: 0 additions & 16 deletions src/routes/+layout.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,6 @@
import '../app.css';
</script>

<!-- cspell: ignore arhan chaudhary -->

<svelte:head>
<meta name="description" content="How Many Iconic Computing Numbers can you Recognize?" />
<meta property="og:url" content="https://numbers.arhan.sh" />
<meta property="og:title" content="Numbers" />
<meta property="og:description" content="How Many Iconic Computing Numbers can you Recognize?" />
<meta property="og:image" content="https://numbers.arhan.sh/favicon.ico" />
<meta name="twitter:card" content="summary" />
<meta name="author" content="Arhan Chaudhary" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossOrigin="anonymous" />
<link href="https://fonts.googleapis.com/css2?family=Patua+One&display=swap" rel="stylesheet" />
<title>Numbers</title>
</svelte:head>

<main class="bg-gray-100">
<div
class="mr-auto ml-auto max-w-5xl min-h-dvh bg-orange-50 px-4 shadow-[0_0_30px_5px] shadow-gray-400 relative pb-10"
Expand Down

0 comments on commit 2d35075

Please sign in to comment.