diff options
| author | Yuval Adam <_@yuv.al> | 2025-05-23 22:01:18 +0200 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2025-05-23 22:01:18 +0200 |
| commit | 4fcc5fd603c249d480670878837411c99955144f (patch) | |
| tree | 92e8e9b305daf770fa66e9c039683f908e28d092 /src/pages | |
| parent | b21e842345843fa4e06a8f09558d6ed2c3b6395e (diff) | |
Fix prose pages
Diffstat (limited to 'src/pages')
| -rw-r--r-- | src/pages/privacy-policy.astro | 5 | ||||
| -rw-r--r-- | src/pages/subnet-guide.astro | 5 |
2 files changed, 4 insertions, 6 deletions
diff --git a/src/pages/privacy-policy.astro b/src/pages/privacy-policy.astro index 669f107..b78b631 100644 --- a/src/pages/privacy-policy.astro +++ b/src/pages/privacy-policy.astro @@ -1,6 +1,5 @@ --- import Layout from "../layouts/Layout.astro"; -import Prose from "../components/Prose.astro"; const title = "Privacy Policy | CIDR.xyz"; const description = "Privacy policy for CIDR.xyz"; @@ -9,7 +8,7 @@ import { Content as PrivacyPolicyContent } from "../content/privacy-policy.md"; --- <Layout title={title} description={description}> - <Prose> + <article class="prose prose-lg mx-auto"> <PrivacyPolicyContent /> - </Prose> + </article> </Layout> diff --git a/src/pages/subnet-guide.astro b/src/pages/subnet-guide.astro index 5f0c42c..9a4a949 100644 --- a/src/pages/subnet-guide.astro +++ b/src/pages/subnet-guide.astro @@ -1,7 +1,6 @@ --- import Layout from "../layouts/Layout.astro"; import Cidr from "../components/Cidr"; -import Prose from "../components/Prose.astro"; const title = "Subnet Guide — IP Ranges and Masks"; const description = @@ -29,7 +28,7 @@ import { Content as GuideContent } from "../content/cidr-guide.md"; <Cidr client:load /> </section> - <Prose> + <article class="prose prose-lg mx-auto"> <GuideContent /> - </Prose> + </article> </Layout> |
