Skip to content

Commit 5cabcbb

Browse files
committed
feat: Add Google site verification, smooth scrolling, and navigation links to page sections.
1 parent fe71cbb commit 5cabcbb

File tree

1 file changed

+35
-5
lines changed

1 file changed

+35
-5
lines changed

docs/index.html

Lines changed: 35 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<meta name="author" content="Bharath Kumar">
1414
<meta name="theme-color" content="#8B5CF6">
1515
<meta name="robots" content="index, follow">
16-
16+
<meta name="google-site-verification" content="TpPfXeUVDiIUimzkBojIiZ6zm1iBBE2gxDkOt8G4Hjo" />
1717
<!-- Schema.org for Google/AI Search -->
1818
<script type="application/ld+json">
1919
{
@@ -93,6 +93,7 @@
9393

9494
html {
9595
overflow-x: hidden;
96+
scroll-behavior: smooth;
9697
}
9798

9899
code,
@@ -154,6 +155,29 @@
154155
color: var(--text-main);
155156
}
156157

158+
.nav-links {
159+
display: flex;
160+
gap: 1.5rem;
161+
}
162+
163+
.nav-links a {
164+
color: var(--text-muted);
165+
text-decoration: none;
166+
font-size: 0.9rem;
167+
font-weight: 500;
168+
transition: color 0.2s;
169+
}
170+
171+
.nav-links a:hover {
172+
color: var(--text-main);
173+
}
174+
175+
@media (max-width: 768px) {
176+
.nav-links {
177+
display: none;
178+
}
179+
}
180+
157181
/* Hero */
158182
.hero {
159183
padding: 6rem 0 4rem;
@@ -482,7 +506,13 @@
482506
<div class="container">
483507
<nav>
484508
<a href="#" class="logo">git<span>-</span>scope</a>
485-
<div style="display: flex; gap: 1rem; align-items: center;">
509+
<div style="display: flex; gap: 1.5rem; align-items: center;">
510+
<div class="nav-links">
511+
<a href="#features">Features</a>
512+
<a href="#blog">Blog</a>
513+
<a href="#contact">Contact</a>
514+
</div>
515+
<div style="width: 1px; height: 24px; background: rgba(255,255,255,0.1);"></div>
486516
<img src="https://img.shields.io/github/downloads/Bharath-code/git-scope/total?style=flat-square&color=7C3AED&label=Downloads"
487517
alt="Downloads" style="height: 20px;" height="20">
488518
<a href="https://github.com/Bharath-code/git-scope" class="github-link" target="_blank" id="github-btn">
@@ -585,7 +615,7 @@ <h2 style="font-size: clamp(2rem, 4vw, 2.5rem); margin-bottom: 2rem; font-weight
585615
</div>
586616
</section>
587617

588-
<div class="features">
618+
<div class="features" id="features">
589619
<div class="card">
590620
<h3><span class="card-icon">⚡️</span> Instant Overview</h3>
591621
<p>Git-scope finds, parses, and caches your entire directory tree in milliseconds. It knows where
@@ -641,7 +671,7 @@ <h3><span class="card-icon">👥</span> Team Dashboards</h3>
641671
</div>
642672
</section>
643673

644-
<section class="resources" style="margin-bottom: 6rem; text-align: center;">
674+
<section class="resources" id="blog" style="margin-bottom: 6rem; text-align: center;">
645675
<p
646676
style="color: var(--primary); font-weight: 600; letter-spacing: 0.05em; margin-bottom: 1rem; text-transform: uppercase; font-size: 0.9rem;">
647677
From the Blog</p>
@@ -668,7 +698,7 @@ <h3><span class="card-icon">📊</span> Why GoatCounter?</h3>
668698
</section>
669699
</main>
670700

671-
<footer>
701+
<footer id="contact">
672702
<div class="footer-links">
673703
<a href="https://github.com/Bharath-code/" aria-label="GitHub Repository" target="_blank">
674704
<svg height="20" width="20" viewBox="0 0 16 16" fill="currentColor">

0 commit comments

Comments
 (0)