diff --git a/src/app/admin/page.tsx b/src/app/admin/page.tsx index 2ae3c82..9fcd7ce 100644 --- a/src/app/admin/page.tsx +++ b/src/app/admin/page.tsx @@ -49,6 +49,7 @@ export default function AdminPage() { title="Admin Panel" description="Manage your platform's users, content, settings, and subscriptions efficiently." className="container" + textboxLayout="default" >
diff --git a/src/app/dashboard/page.tsx b/src/app/dashboard/page.tsx index 2177e93..45f2bef 100644 --- a/src/app/dashboard/page.tsx +++ b/src/app/dashboard/page.tsx @@ -7,6 +7,7 @@ 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 = [ @@ -21,8 +22,9 @@ export default function DashboardPage() { { name: "Contact", id: "#contact" }, ]; - const themeProps = { // 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 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" }, @@ -66,8 +68,6 @@ export default function DashboardPage() {
diff --git a/src/app/login/page.tsx b/src/app/login/page.tsx index 0b0205d..579190a 100644 --- a/src/app/login/page.tsx +++ b/src/app/login/page.tsx @@ -65,7 +65,6 @@ export default function LoginPage() { Password diff --git a/src/app/register/page.tsx b/src/app/register/page.tsx index 0ecd628..2747f09 100644 --- a/src/app/register/page.tsx +++ b/src/app/register/page.tsx @@ -70,7 +70,6 @@ export default function RegisterPage() { Password Confirm Password