summaryrefslogtreecommitdiff
path: root/src/pages/index.astro
diff options
context:
space:
mode:
authorYuval Adam <_@yuv.al>2025-05-22 13:00:55 +0200
committerYuval Adam <_@yuv.al>2025-05-22 13:00:55 +0200
commit69cc1db574e319c77d5ae049979a6b35518b26fe (patch)
tree3ffa4cd7a8d6f09d3a97addfe2c5e20468801ed3 /src/pages/index.astro
parent65276a312f20cbcbab07201c5a07c547540652ed (diff)
Add subnet guide, layout, nav and embed
Diffstat (limited to 'src/pages/index.astro')
-rw-r--r--src/pages/index.astro24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/pages/index.astro b/src/pages/index.astro
index 9458dab..23588d9 100644
--- a/src/pages/index.astro
+++ b/src/pages/index.astro
@@ -19,18 +19,18 @@ const faqJsonLd = {
---
<Layout title={title} description={description}>
- <h1
- class="my-3 sm:my-1 text-center sm:text-left text-4xl font-extrabold tracking-tight text-gray-900 sm:text-6xl text-4xl"
- >
- CIDR Calculator
- </h1>
- <h2 class="pt-1 text-xl text-center sm:text-left text-gray-600">
- Visualize and Calculate Network Ranges with IPv4 CIDR Blocks
- </h2>
- <a
- href="/cidr-calculator-subnet-guide"
- class="text-blue-600 hover:underline">Read the guide</a
- >
+ <header>
+ <div class="mx-auto max-w-7xl px-4 py-2 sm:py-4 lg:px-6 text-center">
+ <h1
+ class="text-4xl font-extrabold tracking-tight text-gray-900 sm:text-6xl"
+ >
+ CIDR Calculator
+ </h1>
+ <p class="mt-4 text-lg sm:text-xl max-w-2xl mx-auto text-gray-700">
+ Visualize and Calculate Network Ranges with IPv4 CIDR Blocks
+ </p>
+ </div>
+ </header>
<Cidr client:load />