Skip to content

Commit aa8809c

Browse files
committed
fix: move OG/Twitter meta tags from app.html to per-page svelte:head for proper overrides
1 parent 1c09609 commit aa8809c

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

src/app.html

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,6 @@
99
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600&family=Outfit:wght@400;500;600;700&display=swap" rel="stylesheet" />
1010
<meta property="og:type" content="website" />
1111
<meta property="og:site_name" content="OpenBoot" />
12-
<meta property="og:title" content="OpenBoot - One-line macOS Development Environment Setup" />
13-
<meta property="og:description" content="Bootstrap your Mac development environment in minutes. One command to install Homebrew, CLI tools, GUI apps, dotfiles, and Oh-My-Zsh." />
14-
<meta property="og:image" content="https://openboot.dev/og-image.png" />
15-
<meta property="og:url" content="https://openboot.dev" />
16-
<meta name="twitter:card" content="summary_large_image" />
17-
<meta name="twitter:title" content="OpenBoot - One-line macOS Development Environment Setup" />
18-
<meta name="twitter:description" content="Bootstrap your Mac development environment in minutes. One command to install Homebrew, CLI tools, GUI apps, dotfiles, and Oh-My-Zsh." />
19-
<meta name="twitter:image" content="https://openboot.dev/og-image.png" />
2012
%sveltekit.head%
2113
</head>
2214
<body data-sveltekit-preload-data="hover">

src/routes/+page.svelte

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,14 @@
5353
<svelte:head>
5454
<title>OpenBoot - Set up your Mac in one command, not one afternoon</title>
5555
<meta name="description" content="One curl command installs 70+ curated dev tools, deploys your dotfiles, and configures macOS. Pick a preset or build your own — done in about 5 minutes." />
56+
<meta property="og:title" content="OpenBoot - One-line macOS Development Environment Setup" />
57+
<meta property="og:description" content="Bootstrap your Mac development environment in minutes. One command to install Homebrew, CLI tools, GUI apps, dotfiles, and Oh-My-Zsh." />
58+
<meta property="og:image" content="https://openboot.dev/og-image.png" />
5659
<meta property="og:url" content="https://openboot.dev" />
60+
<meta name="twitter:card" content="summary_large_image" />
61+
<meta name="twitter:title" content="OpenBoot - One-line macOS Development Environment Setup" />
62+
<meta name="twitter:description" content="Bootstrap your Mac development environment in minutes. One command to install Homebrew, CLI tools, GUI apps, dotfiles, and Oh-My-Zsh." />
63+
<meta name="twitter:image" content="https://openboot.dev/og-image.png" />
5764
</svelte:head>
5865

5966
<header class="site-header">

0 commit comments

Comments
 (0)