From 91d420f8bfb888af6db93c5cd320a7d90f72d100 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 3 Jun 2026 08:43:39 +0000 Subject: [PATCH 1/2] Update src/app/dashboard/page.tsx --- src/app/dashboard/page.tsx | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/src/app/dashboard/page.tsx b/src/app/dashboard/page.tsx index 45f2bef..3fd78c0 100644 --- a/src/app/dashboard/page.tsx +++ b/src/app/dashboard/page.tsx @@ -7,7 +7,6 @@ import FooterSimple from '@/components/sections/footer/FooterSimple'; import ProductCatalog from '@/components/ecommerce/productCatalog/ProductCatalog'; import FeatureCardTwentyFour from '@/components/sections/feature/FeatureCardTwentyFour'; import { LayoutDashboard } from "lucide-react"; // Import necessary icons -import { ThemeProviderProps, CTAButtonVariant, AnimationType, BorderRadiusPreset, ContentWidthPreset, SizingPreset, BackgroundType, CardStyleVariant, PrimaryButtonStyleVariant, SecondaryButtonStyleVariant, HeadingFontWeight } from "@/providers/themeProvider/config/types"; export default function DashboardPage() { const commonNavItems = [ @@ -22,10 +21,6 @@ export default function DashboardPage() { { name: "Contact", id: "#contact" }, ]; - const themeProps: ThemeProviderProps = { // Copy from src/app/page.tsx - defaultButtonVariant: "bounce-effect", defaultTextAnimation: "entrance-slide", borderRadius: "soft", contentWidth: "compact", sizing: "largeSmallSizeMediumTitles", background: "fluid", cardStyle: "inset", primaryButtonStyle: "radial-glow", secondaryButtonStyle: "layered", headingFontWeight: "semibold" - }; - const dummyWatchlistProducts = [ { id: "crypto1", name: "Bitcoin", category: "Cryptocurrency", price: "$65,000", rating: 5, reviewCount: "10k+", imageSrc: "http://img.b2bpic.net/free-vector/bitcoin-symbol-cryptocurrency-blockchain-technology-background_1017-32766.jpg" }, { id: "crypto2", name: "Ethereum", category: "Cryptocurrency", price: "$3,500", rating: 4.8, reviewCount: "8k+", imageSrc: "http://img.b2bpic.net/free-vector/blockchain-ethereum-cryptocurrency-virtual-money-business-vector-illustration_53876-116361.jpg" }, @@ -39,7 +34,18 @@ export default function DashboardPage() { ]; return ( - +