diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 6f8fdce..d065801 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -9,8 +9,7 @@ export default function ContactPage() { const navItems = [ { name: "Home", id: "/" }, { name: "Shop", id: "/shop" }, - { name: "Collections", id: "/collections" }, - { name: "Reviews", id: "/reviews" }, + { name: "Collections", id: "#collections" }, { name: "Contact", id: "/contact" }, ]; @@ -69,22 +68,14 @@ export default function ContactPage() { description="We'd love to hear from you. Have a question or feedback? Send us a message and we'll respond as soon as possible." inputs={[ { - name: "name", - type: "text", - placeholder: "Your Full Name", - required: true, + name: "name", type: "text", placeholder: "Your Full Name", required: true, }, { - name: "email", - type: "email", - placeholder: "Your Email Address", - required: true, + name: "email", type: "email", placeholder: "Your Email Address", required: true, }, ]} textarea={{ - name: "message", - placeholder: "Tell us what you need help with...", - rows: 5, + name: "message", placeholder: "Tell us what you need help with...", rows: 5, required: true, }} useInvertedBackground={false} diff --git a/src/app/page.tsx b/src/app/page.tsx index 8afe16f..502afef 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -6,10 +6,9 @@ import HeroSplitTestimonial from "@/components/sections/hero/HeroSplitTestimonia import FeatureCardSix from "@/components/sections/feature/FeatureCardSix"; import ProductCardFour from "@/components/sections/product/ProductCardFour"; import MetricCardFourteen from "@/components/sections/metrics/MetricCardFourteen"; -import TestimonialCardTwo from "@/components/sections/testimonial/TestimonialCardTwo"; import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; -import { Zap, Star, Award, CheckCircle, ThumbsUp } from "lucide-react"; +import { Zap } from "lucide-react"; import Link from "next/link"; export default function HomePage() { @@ -17,7 +16,6 @@ export default function HomePage() { { name: "Home", id: "/" }, { name: "Shop", id: "/shop" }, { name: "Collections", id: "#collections" }, - { name: "Reviews", id: "#reviews" }, { name: "Contact", id: "#newsletter" }, ]; @@ -63,13 +61,7 @@ export default function HomePage() { > @@ -176,34 +144,16 @@ export default function HomePage() { useInvertedBackground={false} products={[ { - id: "1", - name: "Skechers Performance Runner", - price: "1,299 EGP", - variant: "Black • White • Navy", - imageSrc: - "http://img.b2bpic.net/free-photo/sportswoman-tying-her-shoelaces-before-training-close-up-gray-background_639032-1563.jpg?_wi=1", - imageAlt: "Skechers Performance Runner", - isFavorited: false, + id: "1", name: "Skechers Performance Runner", price: "1,299 EGP", variant: "Black • White • Navy", imageSrc: + "http://img.b2bpic.net/free-photo/sportswoman-tying-her-shoelaces-before-training-close-up-gray-background_639032-1563.jpg?_wi=1", imageAlt: "Skechers Performance Runner", isFavorited: false, }, { - id: "2", - name: "Nike Air Zoom Elite", - price: "1,899 EGP", - variant: "Red • Blue • Silver", - imageSrc: - "http://img.b2bpic.net/free-photo/athlete-young-man-stretching-his-leg-hand-sidewalk-city_23-2148123950.jpg?_wi=1", - imageAlt: "Nike Air Zoom Elite", - isFavorited: false, + id: "2", name: "Nike Air Zoom Elite", price: "1,899 EGP", variant: "Red • Blue • Silver", imageSrc: + "http://img.b2bpic.net/free-photo/athlete-young-man-stretching-his-leg-hand-sidewalk-city_23-2148123950.jpg?_wi=1", imageAlt: "Nike Air Zoom Elite", isFavorited: false, }, { - id: "3", - name: "Adidas Ultraboost Pro", - price: "2,299 EGP", - variant: "White • Black • Gold", - imageSrc: - "http://img.b2bpic.net/free-photo/sportswoman-tying-her-shoelaces-before-training-close-up-gray-background_639032-1563.jpg?_wi=2", - imageAlt: "Adidas Ultraboost Pro", - isFavorited: false, + id: "3", name: "Adidas Ultraboost Pro", price: "2,299 EGP", variant: "White • Black • Gold", imageSrc: + "http://img.b2bpic.net/free-photo/sportswoman-tying-her-shoelaces-before-training-close-up-gray-background_639032-1563.jpg?_wi=2", imageAlt: "Adidas Ultraboost Pro", isFavorited: false, }, ]} /> @@ -215,104 +165,33 @@ export default function HomePage() { tag="Trust & Quality" metrics={[ { - id: "1", - value: "100%", - description: - "Original Products - All items are guaranteed authentic and sourced directly from manufacturers.", - }, + id: "1", value: "100%", description: + "Original Products - All items are guaranteed authentic and sourced directly from manufacturers."}, { - id: "2", - value: "24/7", - description: - "Cash on Delivery - Pay safely when your order arrives at your doorstep.", - }, + id: "2", value: "24/7", description: + "Cash on Delivery - Pay safely when your order arrives at your doorstep."}, { - id: "3", - value: "30 Days", - description: - "Easy Returns - Hassle-free returns within 30 days for complete peace of mind.", - }, + id: "3", value: "30 Days", description: + "Easy Returns - Hassle-free returns within 30 days for complete peace of mind."}, { - id: "4", - value: "2-3 Days", - description: - "Fast Shipping - Quick delivery across Egypt with tracking available.", - }, + id: "4", value: "2-3 Days", description: + "Fast Shipping - Quick delivery across Egypt with tracking available."}, ]} metricsAnimation="slide-up" useInvertedBackground={false} /> -
- -
-