diff --git a/src/app/cart/page.tsx b/src/app/cart/page.tsx index da4efd6..1d5ab56 100644 --- a/src/app/cart/page.tsx +++ b/src/app/cart/page.tsx @@ -6,7 +6,7 @@ import React from "react"; export default function CartPage() { return ( - + Your Shopping Cart

Your cart is empty. Start shopping for your favorite Trackly devices.

- +
); } \ No newline at end of file diff --git a/src/app/checkout/page.tsx b/src/app/checkout/page.tsx index 620f8e7..12e4018 100644 --- a/src/app/checkout/page.tsx +++ b/src/app/checkout/page.tsx @@ -6,7 +6,7 @@ import React from "react"; export default function CheckoutPage() { return ( - + Checkout

Please enter your shipping and payment details to complete your order.

- +
); } \ No newline at end of file diff --git a/src/app/dashboard/page.tsx b/src/app/dashboard/page.tsx index 50c4cff..f5eb295 100644 --- a/src/app/dashboard/page.tsx +++ b/src/app/dashboard/page.tsx @@ -6,7 +6,7 @@ import React from "react"; export default function UserDashboardPage() { return ( - + Dashboard

Welcome back! Here you can manage your account, track orders, and view your devices.

- +
); } \ No newline at end of file diff --git a/src/app/order-confirmation/page.tsx b/src/app/order-confirmation/page.tsx index 66e4a07..03feba4 100644 --- a/src/app/order-confirmation/page.tsx +++ b/src/app/order-confirmation/page.tsx @@ -6,7 +6,7 @@ import React from "react"; export default function OrderConfirmationPage() { return ( - + Thank You!

Your order has been placed successfully.

- +
); } \ No newline at end of file diff --git a/src/app/page.tsx b/src/app/page.tsx index 7468a9e..36925e2 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -10,7 +10,7 @@ import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/Nav import PricingCardFive from '@/components/sections/pricing/PricingCardFive'; import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen'; import FaqSplitText from '@/components/sections/faq/FaqSplitText'; -import { Activity, MapPin, Star } from "lucide-react"; +import { Activity, MapPin } from "lucide-react"; export default function LandingPage() { return ( @@ -116,6 +116,7 @@ export default function LandingPage() { sideTitle="Frequently Asked Questions" sideDescription="Everything you need to know about our trackers." faqsAnimation="slide-up" + useInvertedBackground={false} faqs={[ { id: "f1", title: "How do I sync my tracker?", content: "Simple, just tap the add button in our app." }, { id: "f2", title: "Is it waterproof?", content: "Yes, all models are IP67 rated." }, diff --git a/src/app/product/[id]/page.tsx b/src/app/product/[id]/page.tsx index 2343234..52cb6ee 100644 --- a/src/app/product/[id]/page.tsx +++ b/src/app/product/[id]/page.tsx @@ -5,7 +5,7 @@ import ReactLenis from "lenis/react"; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import FooterSimple from '@/components/sections/footer/FooterSimple'; -export default function ProductDetailPage({ params }: { params: { id: string } }) { +export default function ProductPage({ params }: { params: { id: string } }) { return (
-

Product Details: {params.id}

-

This is the detail view for product {params.id}. Discover features and technical specifications.

+

Product Details

+

Displaying information for product: {params.id}

diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index 9394aed..1228a25 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -9,7 +9,8 @@ import FooterSimple from '@/components/sections/footer/FooterSimple'; export default function ShopPage() { const products = [ { id: "1", name: "Trackly Pro", price: "$49", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/top-view-tampon-pattern_23-2148163081.jpg?_wi=1" }, - { id: "2", name: "Trackly Mini", price: "$29", rating: 4, imageSrc: "http://img.b2bpic.net/free-photo/top-view-tampon-pattern_23-2148163081.jpg?_wi=2" } + { id: "2", name: "Trackly Mini", price: "$29", rating: 4, imageSrc: "http://img.b2bpic.net/free-photo/top-view-tampon-pattern_23-2148163081.jpg?_wi=2" }, + { id: "3", name: "Trackly Basic", price: "$19", rating: 4, imageSrc: "http://img.b2bpic.net/free-photo/top-view-tampon-pattern_23-2148163081.jpg?_wi=3" } ]; return ( @@ -50,6 +51,7 @@ export default function ShopPage() { { title: "Company", items: [{ label: "About", href: "/about" }] } ]} bottomLeftText="© 2024 TracklyHub" + bottomRightText="Secure your world." />