diff --git a/src/app/page.tsx b/src/app/page.tsx index 429546c..6d3752a 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -12,12 +12,10 @@ import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleAp import ProductCardOne from '@/components/sections/product/ProductCardOne'; import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard'; import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen'; -import { Heart, Palette, Scissors, Sparkles, User, Wind, Languages } from "lucide-react"; +import { Heart, Palette, Scissors, Sparkles, User, Wind } from "lucide-react"; import { useState } from "react"; export default function LandingPage() { - const [lang, setLang] = useState("RU"); - return ( @@ -111,7 +110,7 @@ export default function LandingPage() { { id: "g1", name: "Glossy Finishes", price: "View", imageSrc: "http://img.b2bpic.net/free-photo/blonde-model-posing_1122-488.jpg", imageAlt: "high fashion beauty campaign hairstyle" }, { id: "g2", name: "Precision Cuts", price: "View", imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-woman-with-attitude-white_158595-5500.jpg", imageAlt: "hair coloring artistic transformation shot" }, { id: "g3", name: "Color Mastery", price: "View", imageSrc: "http://img.b2bpic.net/free-photo/closeup-photo-young-curlyhaired-girl-headshot-photo-high-quality-photo_114579-92023.jpg", imageAlt: "editorial portrait female perfect hairstyle" }, - { id: "g4", name: "Bridal Elegance", price: "View", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-looking-photo-tape-red-background-high-quality-photo_114579-60927.jpg", imageAlt: "high end balayage styling editorial" }, + { id: "g4", name: "Bridal Elegance", price: "View", imageSrc: "http://img.b2bpic.net/young-woman-looking-photo-tape-red-background-high-quality-photo_114579-60927.jpg", imageAlt: "high end balayage styling editorial" }, { id: "g5", name: "Modern Balayage", price: "View", imageSrc: "http://img.b2bpic.net/free-photo/front-view-woman-posing-with-flower_52683-119994.jpg", imageAlt: "artistic editorial hairstyle photoshoot" }, { id: "g6", name: "Editorial Portraits", price: "View", imageSrc: "http://img.b2bpic.net/free-photo/fashionable-model-posing-studio-stylish-outfit-rock-leather-style-trend_285396-9687.jpg", imageAlt: "premium hair styling editorial shot" }, ]} @@ -157,8 +156,8 @@ export default function LandingPage() { title="Premium Booking Service" description="Select your preferred service and time for a curated appointment." inputs={[ - { name: "name", type: "text", placeholder: "Full Name" }, - { name: "email", type: "email", placeholder: "Email Address" }, + { name: "name", type: "text", placeholder: "Full Name", required: true }, + { name: "email", type: "email", placeholder: "Email Address", required: true }, ]} multiSelect={{ name: "service", label: "Choose Service", options: ["Haircut", "Balayage", "Coloring", "Bridal Styling"] }} textarea={{ name: "notes", placeholder: "Special requests?" }}