diff --git a/src/app/components/page.tsx b/src/app/components/page.tsx new file mode 100644 index 0000000..b5ea295 --- /dev/null +++ b/src/app/components/page.tsx @@ -0,0 +1,74 @@ +'use client'; + +import { ThemeProvider } from 'next-themes'; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard'; +import FeatureCardTwentyEight from '@/components/sections/feature/FeatureCardTwentyEight'; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; + +export default function ComponentsPage() { + const defaultTheme = { + defaultButtonVariant: "hover-magnetic", defaultTextAnimation: "entrance-slide", borderRadius: "rounded", contentWidth: "medium", sizing: "medium", background: "none", cardStyle: "soft-shadow", primaryButtonStyle: "gradient", secondaryButtonStyle: "glass", headingFontWeight: "bold"}; + + return ( + + +
+
+ +
+
+ +
+
+ +
+
+
+ ); +} \ No newline at end of file