Merge version_1 into main #3
@@ -4,10 +4,10 @@ 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 HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia';
|
||||
import HeroBillboardDashboard from '@/components/sections/hero/HeroBillboardDashboard';
|
||||
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";
|
||||
import { AlertTriangle, BarChart, Gauge, Globe, Home, ListOrdered, Package, Settings, ShoppingBag, ShoppingCart, Smile, TrendingUp, UserPlus, Users } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -46,27 +46,82 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitDualMedia
|
||||
<HeroBillboardDashboard
|
||||
background={{
|
||||
variant: "animated-grid"}}
|
||||
title="Admin Dashboard"
|
||||
description="Welcome, Administrator. Manage your e-commerce operations efficiently and gain insights into ShopFusion's performance."
|
||||
tag="ShopFusion Admin"
|
||||
tagIcon={Gauge}
|
||||
buttons={[
|
||||
{
|
||||
text: "Create New Product", href: "/admin/products/new"},
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-family-spending-time-home_23-2150231687.jpg?_wi=7", imageAlt: "Admin dashboard screenshot with charts and data"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/payment-methods-with-shopping-basket_23-2147672989.jpg?_wi=1", imageAlt: "Digital dashboard interface with charts"},
|
||||
]}
|
||||
mediaAnimation="slide-up"
|
||||
rating={5}
|
||||
ratingText="Trusted by thousands of admins"
|
||||
dashboard={{
|
||||
title: "Overview", stats: [
|
||||
{
|
||||
values: ["1.2K"],
|
||||
label: "Total Orders"},
|
||||
{
|
||||
values: ["$85K"],
|
||||
label: "Revenue This Month"},
|
||||
{
|
||||
values: ["24"],
|
||||
label: "New Users Today"},
|
||||
],
|
||||
logoIcon: ShoppingBag,
|
||||
sidebarItems: [
|
||||
{
|
||||
name: "Dashboard", icon: Home,
|
||||
href: "/admin"},
|
||||
{
|
||||
name: "Products", icon: Package,
|
||||
href: "/admin/products"},
|
||||
{
|
||||
name: "Orders", icon: ListOrdered,
|
||||
href: "/admin/orders"},
|
||||
{
|
||||
name: "Customers", icon: Users,
|
||||
href: "/admin/customers"},
|
||||
{
|
||||
name: "Analytics", icon: BarChart,
|
||||
href: "/admin/analytics"},
|
||||
{
|
||||
name: "Settings", icon: Settings,
|
||||
href: "/admin/settings"},
|
||||
],
|
||||
buttons: [
|
||||
{
|
||||
text: "Create New Product", href: "/admin/products/new"},
|
||||
],
|
||||
listItems: [
|
||||
{
|
||||
label: "New order #SF2024001", detail: "$150.00", icon: ShoppingCart,
|
||||
},
|
||||
{
|
||||
label: "Customer registration", detail: "John Doe", icon: UserPlus,
|
||||
},
|
||||
{
|
||||
label: "Product 'Sneakers' low stock", detail: "3 remaining", icon: AlertTriangle,
|
||||
},
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-family-spending-time-home_23-2150231687.jpg?_wi=7", imageAlt: "Admin dashboard screenshot with charts and data", searchPlaceholder: "Search dashboard...", chartTitle: "Sales Trend", chartData: [
|
||||
{
|
||||
name: "Jan", value: 30,
|
||||
},
|
||||
{
|
||||
name: "Feb", value: 45,
|
||||
},
|
||||
{
|
||||
name: "Mar", value: 60,
|
||||
},
|
||||
{
|
||||
name: "Apr", value: 40,
|
||||
},
|
||||
{
|
||||
name: "May", value: 75,
|
||||
},
|
||||
{
|
||||
name: "Jun", value: 90,
|
||||
},
|
||||
],
|
||||
listTitle: "Recent Activities"}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user