diff --git a/src/app/admin-dashboard/page.tsx b/src/app/admin-dashboard/page.tsx new file mode 100644 index 0000000..d8ea124 --- /dev/null +++ b/src/app/admin-dashboard/page.tsx @@ -0,0 +1,107 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import FooterCard from '@/components/sections/footer/FooterCard'; +import HeroSplitDoubleCarousel from '@/components/sections/hero/HeroSplitDoubleCarousel'; +import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven'; +import FeatureBento from '@/components/sections/feature/FeatureBento'; +import { BarChart2, CheckCircle, Clock, Facebook, Instagram, Linkedin, ListChecks, MapPin } from "lucide-react"; + +export default function AdminDashboardPage() { + return ( + + + + +
+ +
+ +
+ +
+ +
+ +
+ + +
+
+ ); +} diff --git a/src/app/page.tsx b/src/app/page.tsx index 7365d2a..2f6153c 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -33,15 +33,17 @@ export default function LandingPage() { { + console.log("Form data submitted:", data); + // In a real application, you would send this data to your backend API. + // Example: fetch('/api/contact', { method: 'POST', body: JSON.stringify(data) }); + alert("Message sent successfully (simulated)! Check console for data."); + }} />