From 35933b30de0f57ab4be85b681ead5d743d941755 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 10 Jun 2026 11:34:59 +0000 Subject: [PATCH] Add src/app/components/page.tsx --- src/app/components/page.tsx | 74 +++++++++++++++++++++++++++++++++++++ 1 file changed, 74 insertions(+) create mode 100644 src/app/components/page.tsx 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