Skip to content

Commit 74ba71b

Browse files
committed
fix: update landing page navigation links
Updated navigation links to point to actual pages: - Docs link now goes to /docs/getting-started/introduction - GitHub link now points to the actual repository - Get Started button also links to introduction page - Logo link updated to return to home page All links now functional instead of placeholder anchors.
1 parent 1498fd9 commit 74ba71b

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/app/page.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,16 @@ export default function HomePage() {
66
<header className="landing-header">
77
<div className="landing-container">
88
<nav className="landing-nav">
9-
<a href="#" className="landing-logo">
9+
<a href="/" className="landing-logo">
1010
<div className="logo-mark"></div>
1111
EmberDocs
1212
</a>
1313
<ul className="nav-links">
1414
<li><a href="#features">Features</a></li>
15-
<li><a href="#docs">Docs</a></li>
16-
<li><a href="#github">GitHub</a></li>
15+
<li><a href="/docs/getting-started/introduction">Docs</a></li>
16+
<li><a href="https://github.com/sturdy-barnacle/emberdocs" target="_blank" rel="noopener noreferrer">GitHub</a></li>
1717
</ul>
18-
<a href="#" className="btn btn-primary">Get Started →</a>
18+
<a href="/docs/getting-started/introduction" className="btn btn-primary">Get Started →</a>
1919
</nav>
2020
</div>
2121
</header>

0 commit comments

Comments
 (0)