diff options
| author | Yuval Adam <_@yuv.al> | 2025-05-22 13:43:49 +0200 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2025-05-22 13:43:49 +0200 |
| commit | 43b8efe4b5fd061ee754eef55b9ec7dcdfc00c83 (patch) | |
| tree | 8e57be4f135decc3a6b66fb672bdedce6523de82 /src/pages | |
| parent | 4078b6d737d89d1d0995c41a8f61eb5295071920 (diff) | |
Update guide meta
Diffstat (limited to 'src/pages')
| -rw-r--r-- | src/pages/subnet-guide.astro | 26 |
1 files changed, 2 insertions, 24 deletions
diff --git a/src/pages/subnet-guide.astro b/src/pages/subnet-guide.astro index 98d892f..5f0c42c 100644 --- a/src/pages/subnet-guide.astro +++ b/src/pages/subnet-guide.astro @@ -1,26 +1,11 @@ --- import Layout from "../layouts/Layout.astro"; import Cidr from "../components/Cidr"; -import { faqs } from "../content/faqs.ts"; import Prose from "../components/Prose.astro"; -// ──────────────────────────────────────────────────────────── -// Metadata -// ──────────────────────────────────────────────────────────── -const title = "CIDR Calculator & Subnet Guide — IP Ranges, Masks & IPv6"; +const title = "Subnet Guide — IP Ranges and Masks"; const description = - "Free interactive CIDR calculator and comprehensive plain‑language guide covering subnetting, IP ranges, subnet masks and IPv6 addressing."; - -// FAQ structured‑data (kept in sync with UI) -const faqJsonLd = { - "@context": "https://schema.org", - "@type": "FAQPage", - mainEntity: faqs.map(({ q, a }) => ({ - "@type": "Question", - name: q, - acceptedAnswer: { "@type": "Answer", text: a }, - })), -}; + "Free interactive CIDR calculator and comprehensive guide covering subnetting, IP ranges, subnet masks and addressing."; import { Content as GuideContent } from "../content/cidr-guide.md"; --- @@ -47,11 +32,4 @@ import { Content as GuideContent } from "../content/cidr-guide.md"; <Prose> <GuideContent /> </Prose> - - {/** Structured‑data block */} - <script - type="application/ld+json" - is:inline - set:html={JSON.stringify(faqJsonLd, null, 2)} - /> </Layout> |
