33 lines
1.3 KiB
TypeScript
33 lines
1.3 KiB
TypeScript
"use client"
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import { Clock, Sparkles } from "lucide-react";
|
|
|
|
// Missing import for NavbarStyleFullscreen - component not found in registry
|
|
// Missing import for HeroOverlay - component not found in registry
|
|
// Missing import for MediaAbout - component not found in registry
|
|
// Missing import for FeatureCardMedia - component not found in registry
|
|
// Missing import for ProductCardOne - component not found in registry
|
|
// Missing import for TestimonialCardOne - component not found in registry
|
|
// Missing import for FaqBase - component not found in registry
|
|
// Missing import for ContactSplitForm - component not found in registry
|
|
// Missing import for FooterMedia - component not found in registry
|
|
|
|
export default function LandingPage() {
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="directional-hover"
|
|
defaultTextAnimation="entrance-slide"
|
|
borderRadius="rounded"
|
|
contentWidth="medium"
|
|
sizing="largeSmallSizeLargeTitles"
|
|
background="fluid"
|
|
cardStyle="gradient-bordered"
|
|
primaryButtonStyle="gradient"
|
|
secondaryButtonStyle="solid"
|
|
headingFontWeight="bold"
|
|
>
|
|
{/* All sections skipped due to missing component imports */}
|
|
</ThemeProvider>
|
|
);
|
|
} |