Merge version_40 into main

Merge version_40 into main
This commit was merged in pull request #43.
This commit is contained in:
2026-06-02 19:17:27 +00:00

View File

@@ -10,7 +10,7 @@ import FooterCard from '@/components/sections/footer/FooterCard';
import HeroLogo from '@/components/sections/hero/HeroLogo';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import PricingCardOne from '@/components/sections/pricing/PricingCardOne';
import ProductCardThree from '@/components/sections/product/ProductCardThree';
import ProductCardFour from '@/components/sections/product/ProductCardFour';
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
import { Award, Crown, Diamond, Facebook, Heart, Instagram, Paintbrush, Phone, Sparkles, Star, Twitter } from "lucide-react";
@@ -109,24 +109,24 @@ export default function LandingPage() {
</div>
<div id="products" data-section="products">
<ProductCardThree
<ProductCardFour
animationType="slide-up"
textboxLayout="default"
gridVariant="three-columns-all-equal-width"
useInvertedBackground={false}
products={[
{
id: "prod-1", name: "Classic Manicure", price: "$30", imageSrc: "http://img.b2bpic.net/free-photo/make-up-nail-polish_23-2148109470.jpg", imageAlt: "Classic French Manicure"},
id: "prod-1", name: "Classic Manicure", price: "$30", imageSrc: "http://img.b2bpic.net/free-photo/make-up-nail-polish_23-2148109470.jpg", imageAlt: "Classic French Manicure", variant: "Classic"},
{
id: "prod-2", name: "Gel Manicure", price: "$45", imageSrc: "http://img.b2bpic.net/free-photo/woman-showing-her-nail-art-fingernails-with-glass_23-2149820409.jpg", imageAlt: "Vibrant Gel Manicure"},
id: "prod-2", name: "Gel Manicure", price: "$45", imageSrc: "http://img.b2bpic.net/free-photo/woman-showing-her-nail-art-fingernails-with-glass_23-2149820409.jpg", imageAlt: "Vibrant Gel Manicure", variant: "Gel"},
{
id: "prod-3", name: "Spa Pedicure", price: "$60", imageSrc: "http://img.b2bpic.net/free-photo/spa-concept-with-woman-getting-massage-feet_23-2147821183.jpg", imageAlt: "Relaxing Spa Pedicure"},
id: "prod-3", name: "Spa Pedicure", price: "$60", imageSrc: "http://img.b2bpic.net/free-photo/spa-concept-with-woman-getting-massage-feet_23-2147821183.jpg", imageAlt: "Relaxing Spa Pedicure", variant: "Spa"},
{
id: "prod-4", name: "Acrylic Full Set", price: "$70", imageSrc: "http://img.b2bpic.net/free-photo/front-view-young-female-manicure-pink-t-shirt-with-black-gloves-black-mask-doing-manicure-blue_140725-24220.jpg", imageAlt: "Elegant Acrylic Nails"},
id: "prod-4", name: "Acrylic Full Set", price: "$70", imageSrc: "http://img.b2bpic.net/free-photo/front-view-young-female-manicure-pink-t-shirt-with-black-gloves-black-mask-doing-manicure-blue_140725-24220.jpg", imageAlt: "Elegant Acrylic Nails", variant: "Acrylic"},
{
id: "prod-5", name: "Custom Nail Art", price: "$15+", imageSrc: "http://img.b2bpic.net/free-photo/close-up-beautiful-manicure-blue-background_23-2149311585.jpg", imageAlt: "Intricate Custom Nail Art"},
id: "prod-5", name: "Custom Nail Art", price: "$15+", imageSrc: "http://img.b2bpic.net/free-photo/close-up-beautiful-manicure-blue-background_23-2149311585.jpg", imageAlt: "Intricate Custom Nail Art", variant: "Custom"},
{
id: "prod-6", name: "Mani-Pedi Combo", price: "$80", imageSrc: "http://img.b2bpic.net/free-photo/pink-gray-nail-varnish-bottles-dried-white-limonium-box-colored-background_23-2148074006.jpg", imageAlt: "Manicure and Pedicure Combo"},
id: "prod-6", name: "Mani-Pedi Combo", price: "$80", imageSrc: "http://img.b2bpic.net/free-photo/pink-gray-nail-varnish-bottles-dried-white-limonium-box-colored-background_23-2148074006.jpg", imageAlt: "Manicure and Pedicure Combo", variant: "Combo"},
]}
title="Explore Our Nail Offerings"
description="Discover a selection of our most popular manicures, pedicures, and nail enhancements."
@@ -240,4 +240,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}