diff --git a/src/app/admin/page.tsx b/src/app/admin/page.tsx index eae701e..e942918 100644 --- a/src/app/admin/page.tsx +++ b/src/app/admin/page.tsx @@ -3,8 +3,8 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; import FaqBase from '@/components/sections/faq/FaqBase'; -import FooterBase from '@/components/sections/footer/FooterBase'; -import HeroBillboardDashboard from '@/components/sections/hero/HeroBillboardDashboard'; +import FooterMedia from '@/components/sections/footer/FooterMedia'; +import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia'; import MetricCardOne from '@/components/sections/metrics/MetricCardOne'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import { AlertTriangle, BarChart, Gauge, Globe, Home, Package, Settings, ShoppingCart, Smile, TrendingUp, UserPlus, Users, ShoppingBag, ListOrdered } from "lucide-react"; @@ -28,15 +28,20 @@ export default function LandingPage() {
-
@@ -133,14 +79,14 @@ export default function LandingPage() { useInvertedBackground={false} metrics={[ { - id: "1", value: "98%", title: "Customer Satisfaction", description: "Based on recent customer feedback and reviews.", icon: Smile, + id: "1", value: "98%", title: "Customer Satisfaction", description: "Based on recent customer feedback and reviews.", icon: Smile }, { - id: "2", value: "12%", title: "Conversion Rate", description: "Increase in sales from website visitors last month.", icon: TrendingUp, + id: "2", value: "12%", title: "Conversion Rate", description: "Increase in sales from website visitors last month.", icon: TrendingUp }, { - id: "3", value: "3.5M", title: "Website Traffic", description: "Unique visitors to ShopFusion this quarter.", icon: Globe, - }, + id: "3", value: "3.5M", title: "Website Traffic", description: "Unique visitors to ShopFusion this quarter.", icon: Globe + } ]} title="Key Performance Indicators" description="Essential metrics for your ShopFusion e-commerce platform." @@ -153,11 +99,14 @@ export default function LandingPage() { useInvertedBackground={false} faqs={[ { - id: "1", title: "How do I add a new product?", content: "Navigate to the 'Products' section in the sidebar and click the 'Add New Product' button. Fill in all required product details."}, + id: "1", title: "How do I add a new product?", content: "Navigate to the 'Products' section in the sidebar and click the 'Add New Product' button. Fill in all required product details." + }, { - id: "2", title: "Where can I view sales reports?", content: "Sales reports and other analytics can be found under the 'Analytics' section. You can filter by date range and category."}, + id: "2", title: "Where can I view sales reports?", content: "Sales reports and other analytics can be found under the 'Analytics' section. You can filter by date range and category." + }, { - id: "3", title: "How do I manage user accounts?", content: "The 'Customers' section allows you to view, edit, and manage all customer accounts, including resetting passwords or checking order history."}, + id: "3", title: "How do I manage user accounts?", content: "The 'Customers' section allows you to view, edit, and manage all customer accounts, including resetting passwords or checking order history." + } ]} title="Admin Portal FAQs" description="Quick answers to common questions about using the ShopFusion Admin Dashboard." @@ -166,38 +115,49 @@ export default function LandingPage() {