id
This commit is contained in:
@@ -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
|
||||
|
8
src/components/SmoothScrollProvider.tsx
Normal file
8
src/components/SmoothScrollProvider.tsx
Normal 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}</>;
|
||||
}
|
Reference in New Issue
Block a user