diff --git a/src/app/admin/page.tsx b/src/app/admin/page.tsx
index a96befc..9e1800a 100644
--- a/src/app/admin/page.tsx
+++ b/src/app/admin/page.tsx
@@ -4,7 +4,7 @@ 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 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 } from "lucide-react";
@@ -28,156 +28,45 @@ export default function LandingPage() {
-
@@ -189,25 +78,13 @@ 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"
@@ -221,20 +98,11 @@ 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."
@@ -246,54 +114,33 @@ export default function LandingPage() {