id
This commit is contained in:
@@ -20,19 +20,19 @@ export default function Home() {
|
||||
<section id="home-hero">
|
||||
<HomeHero />
|
||||
</section>
|
||||
<section id="">
|
||||
<section id="about">
|
||||
<StackSectionPreview />
|
||||
</section>
|
||||
<section id="world-map">
|
||||
<section id="network">
|
||||
<WorldMap />
|
||||
</section>
|
||||
<section id="steps">
|
||||
<section id="deploy">
|
||||
<Steps />
|
||||
</section>
|
||||
<section id="companies">
|
||||
<section id="llms">
|
||||
<Companies />
|
||||
</section>
|
||||
<section id="use-cases">
|
||||
<section id="features">
|
||||
<UseCases />
|
||||
</section>
|
||||
<section id="get-started">
|
||||
|
@@ -1,6 +1,7 @@
|
||||
import { type Metadata } from 'next'
|
||||
import { Mulish } from 'next/font/google'
|
||||
import clsx from 'clsx'
|
||||
import SmoothScrollProvider from '@/components/SmoothScrollProvider'
|
||||
|
||||
import '@/styles/tailwind.css'
|
||||
|
||||
@@ -26,7 +27,7 @@ export default function RootLayout({
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" className={clsx('antialiased', mulish.variable)}>
|
||||
<body className="bg-black text-white">{children}</body>
|
||||
<body className="bg-black text-white"><SmoothScrollProvider>{children}</SmoothScrollProvider></body>
|
||||
</html>
|
||||
)
|
||||
}
|
||||
|
Reference in New Issue
Block a user