Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 5efe6f0046 | |||
| 6f4c9bf5a9 | |||
| 542df1f7da |
141
src/app/page.tsx
141
src/app/page.tsx
@@ -11,6 +11,7 @@ import BlogCardThree from "@/components/sections/blog/BlogCardThree";
|
||||
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
||||
import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
|
||||
import Link from "next/link";
|
||||
import { MessageCircle, Instagram } from "lucide-react";
|
||||
|
||||
export default function HomePage() {
|
||||
return (
|
||||
@@ -39,7 +40,8 @@ export default function HomePage() {
|
||||
{ name: "About", id: "about" },
|
||||
]}
|
||||
button={{
|
||||
text: "Visit Us", href: "contact"}}
|
||||
text: "Visit Us", href: "contact"
|
||||
}}
|
||||
animateOnLoad={true}
|
||||
/>
|
||||
</div>
|
||||
@@ -75,17 +77,22 @@ export default function HomePage() {
|
||||
products={[
|
||||
{
|
||||
id: "1", brand: "Naimas", name: "Men's Collection", price: "Discover", rating: 5,
|
||||
reviewCount: "Premium", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AbThMmpVdd7JrNLIOY8jcy9bht/uploaded-1773072247908-rqboisna.png", imageAlt: "Men's fashion collection"},
|
||||
reviewCount: "Premium", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AbThMmpVdd7JrNLIOY8jcy9bht/uploaded-1773072247908-rqboisna.png", imageAlt: "Men's fashion collection"
|
||||
},
|
||||
{
|
||||
id: "2", brand: "Naimas", name: "Women's Collection", price: "Discover", rating: 5,
|
||||
reviewCount: "Premium", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AbThMmpVdd7JrNLIOY8jcy9bht/uploaded-1773072247908-y35zcefs.png", imageAlt: "Women's fashion collection"},
|
||||
reviewCount: "Premium", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AbThMmpVdd7JrNLIOY8jcy9bht/uploaded-1773072247908-y35zcefs.png", imageAlt: "Women's fashion collection"
|
||||
},
|
||||
{
|
||||
id: "3", brand: "Naimas", name: "Kids Collection", price: "Discover", rating: 5,
|
||||
reviewCount: "Premium", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AbThMmpVdd7JrNLIOY8jcy9bht/uploaded-1773072247908-5tlzm8ib.png", imageAlt: "Kids fashion collection"},
|
||||
reviewCount: "Premium", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AbThMmpVdd7JrNLIOY8jcy9bht/uploaded-1773072247908-5tlzm8ib.png", imageAlt: "Kids fashion collection"
|
||||
},
|
||||
{
|
||||
id: "4", brand: "Naimas", name: "Shoes Collection", price: "Discover", rating: 5,
|
||||
reviewCount: "Premium", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AbThMmpVdd7JrNLIOY8jcy9bht/uploaded-1773072247908-rw4965lw.png", imageAlt: "Shoes collection"},
|
||||
reviewCount: "Premium", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AbThMmpVdd7JrNLIOY8jcy9bht/uploaded-1773072247908-rw4965lw.png", imageAlt: "Shoes collection"
|
||||
},
|
||||
]}
|
||||
uniformGridCustomHeightClasses="min-h-60 2xl:min-h-80"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -102,43 +109,19 @@ export default function HomePage() {
|
||||
useInvertedBackground={false}
|
||||
accordionItems={[
|
||||
{
|
||||
id: "1", title: "Quality Clothing", content: "We carefully select fashionable pieces that combine style with durability. Every item in our boutique meets our high standards for quality and design."},
|
||||
id: "1", title: "Quality Clothing", content: "We carefully select fashionable pieces that combine style with durability. Every item in our boutique meets our high standards for quality and design."
|
||||
},
|
||||
{
|
||||
id: "2", title: "For the Whole Family", content: "From children to adults, we offer styles for every age. Our diverse collection ensures that every family member finds something they love."},
|
||||
id: "2", title: "For the Whole Family", content: "From children to adults, we offer styles for every age. Our diverse collection ensures that every family member finds something they love."
|
||||
},
|
||||
{
|
||||
id: "3", title: "Trusted Local Boutique", content: "Established as a beloved community fixture, Naimas Fashion is known for outstanding service, personal attention, and a deep commitment to customer satisfaction."},
|
||||
id: "3", title: "Trusted Local Boutique", content: "Established as a beloved community fixture, Naimas Fashion is known for outstanding service, personal attention, and a deep commitment to customer satisfaction."
|
||||
},
|
||||
]}
|
||||
buttons={[{ text: "Explore Collection", href: "shop" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
{/* Best Sellers Section */}
|
||||
<div id="best-sellers" data-section="best-sellers">
|
||||
<ProductCardTwo
|
||||
title="Best Sellers"
|
||||
description="Our most loved pieces curated for style and comfort."
|
||||
tag="Popular"
|
||||
textboxLayout="default"
|
||||
gridVariant="four-items-2x2-equal-grid"
|
||||
animationType="scale-rotate"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "1", brand: "Naimas Premium", name: "Elegant Evening Dress", price: "$89.99", rating: 5,
|
||||
reviewCount: "847", imageSrc: "http://img.b2bpic.net/free-photo/shop-assistant-helping-customer-choose-cloth-shoppers-touching-new-dress-hung-rack-medium-shot-fashion-store-retail-concept_74855-11996.jpg?_wi=1", imageAlt: "Elegant evening dress"},
|
||||
{
|
||||
id: "2", brand: "Naimas Casual", name: "Premium Casual Wear", price: "$54.99", rating: 5,
|
||||
reviewCount: "632", imageSrc: "http://img.b2bpic.net/free-photo/company-young-friends-with-smartphones-walking-city_1328-698.jpg?_wi=1", imageAlt: "Premium casual clothing"},
|
||||
{
|
||||
id: "3", brand: "Naimas Kids", name: "Kids Collection Set", price: "$47.99", rating: 5,
|
||||
reviewCount: "524", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-little-girl-posing-with-gift-bag_23-2148238216.jpg?_wi=1", imageAlt: "Kids fashion collection"},
|
||||
{
|
||||
id: "4", brand: "Naimas Family", name: "Family Wear Bundle", price: "$159.99", rating: 5,
|
||||
reviewCount: "428", imageSrc: "http://img.b2bpic.net/free-photo/chaldren-with-cat_1157-17817.jpg?_wi=1", imageAlt: "Family fashion bundle"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
{/* Testimonials Section */}
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardSix
|
||||
@@ -150,17 +133,23 @@ export default function HomePage() {
|
||||
animationType="slide-up"
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", name: "Fatima Al-Sayari", handle: "Local Customer", testimonial: "Very nice clothes for children and adults. It is a very good shop with excellent quality and friendly service. We come here every season!", imageSrc: "http://img.b2bpic.net/free-photo/young-attractive-businesswoman_93675-133773.jpg?_wi=1", imageAlt: "Fatima Al-Sayari"},
|
||||
id: "1", name: "Fatima Al-Sayari", handle: "Local Customer", testimonial: "Very nice clothes for children and adults. It is a very good shop with excellent quality and friendly service. We come here every season!", imageSrc: "http://img.b2bpic.net/free-photo/young-attractive-businesswoman_93675-133773.jpg?_wi=1", imageAlt: "Fatima Al-Sayari"
|
||||
},
|
||||
{
|
||||
id: "2", name: "Mohammed Hassan", handle: "Community Member", testimonial: "Best boutique in the area. The staff is so helpful and knows exactly what would suit your style. Quality is outstanding.", imageSrc: "http://img.b2bpic.net/free-vector/man-avatar-collection_24908-60253.jpg?_wi=1", imageAlt: "Mohammed Hassan"},
|
||||
id: "2", name: "Mohammed Hassan", handle: "Community Member", testimonial: "Best boutique in the area. The staff is so helpful and knows exactly what would suit your style. Quality is outstanding.", imageSrc: "http://img.b2bpic.net/free-vector/man-avatar-collection_24908-60253.jpg?_wi=1", imageAlt: "Mohammed Hassan"
|
||||
},
|
||||
{
|
||||
id: "3", name: "Layla Abdulla", handle: "Regular Customer", testimonial: "I love shopping here for my whole family. The selection for kids is amazing and prices are fair. Highly recommend!", imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-business-woman-posing-outdoors_23-2148603030.jpg?_wi=1", imageAlt: "Layla Abdulla"},
|
||||
id: "3", name: "Layla Abdulla", handle: "Regular Customer", testimonial: "I love shopping here for my whole family. The selection for kids is amazing and prices are fair. Highly recommend!", imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-business-woman-posing-outdoors_23-2148603030.jpg?_wi=1", imageAlt: "Layla Abdulla"
|
||||
},
|
||||
{
|
||||
id: "4", name: "Ahmed Ibrahim", handle: "Returning Customer", testimonial: "Very nice clothes there for children and adults. The boutique has a great vibe and I always find something special.", imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1620.jpg?_wi=1", imageAlt: "Ahmed Ibrahim"},
|
||||
id: "4", name: "Ahmed Ibrahim", handle: "Returning Customer", testimonial: "Very nice clothes there for children and adults. The boutique has a great vibe and I always find something special.", imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1620.jpg?_wi=1", imageAlt: "Ahmed Ibrahim"
|
||||
},
|
||||
{
|
||||
id: "5", name: "Sara Al-Mazrouei", handle: "Fashion Enthusiast", testimonial: "The elegance and sophistication in every piece is remarkable. This is my go-to place for premium quality clothing.", imageSrc: "http://img.b2bpic.net/free-photo/young-attractive-businesswoman_93675-133773.jpg?_wi=2", imageAlt: "Sara Al-Mazrouei"},
|
||||
id: "5", name: "Sara Al-Mazrouei", handle: "Fashion Enthusiast", testimonial: "The elegance and sophistication in every piece is remarkable. This is my go-to place for premium quality clothing.", imageSrc: "http://img.b2bpic.net/free-photo/young-attractive-businesswoman_93675-133773.jpg?_wi=2", imageAlt: "Sara Al-Mazrouei"
|
||||
},
|
||||
{
|
||||
id: "6", name: "Karim Al-Marri", handle: "Family Shopper", testimonial: "Finding clothes for the whole family in one place is a blessing. Naimas Fashion does it perfectly with style and quality.", imageSrc: "http://img.b2bpic.net/free-vector/man-avatar-collection_24908-60253.jpg?_wi=2", imageAlt: "Karim Al-Marri"},
|
||||
id: "6", name: "Karim Al-Marri", handle: "Family Shopper", testimonial: "Finding clothes for the whole family in one place is a blessing. Naimas Fashion does it perfectly with style and quality.", imageSrc: "http://img.b2bpic.net/free-vector/man-avatar-collection_24908-60253.jpg?_wi=2", imageAlt: "Karim Al-Marri"
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -192,17 +181,71 @@ export default function HomePage() {
|
||||
useInvertedBackground={false}
|
||||
blogs={[
|
||||
{
|
||||
id: "1", category: "Fashion", title: "Luxury Fashion Photography", excerpt: "Premium styling and elegant presentation of our collection.", imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-beautiful-romantic-gift-fancy-chair_181624-33210.jpg?_wi=1", imageAlt: "Luxury fashion display", authorName: "Naimas Fashion", authorAvatar: "http://img.b2bpic.net/free-photo/young-attractive-businesswoman_93675-133773.jpg", date: "2024"},
|
||||
id: "1", category: "Fashion", title: "Luxury Fashion Photography", excerpt: "Premium styling and elegant presentation of our collection.", imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-beautiful-romantic-gift-fancy-chair_181624-33210.jpg?_wi=1", imageAlt: "Luxury fashion display", authorName: "Naimas Fashion", authorAvatar: "http://img.b2bpic.net/free-photo/young-attractive-businesswoman_93675-133773.jpg", date: "2024"
|
||||
},
|
||||
{
|
||||
id: "2", category: "Collections", title: "Our Signature Styles", excerpt: "Timeless pieces that define our boutique aesthetic.", imageSrc: "http://img.b2bpic.net/free-photo/smiley-woman-selling-clothes-full-shot_23-2149731134.jpg?_wi=1", imageAlt: "Signature fashion styles", authorName: "Naimas Fashion", authorAvatar: "http://img.b2bpic.net/free-vector/man-avatar-collection_24908-60253.jpg", date: "2024"},
|
||||
id: "2", category: "Collections", title: "Our Signature Styles", excerpt: "Timeless pieces that define our boutique aesthetic.", imageSrc: "http://img.b2bpic.net/free-photo/smiley-woman-selling-clothes-full-shot_23-2149731134.jpg?_wi=1", imageAlt: "Signature fashion styles", authorName: "Naimas Fashion", authorAvatar: "http://img.b2bpic.net/free-vector/man-avatar-collection_24908-60253.jpg", date: "2024"
|
||||
},
|
||||
{
|
||||
id: "3", category: "Details", title: "Quality Craftsmanship", excerpt: "Every detail matters in our premium collection.", imageSrc: "http://img.b2bpic.net/free-photo/charming-young-woman-holding-gift_501050-549.jpg?_wi=1", imageAlt: "Fashion craftsmanship details", authorName: "Naimas Fashion", authorAvatar: "http://img.b2bpic.net/free-photo/portrait-happy-business-woman-posing-outdoors_23-2148603030.jpg", date: "2024"},
|
||||
id: "3", category: "Details", title: "Quality Craftsmanship", excerpt: "Every detail matters in our premium collection.", imageSrc: "http://img.b2bpic.net/free-photo/charming-young-woman-holding-gift_501050-549.jpg?_wi=1", imageAlt: "Fashion craftsmanship details", authorName: "Naimas Fashion", authorAvatar: "http://img.b2bpic.net/free-photo/portrait-happy-business-woman-posing-outdoors_23-2148603030.jpg", date: "2024"
|
||||
},
|
||||
{
|
||||
id: "4", category: "Family", title: "Fashion for Everyone", excerpt: "Quality clothing that brings families together.", imageSrc: "http://img.b2bpic.net/free-photo/elegant-mother-with-daughter-summer-forest_1157-35565.jpg?_wi=1", imageAlt: "Family fashion collection", authorName: "Naimas Fashion", authorAvatar: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1620.jpg", date: "2024"},
|
||||
id: "4", category: "Family", title: "Fashion for Everyone", excerpt: "Quality clothing that brings families together.", imageSrc: "http://img.b2bpic.net/free-photo/elegant-mother-with-daughter-summer-forest_1157-35565.jpg?_wi=1", imageAlt: "Family fashion collection", authorName: "Naimas Fashion", authorAvatar: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1620.jpg", date: "2024"
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
{/* Contact Area Section */}
|
||||
<div id="contact" data-section="contact" className="py-20 px-6 md:px-12 lg:px-24 bg-background">
|
||||
<div className="max-w-4xl mx-auto">
|
||||
<div className="text-center mb-12">
|
||||
<h2 className="text-4xl md:text-5xl lg:text-6xl font-light mb-4">Get in Touch</h2>
|
||||
<p className="text-lg text-foreground/80">Connect with us via WhatsApp or Instagram</p>
|
||||
</div>
|
||||
|
||||
<div className="grid md:grid-cols-2 gap-8">
|
||||
{/* WhatsApp Section */}
|
||||
<div className="flex flex-col items-center justify-center p-8 rounded-lg bg-card border border-accent/20 hover:border-primary-cta/50 transition-colors">
|
||||
<MessageCircle className="w-12 h-12 mb-4 text-primary-cta" />
|
||||
<h3 className="text-2xl font-medium mb-4">WhatsApp</h3>
|
||||
<div className="flex flex-col gap-3 w-full">
|
||||
<a
|
||||
href="https://wa.me/971717705511"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
className="flex items-center justify-center px-6 py-3 bg-primary-cta text-primary-cta-text rounded-full hover:opacity-90 transition-opacity font-medium"
|
||||
>
|
||||
+971 71 770 5511
|
||||
</a>
|
||||
<a
|
||||
href="https://wa.me/971733985434"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
className="flex items-center justify-center px-6 py-3 bg-primary-cta text-primary-cta-text rounded-full hover:opacity-90 transition-opacity font-medium"
|
||||
>
|
||||
+971 73 398 5434
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/* Instagram Section */}
|
||||
<div className="flex flex-col items-center justify-center p-8 rounded-lg bg-card border border-accent/20 hover:border-primary-cta/50 transition-colors">
|
||||
<Instagram className="w-12 h-12 mb-4 text-primary-cta" />
|
||||
<h3 className="text-2xl font-medium mb-4">Instagram</h3>
|
||||
<a
|
||||
href="https://instagram.com/naimasfashion"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
className="flex items-center justify-center px-6 py-3 bg-primary-cta text-primary-cta-text rounded-full hover:opacity-90 transition-opacity font-medium"
|
||||
>
|
||||
@naimasfashion
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/* CTA Section */}
|
||||
<div id="cta" data-section="cta">
|
||||
<ContactCTA
|
||||
@@ -223,11 +266,13 @@ export default function HomePage() {
|
||||
<FooterLogoReveal
|
||||
logoText="NAIMAS Fashion"
|
||||
leftLink={{
|
||||
text: "Privacy Policy", href: "#"}}
|
||||
text: "Privacy Policy", href: "#"
|
||||
}}
|
||||
rightLink={{
|
||||
text: "Terms of Service", href: "#"}}
|
||||
text: "Terms of Service", href: "#"
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user