first commit

This commit is contained in:
2026-04-15 22:37:39 +03:00
parent 3c59557946
commit 1590bef227
156 changed files with 13823 additions and 84 deletions

View File

@@ -0,0 +1,16 @@
"use client";
import { ReactLenis } from "lenis/react";
import { ReactNode } from "react";
export default function SmoothScroll({ children }: { children: ReactNode }) {
return (
<ReactLenis root options={{
lerp: 0.05,
duration: 1.5,
smoothWheel: true
}}>
{children}
</ReactLenis>
);
}