Update src/pages/HomePage.tsx

This commit is contained in:
2026-06-13 19:59:13 +00:00
parent 948a217ff1
commit 01cc8dcfaf

View File

@@ -7,10 +7,22 @@ import MetricsIconCards from '@/components/sections/metrics/MetricsIconCards';
import TestimonialRatingCards from '@/components/sections/testimonial/TestimonialRatingCards';
import FooterSimpleCard from '@/components/sections/footer/FooterSimpleCard';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
export default function HomePage() {
return (
<>
<ThemeProvider
defaultButtonVariant="gradient"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<div id="hero" data-section="hero">
<SectionErrorBoundary name="hero">
<HeroBillboardBrand
@@ -125,6 +137,6 @@ export default function HomePage() {
/>
</SectionErrorBoundary>
</div>
</>
</ThemeProvider>
);
}