diff --git a/src/app/admin/page.tsx b/src/app/admin/page.tsx
index 1c8988f..980e326 100644
--- a/src/app/admin/page.tsx
+++ b/src/app/admin/page.tsx
@@ -7,7 +7,7 @@ import FooterBase from '@/components/sections/footer/FooterBase';
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, ListOrdered, Package, Settings, ShoppingBag, ShoppingCart, Smile, TrendingUp, UserPlus, Users } from "lucide-react";
+import { AlertTriangle, BarChart, Gauge, Globe, Home, Package, Settings, ShoppingCart, Smile, TrendingUp, UserPlus, Users, ShoppingBag, ListOrdered } from "lucide-react";
export default function LandingPage() {
return (
@@ -92,13 +92,13 @@ export default function LandingPage() {
],
listItems: [
{
- label: "New order #SF2024001", detail: "$150.00", icon: ShoppingCart,
+ name: "New order #SF2024001", detail: "$150.00", icon: ShoppingCart,
},
{
- label: "Customer registration", detail: "John Doe", icon: UserPlus,
+ name: "Customer registration", detail: "John Doe", icon: UserPlus,
},
{
- label: "Product 'Sneakers' low stock", detail: "3 remaining", icon: AlertTriangle,
+ name: "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: [
diff --git a/src/app/cart/page.tsx b/src/app/cart/page.tsx
index 1e42bb2..a9ec387 100644
--- a/src/app/cart/page.tsx
+++ b/src/app/cart/page.tsx
@@ -28,78 +28,45 @@ export default function LandingPage() {
{}}
isOpen={false}
items={[
{
- id: "1",
- name: "Classic White Sneakers",
- variants: [
- "Size: 10",
- "Color: White",
- ],
- price: "$79.99",
- quantity: 1,
- imageSrc: "http://img.b2bpic.net/free-photo/female-walking-park-high-quality-photo_114579-92105.jpg?_wi=5",
- imageAlt: "Classic white sneakers",
- },
+ id: "1", name: "Classic White Sneakers", variants: [
+ "Size: 10", "Color: White"],
+ price: "$79.99", quantity: 1,
+ imageSrc: "http://img.b2bpic.net/free-photo/female-walking-park-high-quality-photo_114579-92105.jpg?_wi=5", imageAlt: "Classic white sneakers"},
{
- id: "2",
- name: "Noise-Cancelling Headphones",
- variants: [
- "Color: Black",
- ],
- price: "$149.50",
- quantity: 1,
- imageSrc: "http://img.b2bpic.net/free-photo/positive-cute-student-girl-having-fun-indoors-after-college-using-headset-while-chatting-online-via-video-chat-her-smartphone_343059-3805.jpg?_wi=5",
- imageAlt: "Noise-cancelling headphones",
- },
+ id: "2", name: "Noise-Cancelling Headphones", variants: [
+ "Color: Black"],
+ price: "$149.50", quantity: 1,
+ imageSrc: "http://img.b2bpic.net/free-photo/positive-cute-student-girl-having-fun-indoors-after-college-using-headset-while-chatting-online-via-video-chat-her-smartphone_343059-3805.jpg?_wi=5", imageAlt: "Noise-cancelling headphones"},
]}
total="$229.49"
buttons={[
{
- text: "Continue Shopping",
- href: "/products",
- },
+ text: "Continue Shopping", href: "/products"},
{
- text: "Proceed to Checkout",
- href: "/checkout",
- },
+ text: "Proceed to Checkout", href: "/checkout"},
]}
title="Your Shopping Cart"
totalLabel="Subtotal"
@@ -114,26 +81,11 @@ export default function LandingPage() {
useInvertedBackground={false}
products={[
{
- id: "5",
- name: "Premium Leather Wallet",
- price: "$49.99",
- imageSrc: "http://img.b2bpic.net/free-photo/closeup-businessman-s-hands-with-ornate-silver-tiger-ring-other-accessories_181624-55178.jpg?_wi=3",
- imageAlt: "Premium leather wallet",
- },
+ id: "5", name: "Premium Leather Wallet", price: "$49.99", imageSrc: "http://img.b2bpic.net/free-photo/closeup-businessman-s-hands-with-ornate-silver-tiger-ring-other-accessories_181624-55178.jpg?_wi=3", imageAlt: "Premium leather wallet"},
{
- id: "6",
- name: "Ergonomic Office Chair",
- price: "$299.00",
- imageSrc: "http://img.b2bpic.net/free-photo/high-angle-family-spending-time-home_23-2150231687.jpg?_wi=5",
- imageAlt: "Ergonomic office chair",
- },
+ id: "6", name: "Ergonomic Office Chair", price: "$299.00", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-family-spending-time-home_23-2150231687.jpg?_wi=5", imageAlt: "Ergonomic office chair"},
{
- id: "7",
- name: "Smart LED Desk Lamp",
- price: "$65.00",
- imageSrc: "http://img.b2bpic.net/free-vector/payment-methods-with-shopping-basket_23-2147672989.jpg?_wi=3",
- imageAlt: "Smart LED desk lamp",
- },
+ id: "7", name: "Smart LED Desk Lamp", price: "$65.00", imageSrc: "http://img.b2bpic.net/free-vector/payment-methods-with-shopping-basket_23-2147672989.jpg?_wi=3", imageAlt: "Smart LED desk lamp"},
]}
title="You Might Also Like"
description="Curated selections based on your cart and browsing history."
@@ -144,17 +96,14 @@ export default function LandingPage() {
@@ -163,54 +112,33 @@ export default function LandingPage() {