Merge pull request #436 from ConwayTech-Dev/seo

feat: improve SEO
This commit is contained in:
mr. m 2025-01-31 11:39:03 -08:00 committed by GitHub
commit 1fa3bcbbda
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -4,6 +4,7 @@ interface Props {
} }
const { title } = Astro.props const { title } = Astro.props
const onHomepage = Astro.url.origin === 'https://zen-browser.app/'
import '@fontsource/bricolage-grotesque/400.css' import '@fontsource/bricolage-grotesque/400.css'
import NavBar from '../components/NavBar.astro' import NavBar from '../components/NavBar.astro'
import Footer from '../components/Footer.astro' import Footer from '../components/Footer.astro'
@ -32,29 +33,39 @@ import Footer from '../components/Footer.astro'
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="UTF-8" /> <meta charset="UTF-8" />
<meta <meta name="description" content="Zen Browser is built for speed, security, and true privacy. Download now to enjoy a beautifully-designed, distraction-free web experience packed with features."/>
name="description" <meta name="viewport" content="width=device-width, initial-scale=1"/>
content="Beautifully designed, privacy-focused, and packed with features. We care about your experience, not your data."
/>
<meta name="viewport" content="width=device-width" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" /> <link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="sitemap" href="/sitemap-0.xml" /> <link rel="sitemap" href="/sitemap-0.xml" />
<!-- ICO Favicon as a fallback for browsers that don't support SVG FavIcons (Safari) --> <!-- Injecting schema to homepage only (for SEO) -->
{onHomepage && (
<script type="application/ld+json">
{{
"@context":"https://schema.org",
"@type":"WebSite",
"name":"Zen Browser",
"url":"https://zen-browser.app/",
}}
</script>)}
<!-- ICO favicon as a fallback for browsers that don't support SVG favicons (Safari) -->
<link rel="icon" type="image/x-icon" href="/favicon.ico" /> <link rel="icon" type="image/x-icon" href="/favicon.ico" />
<meta name="generator" content={Astro.generator} /> <meta name="generator" content={Astro.generator} />
<title>{title}</title> <title>{title}</title>
<meta name="theme-color" content="#da755b" /> <meta name="theme-color" content="#da755b" />
<!-- open graph -->
<!-- Open Graph -->
<meta property="og:title" content={title} /> <meta property="og:title" content={title} />
<meta property="og:type" content="website" /> <meta property="og:type" content="website" />
<meta property="og:image" content="/share-pic.png" /> <meta property="og:image" content="/share-pic.png" />
<meta <meta
property="og:description" property="og:description"
content="Beautifully designed, privacy-focused, and packed with features. We care about your experience, not your data.." content="Zen Browser is built for speed, security, and true privacy. Download now to enjoy a beautifully-designed, distraction-free web experience packed with features."
/> />
<meta property="og:color" content="#da755b3" /> <meta property="og:color" content="#da755b" />
<!-- twitter card --> <!-- Twitter card -->
<meta name="twitter:card" content="summary_large_image" /> <meta name="twitter:card" content="summary_large_image" />
<!-- Fonts --> <!-- Fonts -->
<link rel="preconnect" href="https://fonts.bunny.net" /> <link rel="preconnect" href="https://fonts.bunny.net" />