diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 60e4b4e..2078446 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -1,6 +1,6 @@ "use client"; -import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import { ThemeProvider, ThemeProviderProps } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; // Correct imports based on LOCKED_SELECTION and registry @@ -19,7 +19,7 @@ export default function LandingPage() { { name: "Contact", id: "/contact" } ]; - const themeProps = { + const themeProps: ThemeProviderProps = { defaultButtonVariant: "bounce-effect", defaultTextAnimation: "background-highlight", borderRadius: "soft", contentWidth: "smallMedium", sizing: "mediumLargeSizeLargeTitles", background: "circleGradient", cardStyle: "soft-shadow", primaryButtonStyle: "radial-glow", secondaryButtonStyle: "radial-glow", headingFontWeight: "normal" };