-
-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
3 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,19 @@ | ||
--- | ||
import type { Props } from '@astrojs/starlight/props'; | ||
import Default from '@astrojs/starlight/components/Head.astro'; | ||
import config from '../../astro.config.mjs'; | ||
import socialCard from "../assets/binsider-social-card.png"; | ||
const title = | ||
config.integrations.find((integration) => integration.title)?.title || | ||
"default"; | ||
--- | ||
|
||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | ||
<meta http-equiv="content-type" content="text/html; charset=utf-8" /> | ||
<meta property="og:type" content="website" /> | ||
<meta property="og:url" content={Astro.site} /> | ||
<meta property="og:title" content={`${title}`} /> | ||
<meta property="og:description" content={`${config.description}`} /> | ||
<meta property="og:title" content="Binsider" /> | ||
<meta property="og:description" content="Analyze ELF binaries like a boss." /> | ||
|
||
<meta property="og:image" content={`${socialCard.src}`} /> | ||
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<script defer src="https://umami.orhun.dev/script.js" data-website-id="8e36ad06-9958-4a03-865a-505b1440c1b9"></script> | ||
<script defer src="https://umami.orhun.dev/script.js" data-website-id="8e36ad06-9958-4a03-865a-505b1440c1b9" is:inline></script> | ||
|
||
<Default {...Astro.props}><slot /></Default> |