Merge version_1 into main #3

Merged
bender merged 2 commits from version_1 into main 2026-03-23 17:58:12 +00:00
2 changed files with 65 additions and 180 deletions

View File

@@ -2,12 +2,12 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FaqDouble from '@/components/sections/faq/FaqDouble';
import FooterBase from '@/components/sections/footer/FooterBase';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FooterSimple from '@/components/sections/footer/FooterSimple';
export default function LandingPage() {
export default function ContactPage() {
return (
<ThemeProvider
defaultButtonVariant="shift-hover"
@@ -22,181 +22,66 @@ export default function LandingPage() {
headingFontWeight="bold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{
name: "Home",
id: "home",
href: "/",
},
{
name: "Services",
id: "services",
href: "/services",
},
{
name: "About Us",
id: "about",
href: "/about",
},
{
name: "Contact",
id: "contact",
href: "/contact",
},
]}
brandName="Varna Local Services"
bottomLeftText="Varna Local Experts"
bottomRightText="Call Now: +359 52 123 456"
/>
</div>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "About Us", id: "/about" },
{ name: "Contact", id: "/contact" }
]}
brandName="Varna Local Services"
bottomLeftText="Varna Local Experts"
bottomRightText="Call Now: +359 52 123 456"
/>
</div>
<div id="contact" data-section="contact">
<ContactSplitForm
useInvertedBackground={false}
title="Get in Touch With Our Local Experts"
description="Have a question or need assistance? Fill out the form below, and our dedicated team will get back to you promptly to discuss your needs."
inputs={[
{
name: "name",
type: "text",
placeholder: "Your Name",
required: true,
},
{
name: "email",
type: "email",
placeholder: "Your Email",
required: true,
},
{
name: "phone",
type: "tel",
placeholder: "Phone Number (Optional)",
required: false,
},
]}
textarea={{
name: "message",
placeholder: "Tell us about your needs...",
rows: 5,
required: true,
}}
imageSrc="http://img.b2bpic.net/free-photo/female-staff-giving-boarding-pass-passenger_107420-85080.jpg?_wi=2"
imageAlt="A welcoming modern office interior, ready for clients"
mediaAnimation="slide-up"
mediaPosition="right"
buttonText="Send Message"
/>
</div>
<div id="contact-cta" data-section="contact-cta">
<ContactCTA
useInvertedBackground={false}
background={{ variant: "plain" }}
tag="Get in Touch"
tagAnimation="none"
title="Need Help Now? Call or Message Us Today!"
description="Don't hesitate to reach out. Our team is ready to provide fast, reliable assistance for all your service needs in Varna."
buttons={[
{ text: "Call Now", href: "tel:+35952123456" },
{ text: "Get Free Consultation", href: "/contact" }
]}
buttonAnimation="none"
/>
</div>
<div id="faq" data-section="faq">
<FaqDouble
textboxLayout="default"
useInvertedBackground={true}
faqs={[
{
id: "1",
title: "What areas do you serve in Varna?",
content: "We proudly serve the entire Varna region, including all its districts and nearby communities. Contact us directly to confirm service availability in your specific location.",
},
{
id: "2",
title: "How can I book a service?",
content: "You can easily book a service by filling out the contact form on our website, calling us directly, or visiting our office during business hours. We offer free initial consultations.",
},
{
id: "3",
title: "Do you offer emergency services?",
content: "Yes, we provide emergency services for critical issues such as plumbing leaks, electrical failures, and urgent repairs. Please call our dedicated emergency line for immediate assistance.",
},
{
id: "4",
title: "What payment methods do you accept?",
content: "We accept various secure payment methods including cash, bank transfers, and major credit/debit cards. Payment terms can be discussed during your service consultation.",
},
{
id: "5",
title: "Are your professionals licensed and insured?",
content: "Absolutely. All our professionals are fully licensed, certified, and comprehensively insured to ensure the highest standards of safety and quality for every service provided.",
},
{
id: "6",
title: "Can I get a custom quote for my project?",
content: "Yes, we offer personalized, no-obligation quotes for all projects, big or small. Simply describe your needs, and we'll provide a detailed estimate tailored to your requirements.",
},
]}
title="Frequently Asked Questions"
description="Find quick answers to common questions about our services, the booking process, payment options, and more."
tag="Support"
faqsAnimation="slide-up"
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
columns={[
{
title: "Services",
items: [
{
label: "Home Repairs",
href: "/services#repairs",
},
{
label: "Legal Advice",
href: "/services#legal",
},
{
label: "Cleaning Services",
href: "/services#cleaning",
},
{
label: "Renovations",
href: "/services#renovations",
},
],
},
{
title: "Company",
items: [
{
label: "About Us",
href: "/about",
},
{
label: "Our Team",
href: "/about#team",
},
{
label: "Careers",
href: "/careers",
},
],
},
{
title: "Support",
items: [
{
label: "FAQ",
href: "/contact#faq",
},
{
label: "Contact Us",
href: "/contact",
},
{
label: "Privacy Policy",
href: "/privacy",
},
],
},
]}
logoText="Varna Local Services"
copyrightText="© 2024 Varna Local Services. All rights reserved."
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{
title: "Quick Links", items: [
{ label: "Home", href: "/" },
{ label: "Services", href: "/services" },
{ label: "About Us", href: "/about" }
]
},
{
title: "Services", items: [
{ label: "Home Repairs", href: "/services#repairs" },
{ label: "Legal Advice", href: "/services#legal" },
{ label: "Cleaning", href: "/services#cleaning" },
{ label: "Renovation", href: "/services#renovation" }
]
},
{
title: "Contact Us", items: [
{ label: "Varna, Bulgaria", href: "/contact" },
{ label: "+359 52 123 456", href: "tel:+35952123456" },
{ label: "info@varnaservices.com", href: "mailto:info@varnaservices.com" }
]
}
]}
bottomLeftText="© 2023 Varna Local Services. All rights reserved."
bottomRightText="Built with Trust in Varna."
/>
</div>
</ReactLenis>
</ThemeProvider>
);

View File

@@ -177,11 +177,11 @@ export default function LandingPage() {
]}
kpiItems={[
{
value: "Client Satisfaction", description: "Our top priority, reflected in every service."},
value: "Client Satisfaction", title: "Our top priority, reflected in every service."},
{
value: "Positive Feedback", description: "Consistently high ratings from our valued clients."},
value: "Positive Feedback", title: "Consistently high ratings from our valued clients."},
{
value: "Repeat Business", description: "Building lasting relationships with the Varna community."},
value: "Repeat Business", title: "Building lasting relationships with the Varna community."},
]}
title="What Our Clients Say"
description="Real stories from satisfied customers across Varna, highlighting our dedication and quality service. Your trust is our greatest reward."