This commit is contained in:
2025-09-17 15:45:33 +02:00
parent 8f997b2f86
commit 9e26dce717
5 changed files with 19 additions and 38 deletions

View File

@@ -35,6 +35,9 @@ export default function Home() {
<section id="features">
<UseCases />
</section>
<section id="clickable-gallery">
<ClickableGallery />
</section>
<section id="get-started">
<GetStarted />
</section>

View File

@@ -1,7 +1,6 @@
import { type Metadata } from 'next'
import { Mulish } from 'next/font/google'
import clsx from 'clsx'
import SmoothScrollProvider from '@/components/SmoothScrollProvider'
import '@/styles/tailwind.css'
@@ -27,7 +26,7 @@ export default function RootLayout({
}) {
return (
<html lang="en" className={clsx('antialiased', mulish.variable)}>
<body className="bg-black text-white"><SmoothScrollProvider>{children}</SmoothScrollProvider></body>
<body className="bg-black text-white">{children}</body>
</html>
)
}