This commit is contained in:
2025-09-17 15:35:06 +02:00
parent f712a6c894
commit 8f997b2f86
5 changed files with 48 additions and 11 deletions

View File

@@ -9,11 +9,11 @@ export function NavLinks() {
let timeoutRef = useRef<number | null>(null)
return [
['About', '/#stack-section'],
['Network', '/#world-map'],
['Deploy', '/#steps'],
['LLMs', '/#companies'],
['Features', '/#use-cases'],
['About', '/#about'],
['Network', '/#network'],
['Deploy', '/#deploy'],
['LLMs', '/#llms'],
['Features', '/#features'],
['Get Started', '/#get-started'],
].map(([label, href], index) => (
<Link

View File

@@ -0,0 +1,8 @@
'use client'
import { useSmoothScroll } from '@/hooks/use-smooth-scroll';
export default function SmoothScrollProvider({ children }: { children: React.ReactNode }) {
useSmoothScroll();
return <>{children}</>;
}