Update src/app/gallery/page.tsx
This commit is contained in:
@@ -32,9 +32,7 @@ export default function GalleryPage() {
|
||||
{ name: "About", id: "about" },
|
||||
]}
|
||||
button={{
|
||||
text: "Book Now",
|
||||
href: "/book-appointment",
|
||||
}}
|
||||
text: "Book Now", href: "/book-appointment"}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -43,60 +41,24 @@ export default function GalleryPage() {
|
||||
title="Gallery"
|
||||
description="Discover our latest nail art creations and design inspirations. Each design is a masterpiece crafted with precision and creativity."
|
||||
tag="Latest Work"
|
||||
tagAnimation="entrance-slide"
|
||||
tagAnimation="slide-up"
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
gridVariant="bento-grid"
|
||||
products={[
|
||||
{
|
||||
id: "art-1",
|
||||
name: "Tropical Paradise",
|
||||
price: "Starting at $45",
|
||||
variant: "Gel",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/oriental-style-pin-with-stones-it-high-quality-photo_114579-12248.jpg?_wi=2",
|
||||
imageAlt: "Tropical nail art with vibrant colors",
|
||||
},
|
||||
id: "art-1", name: "Tropical Paradise", price: "Starting at $45", variant: "Gel", imageSrc: "http://img.b2bpic.net/free-photo/oriental-style-pin-with-stones-it-high-quality-photo_114579-12248.jpg", imageAlt: "Tropical nail art with vibrant colors"},
|
||||
{
|
||||
id: "art-2",
|
||||
name: "Ocean Waves",
|
||||
price: "Starting at $50",
|
||||
variant: "Acrylic",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/abstract-business-card-template_23-2148271143.jpg?_wi=2",
|
||||
imageAlt: "Ocean wave design on acrylic nails",
|
||||
},
|
||||
id: "art-2", name: "Ocean Waves", price: "Starting at $50", variant: "Acrylic", imageSrc: "http://img.b2bpic.net/free-vector/abstract-business-card-template_23-2148271143.jpg", imageAlt: "Ocean wave design on acrylic nails"},
|
||||
{
|
||||
id: "art-3",
|
||||
name: "Sunset Glow",
|
||||
price: "Starting at $55",
|
||||
variant: "Gel Art",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/female-hands-with-yellow-glitter-manicure-holding-narcissus-flower_127675-2609.jpg?_wi=2",
|
||||
imageAlt: "Warm sunset inspired nail design",
|
||||
},
|
||||
id: "art-3", name: "Sunset Glow", price: "Starting at $55", variant: "Gel Art", imageSrc: "http://img.b2bpic.net/free-photo/female-hands-with-yellow-glitter-manicure-holding-narcissus-flower_127675-2609.jpg", imageAlt: "Warm sunset inspired nail design"},
|
||||
{
|
||||
id: "art-4",
|
||||
name: "Gold Shimmer",
|
||||
price: "Starting at $40",
|
||||
variant: "Gel",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/yeah-word-text-glitter-typography_53876-111673.jpg?_wi=2",
|
||||
imageAlt: "Elegant gold shimmer gel manicure",
|
||||
},
|
||||
id: "art-4", name: "Gold Shimmer", price: "Starting at $40", variant: "Gel", imageSrc: "http://img.b2bpic.net/free-vector/yeah-word-text-glitter-typography_53876-111673.jpg", imageAlt: "Elegant gold shimmer gel manicure"},
|
||||
{
|
||||
id: "art-5",
|
||||
name: "Coral Dreams",
|
||||
price: "Starting at $48",
|
||||
variant: "Dip Powder",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-covering-her-mouth-while-holding-cupcake_23-2148466417.jpg?_wi=2",
|
||||
imageAlt: "Coral and pink ombre dip powder nails",
|
||||
},
|
||||
id: "art-5", name: "Coral Dreams", price: "Starting at $48", variant: "Dip Powder", imageSrc: "http://img.b2bpic.net/free-photo/woman-covering-her-mouth-while-holding-cupcake_23-2148466417.jpg", imageAlt: "Coral and pink ombre dip powder nails"},
|
||||
{
|
||||
id: "art-6",
|
||||
name: "Crystal Palace",
|
||||
price: "Starting at $60",
|
||||
variant: "Acrylic Art",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/enigmatic-trendy-young-european-woman-with-blonde-dyed-hair-crystals-her-face-as-part-make-up-covering-one-eye-with-palm-showing-polished-nails-art-cosmetics_343059-4347.jpg?_wi=2",
|
||||
imageAlt: "Crystal embellished luxury nail art",
|
||||
},
|
||||
id: "art-6", name: "Crystal Palace", price: "Starting at $60", variant: "Acrylic Art", imageSrc: "http://img.b2bpic.net/free-photo/enigmatic-trendy-young-european-woman-with-blonde-dyed-hair-crystals-her-face-as-part-make-up-covering-one-eye-with-palm-showing-polished-nails-art-cosmetics_343059-4347.jpg", imageAlt: "Crystal embellished luxury nail art"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -105,18 +67,14 @@ export default function GalleryPage() {
|
||||
<InlineImageSplitTextAbout
|
||||
heading={[
|
||||
{
|
||||
type: "text",
|
||||
content: "Welcome to Vacation Nail Bar",
|
||||
},
|
||||
type: "text", content: "Welcome to Vacation Nail Bar"},
|
||||
]}
|
||||
useInvertedBackground={false}
|
||||
buttons={[
|
||||
{
|
||||
text: "Book Your Visit",
|
||||
href: "/book-appointment",
|
||||
},
|
||||
text: "Book Your Visit", href: "/book-appointment"},
|
||||
]}
|
||||
buttonAnimation="entrance-slide"
|
||||
buttonAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -125,154 +83,67 @@ export default function GalleryPage() {
|
||||
title="What Our Clients Say"
|
||||
description="Join hundreds of satisfied customers who have experienced the Vacation Nail Bar difference."
|
||||
tag="Client Love"
|
||||
tagAnimation="entrance-slide"
|
||||
tagAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Sarah Martinez",
|
||||
date: "March 2025",
|
||||
title: "Absolutely Perfect!",
|
||||
quote: "The staff is so friendly and professional. My nails look amazing and lasted weeks! This is my new favorite place.",
|
||||
tag: "Verified Client",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/portrait-woman-smiling-kitchen_107420-12357.jpg",
|
||||
avatarAlt: "woman portrait professional headshot",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-showing-ring-friends_23-2147807480.jpg?_wi=2",
|
||||
imageAlt: "happy woman manicure nail salon",
|
||||
},
|
||||
id: "1", name: "Sarah Martinez", date: "March 2025", title: "Absolutely Perfect!", quote: "The staff is so friendly and professional. My nails look amazing and lasted weeks! This is my new favorite place.", tag: "Verified Client", avatarSrc: "http://img.b2bpic.net/free-photo/portrait-woman-smiling-kitchen_107420-12357.jpg", avatarAlt: "woman portrait professional headshot", imageSrc: "http://img.b2bpic.net/free-photo/woman-showing-ring-friends_23-2147807480.jpg", imageAlt: "happy woman manicure nail salon"},
|
||||
{
|
||||
id: "2",
|
||||
name: "Jennifer Lee",
|
||||
date: "February 2025",
|
||||
title: "Luxury Experience",
|
||||
quote: "From the moment I walked in, I felt like I was at a tropical resort. The ambiance is incredible and the service is top-notch.",
|
||||
tag: "Verified Client",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/shocked-young-brunette-caucasian-girl-optical-glasses-stands-isolated-olive-green-background-with-copy-space_141793-67053.jpg",
|
||||
avatarAlt: "woman portrait professional headshot",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-reading-tarot_23-2150276143.jpg?_wi=2",
|
||||
imageAlt: "woman enjoying luxury nail spa",
|
||||
},
|
||||
id: "2", name: "Jennifer Lee", date: "February 2025", title: "Luxury Experience", quote: "From the moment I walked in, I felt like I was at a tropical resort. The ambiance is incredible and the service is top-notch.", tag: "Verified Client", avatarSrc: "http://img.b2bpic.net/free-photo/shocked-young-brunette-caucasian-girl-optical-glasses-stands-isolated-olive-green-background-with-copy-space_141793-67053.jpg", avatarAlt: "woman portrait professional headshot", imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-reading-tarot_23-2150276143.jpg", imageAlt: "woman enjoying luxury nail spa"},
|
||||
{
|
||||
id: "3",
|
||||
name: "Michelle Thompson",
|
||||
date: "January 2025",
|
||||
title: "Best Custom Nail Art",
|
||||
quote: "They brought my nail art vision to life! The artists are incredibly talented and attentive to detail.",
|
||||
tag: "Verified Client",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/woman-with-beautiful-gladiolus-flowers_23-2149441357.jpg",
|
||||
avatarAlt: "woman portrait professional headshot",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/master-manicure-african-woman-beauty-salon_1157-48320.jpg?_wi=2",
|
||||
imageAlt: "woman showing custom nail art design",
|
||||
},
|
||||
id: "3", name: "Michelle Thompson", date: "January 2025", title: "Best Custom Nail Art", quote: "They brought my nail art vision to life! The artists are incredibly talented and attentive to detail.", tag: "Verified Client", avatarSrc: "http://img.b2bpic.net/free-photo/woman-with-beautiful-gladiolus-flowers_23-2149441357.jpg", avatarAlt: "woman portrait professional headshot", imageSrc: "http://img.b2bpic.net/free-photo/master-manicure-african-woman-beauty-salon_1157-48320.jpg", imageAlt: "woman showing custom nail art design"},
|
||||
{
|
||||
id: "4",
|
||||
name: "Emily Rodriguez",
|
||||
date: "December 2024",
|
||||
title: "Worth Every Penny",
|
||||
quote: "Premium quality nails, relaxing environment, and amazing staff. This is the perfect escape from daily stress.",
|
||||
tag: "Verified Client",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/portrait-successful-grey-haired-female-ceo-smiling-content-experienced-beautiful-businesswoman-posing-office-room-business-company-appearance-expression-concept_74855-11905.jpg",
|
||||
avatarAlt: "woman portrait professional headshot",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/elegant-young-laughing-woman-with-cup-drink-cafe_23-2148071692.jpg?_wi=2",
|
||||
imageAlt: "relaxed woman luxury nail salon spa",
|
||||
},
|
||||
id: "4", name: "Emily Rodriguez", date: "December 2024", title: "Worth Every Penny", quote: "Premium quality nails, relaxing environment, and amazing staff. This is the perfect escape from daily stress.", tag: "Verified Client", avatarSrc: "http://img.b2bpic.net/free-photo/portrait-successful-grey-haired-female-ceo-smiling-content-experienced-beautiful-businesswoman-posing-office-room-business-company-appearance-expression-concept_74855-11905.jpg", avatarAlt: "woman portrait professional headshot", imageSrc: "http://img.b2bpic.net/free-photo/elegant-young-laughing-woman-with-cup-drink-cafe_23-2148071692.jpg", imageAlt: "relaxed woman luxury nail salon spa"},
|
||||
{
|
||||
id: "5",
|
||||
name: "Lisa Park",
|
||||
date: "November 2024",
|
||||
title: "My New Weekly Ritual",
|
||||
quote: "I visit every other week now. The vacuum pedicure and gel manicures last so long. Highly recommend!",
|
||||
tag: "Verified Client",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/scared-young-woman-studio_23-2147847014.jpg",
|
||||
avatarAlt: "woman portrait professional headshot",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-cute-brunette-model-casual-beige-warm-sweater-dark-coat_158538-10709.jpg?_wi=2",
|
||||
imageAlt: "woman showing gel manicure nails",
|
||||
},
|
||||
id: "5", name: "Lisa Park", date: "November 2024", title: "My New Weekly Ritual", quote: "I visit every other week now. The vacuum pedicure and gel manicures last so long. Highly recommend!", tag: "Verified Client", avatarSrc: "http://img.b2bpic.net/free-photo/scared-young-woman-studio_23-2147847014.jpg", avatarAlt: "woman portrait professional headshot", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-cute-brunette-model-casual-beige-warm-sweater-dark-coat_158538-10709.jpg", imageAlt: "woman showing gel manicure nails"},
|
||||
{
|
||||
id: "6",
|
||||
name: "Amanda Chen",
|
||||
date: "October 2024",
|
||||
title: "Professional & Passionate",
|
||||
quote: "The team truly cares about their craft. Every visit feels special, and my nails are always flawless.",
|
||||
tag: "Verified Client",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/joyful-business-woman-with-coffee-cup_23-2148095746.jpg",
|
||||
avatarAlt: "woman portrait professional headshot",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-young-attractive-female-white-shirt-holding-different-manicure-accessories-smiling-green-surface_140725-64176.jpg?_wi=2",
|
||||
imageAlt: "confident woman with flawless nails",
|
||||
},
|
||||
id: "6", name: "Amanda Chen", date: "October 2024", title: "Professional & Passionate", quote: "The team truly cares about their craft. Every visit feels special, and my nails are always flawless.", tag: "Verified Client", avatarSrc: "http://img.b2bpic.net/free-photo/joyful-business-woman-with-coffee-cup_23-2148095746.jpg", avatarAlt: "woman portrait professional headshot", imageSrc: "http://img.b2bpic.net/free-photo/front-view-young-attractive-female-white-shirt-holding-different-manicure-accessories-smiling-green-surface_140725-64176.jpg", imageAlt: "confident woman with flawless nails"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/still-life-office-chair-indoors_23-2151108702.jpg?_wi=4"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/still-life-office-chair-indoors_23-2151108702.jpg"
|
||||
imageAlt="Vacation Nail Bar salon interior ambiance"
|
||||
logoText="Vacation Nail Bar"
|
||||
copyrightText="© 2025 Vacation Nail Bar. All rights reserved."
|
||||
columns={[
|
||||
{
|
||||
title: "Services",
|
||||
items: [
|
||||
title: "Services", items: [
|
||||
{
|
||||
label: "Manicures",
|
||||
href: "/gallery",
|
||||
},
|
||||
label: "Manicures", href: "/gallery"},
|
||||
{
|
||||
label: "Pedicures",
|
||||
href: "/gallery",
|
||||
},
|
||||
label: "Pedicures", href: "/gallery"},
|
||||
{
|
||||
label: "Gel Extensions",
|
||||
href: "/gallery",
|
||||
},
|
||||
label: "Gel Extensions", href: "/gallery"},
|
||||
{
|
||||
label: "Nail Art",
|
||||
href: "/gallery",
|
||||
},
|
||||
label: "Nail Art", href: "/gallery"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
title: "Company", items: [
|
||||
{
|
||||
label: "About Us",
|
||||
href: "/gallery",
|
||||
},
|
||||
label: "About Us", href: "/gallery"},
|
||||
{
|
||||
label: "Book Appointment",
|
||||
href: "/book-appointment",
|
||||
},
|
||||
label: "Book Appointment", href: "/book-appointment"},
|
||||
{
|
||||
label: "Gallery",
|
||||
href: "/gallery",
|
||||
},
|
||||
label: "Gallery", href: "/gallery"},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/book-appointment",
|
||||
},
|
||||
label: "Contact", href: "/book-appointment"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact",
|
||||
items: [
|
||||
title: "Contact", items: [
|
||||
{
|
||||
label: "Phone: (972) 555-0123",
|
||||
href: "tel:+19725550123",
|
||||
},
|
||||
label: "Phone: (972) 555-0123", href: "tel:+19725550123"},
|
||||
{
|
||||
label: "Address: 4709 State Hwy 121 #128",
|
||||
href: "#",
|
||||
},
|
||||
label: "Address: 4709 State Hwy 121 #128", href: "#"},
|
||||
{
|
||||
label: "The Colony, TX 75056",
|
||||
href: "#",
|
||||
},
|
||||
label: "The Colony, TX 75056", href: "#"},
|
||||
{
|
||||
label: "Hours: Mon-Sat 10am-7pm",
|
||||
href: "#",
|
||||
},
|
||||
label: "Hours: Mon-Sat 10am-7pm", href: "#"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user