diff --git a/src/app/gallery/page.tsx b/src/app/gallery/page.tsx index d085fbb..2b761e7 100644 --- a/src/app/gallery/page.tsx +++ b/src/app/gallery/page.tsx @@ -1,18 +1,6 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import { - CTAButtonVariant, - TextAnimationType, - BorderRadius, - ContentWidth, - Sizing, - Background, - CardStyle, - PrimaryButtonStyle, - SecondaryButtonStyle, - HeadingFontWeight -} from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import ProductCardThree from '@/components/sections/product/ProductCardThree'; import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen'; @@ -26,16 +14,16 @@ export default function GalleryPage() { ]; const themeProps = { - defaultButtonVariant: "shift-hover" as CTAButtonVariant, - defaultTextAnimation: "entrance-slide" as TextAnimationType, - borderRadius: "rounded" as BorderRadius, - contentWidth: "mediumLarge" as ContentWidth, - sizing: "medium" as Sizing, - background: "noiseDiagonalGradient" as Background, - cardStyle: "subtle-shadow" as CardStyle, - primaryButtonStyle: "shadow" as PrimaryButtonStyle, - secondaryButtonStyle: "solid" as SecondaryButtonStyle, - headingFontWeight: "bold" as HeadingFontWeight + defaultButtonVariant: "shift-hover", + defaultTextAnimation: "entrance-slide", + borderRadius: "rounded", + contentWidth: "mediumLarge", + sizing: "medium", + background: "noiseDiagonalGradient", + cardStyle: "subtle-shadow", + primaryButtonStyle: "shadow", + secondaryButtonStyle: "solid", + headingFontWeight: "bold" }; return (