diff --git a/src/app/cart/page.tsx b/src/app/cart/page.tsx index 6a48552..cfb71db 100644 --- a/src/app/cart/page.tsx +++ b/src/app/cart/page.tsx @@ -5,8 +5,8 @@ import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/Nav export default function CartPage() { return ( - - + +

Your Shopping Cart

Cart items will appear here.

diff --git a/src/app/catalog/page.tsx b/src/app/catalog/page.tsx index bb87bac..5ea29ad 100644 --- a/src/app/catalog/page.tsx +++ b/src/app/catalog/page.tsx @@ -2,37 +2,15 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; -import ProductCatalogItem from '@/components/ecommerce/productCatalog/ProductCatalogItem'; -import React from 'react'; export default function CatalogPage() { - const categories = ['Mobile Games', 'PC Games', 'Console Games']; - return ( - - + +

Game Catalog

- {categories.map((cat) => ( -
-

{cat}

-
- - - -
-
- ))} +

Explore our library of games.

); -} +} \ No newline at end of file diff --git a/src/app/checkout/page.tsx b/src/app/checkout/page.tsx index cfad1c9..fbb9ee9 100644 --- a/src/app/checkout/page.tsx +++ b/src/app/checkout/page.tsx @@ -5,11 +5,11 @@ import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/Nav export default function CheckoutPage() { return ( - - + +

Checkout

-

Please select your payment method to complete your purchase.

+

Please proceed with payment.

); diff --git a/src/app/confirmation/page.tsx b/src/app/confirmation/page.tsx index afafecd..df066df 100644 --- a/src/app/confirmation/page.tsx +++ b/src/app/confirmation/page.tsx @@ -5,8 +5,8 @@ import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/Nav export default function ConfirmationPage() { return ( - - + +

Order Confirmed!

Thank you for your purchase.

diff --git a/src/app/page.tsx b/src/app/page.tsx index ab52f76..dd2c0b9 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,101 +2,79 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactCenter from '@/components/sections/contact/ContactCenter'; -import FaqBase from '@/components/sections/faq/FaqBase'; -import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen'; import FooterMedia from '@/components/sections/footer/FooterMedia'; -import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial'; -import MediaAbout from '@/components/sections/about/MediaAbout'; +import HeroBillboardDashboard from '@/components/sections/hero/HeroBillboardDashboard'; +import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen'; import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; -import PricingCardNine from '@/components/sections/pricing/PricingCardNine'; -import ProductCardFour from '@/components/sections/product/ProductCardFour'; -import HeroBillboardDashboard from '@/components/sections/hero/HeroBillboardDashboard'; -import { LayoutDashboard, Gamepad2, Package, TrendingUp } from 'lucide-react'; +import { LayoutDashboard, Gamepad2, Package, TrendingUp, BarChart3, Users, Zap } from 'lucide-react'; export default function LandingPage() { return ( - + - + -
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
- +
); diff --git a/src/app/transactions/page.tsx b/src/app/transactions/page.tsx index 8d4ec74..affc0d7 100644 --- a/src/app/transactions/page.tsx +++ b/src/app/transactions/page.tsx @@ -5,11 +5,11 @@ import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/Nav export default function TransactionsPage() { return ( - - + +

Transaction History

-

View your past orders and status updates here.

+

View your past orders here.

);