Merge version_1 into main #8

Merged
bender merged 1 commits from version_1 into main 2026-03-26 08:56:13 +00:00

View File

@@ -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 (