Merge version_4 into main #6

Merged
bender merged 2 commits from version_4 into main 2026-03-06 17:21:50 +00:00
2 changed files with 96 additions and 1 deletions

96
src/app/contact/page.tsx Normal file
View File

@@ -0,0 +1,96 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
import HeroOverlay from "@/components/sections/hero/HeroOverlay";
import LegalSection from "@/components/legal/LegalSection";
import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
import { Phone, Mail, Clock, MapPin } from "lucide-react";
export default function ContactPage() {
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="smallMedium"
sizing="largeSmallSizeMediumTitles"
background="circleGradient"
cardStyle="gradient-mesh"
primaryButtonStyle="diagonal-gradient"
secondaryButtonStyle="glass"
headingFontWeight="semibold"
>
<div id="nav" data-section="nav">
<NavbarStyleApple
brandName="Main Attraction Barber"
navItems={[
{ name: "Services", id: "services" },
{ name: "About", id: "about" },
{ name: "Team", id: "team" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Contact", id: "contact" },
]}
/>
</div>
<div id="hero" data-section="hero">
<HeroOverlay
title="Get In Touch"
description="Contact Main Attraction Barber for bookings, questions, or to learn more about our premium barbering services."
tag="Contact"
tagIcon={Mail}
tagAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/handsome-welldressed-arabian-man-smoke-cigar-with-glass-whiskey-balcony-pub_627829-5920.jpg?_wi=2"
imageAlt="Main Attraction Barber storefront"
textPosition="center"
showBlur={true}
showDimOverlay={false}
buttons={[
{ text: "Book Appointment", href: "https://maps.google.com" },
{ text: "Back Home", href: "/" },
]}
buttonAnimation="slide-up"
/>
</div>
<div id="contact-info" data-section="contact-info">
<LegalSection
layout="section"
title="Contact Information"
subtitle="Main Attraction Barber"
sections={[
{
heading: "Address", content: [
{
type: "paragraph", text: "101 N Main St, Sumter, SC"},
],
},
{
heading: "Phone", content: [
{
type: "paragraph", text: "803-773-7700"},
],
},
{
heading: "Hours of Operation", content: [
{
type: "list", items: [
"Monday - Friday: 9:00 AM - 6:00 PM", "Saturday: 9:00 AM - 5:00 PM", "Sunday: Closed"],
},
],
},
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoReveal
logoText="Main Attraction Barber"
leftLink={{ text: "Privacy Policy", href: "#" }}
rightLink={{ text: "Terms of Service", href: "#" }}
/>
</div>
</ThemeProvider>
);
}

View File

@@ -34,7 +34,6 @@ export default function LandingPage() {
{ name: "Team", id: "team" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Contact", id: "contact" },
{ name: "Location", id: "location" },
]}
/>
</div>