diff --git a/src/components/DownloadHero.tsx b/src/components/DownloadHero.tsx index d427bdf..5badbcb 100644 --- a/src/components/DownloadHero.tsx +++ b/src/components/DownloadHero.tsx @@ -54,7 +54,7 @@ export default function DownloadHero() { className="mt-6 text-lg/8 text-gray-600" > Get Mycelium for Android, Windows, macOS, and iOS to securely connect, store, and interact with the decentralized network—seamlessly and efficiently. Not sure how it works?{' '} - + Read the manual. diff --git a/src/components/Faqs.tsx b/src/components/Faqs.tsx index ac49aa3..1c4abe7 100644 --- a/src/components/Faqs.tsx +++ b/src/components/Faqs.tsx @@ -67,8 +67,8 @@ export function Faqs() {

If you have anything else you want to ask,{' '} reach out to us diff --git a/src/components/Footer.tsx b/src/components/Footer.tsx index 6795622..0a679da 100644 --- a/src/components/Footer.tsx +++ b/src/components/Footer.tsx @@ -58,7 +58,11 @@ export function Footer() {

- © Copyright ThreeFold {new Date().getFullYear()}. All rights reserved. + © Copyright{' '} + + ThreeFold + {' '} + {new Date().getFullYear()}. All rights reserved.

diff --git a/src/components/NavLinks.tsx b/src/components/NavLinks.tsx index d4c9f76..ec3f1e9 100644 --- a/src/components/NavLinks.tsx +++ b/src/components/NavLinks.tsx @@ -14,6 +14,7 @@ export function NavLinks() { ['How it Works', '/#howitworks'], ['Coming Soon', '/#comingsoon'], ['FAQs', '/#faqs'], + ['Docs', 'https://threefold.info/mycelium_network/docs/'], ].map(([label, href], index) => ( { - e.preventDefault() - const targetId = href.substring(2) - const targetElement = document.getElementById(targetId) - if (targetElement) { - targetElement.scrollIntoView({ behavior: 'smooth' }) + if (href.startsWith('/#')) { + e.preventDefault(); + const targetId = href.substring(2); + const targetElement = document.getElementById(targetId); + if (targetElement) { + targetElement.scrollIntoView({ behavior: 'smooth' }); + } } }} + target={href.startsWith('http') ? '_blank' : undefined} + rel={href.startsWith('http') ? 'noopener noreferrer' : undefined} > {hoveredIndex === index && (