5 Commits

Author SHA1 Message Date
ea3e3c7138 Update src/app/page.tsx 2026-03-04 13:52:45 +00:00
4245ac668e Update src/app/page.tsx 2026-03-04 13:50:57 +00:00
36512b0062 Update src/app/layout.tsx 2026-03-04 13:50:57 +00:00
6470481942 Merge version_2 into main
Merge version_2 into main
2026-03-04 13:36:51 +00:00
5f6991ee7d Merge version_2 into main
Merge version_2 into main
2026-03-04 13:35:40 +00:00
2 changed files with 66 additions and 17 deletions

View File

@@ -5,7 +5,8 @@ import "./globals.css";
const inter = Inter({ subsets: ["latin"] }); const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Top Gun Cuts Barbershop", description: "Professional barbershop services in Biloxi, MS"}; title: "Top Gun Cuts Barbershop", description: "Professional barbershop services in Biloxi, MS"
};
export default function RootLayout({ export default function RootLayout({
children, children,

View File

@@ -6,9 +6,9 @@ import HeroCentered from '@/components/sections/hero/HeroCentered';
import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen'; import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen';
import SplitAbout from '@/components/sections/about/SplitAbout'; import SplitAbout from '@/components/sections/about/SplitAbout';
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve'; import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
import ContactText from '@/components/sections/contact/ContactText'; import TeamCardEleven from '@/components/sections/team/TeamCardEleven';
import FooterBase from '@/components/sections/footer/FooterBase'; import FooterBase from '@/components/sections/footer/FooterBase';
import { Check, Heart, Scissors, Star } from "lucide-react"; import { Check, Heart, Scissors, Star, MapPin, Phone, Clock } from "lucide-react";
export default function LandingPage() { export default function LandingPage() {
return ( return (
@@ -122,28 +122,76 @@ export default function LandingPage() {
</div> </div>
<div id="location" data-section="location"> <div id="location" data-section="location">
<ContactText <TeamCardEleven
text="Visit Top Gun Cuts Barbershop | 1670F Pass Rd, Biloxi, MS 39531 | Located in Commerce Court Shopping Center | Open Daily at 8:00 AM | Call +1 228-224-3114" title="Visit Top Gun Cuts Barbershop"
animationType="entrance-slide" description="Find us at our convenient location in Commerce Court Shopping Center. Stop by anytime during our business hours."
textboxLayout="default"
useInvertedBackground={false}
animationType="slide-up"
groups={[
{
id: "address", groupTitle: "Address", members: [
{
id: "1", title: "1670F Pass Road", subtitle: "Biloxi, MS 39531", detail: "Commerce Court Shopping Center", imageSrc: ""
}
]
},
{
id: "phone", groupTitle: "Phone", members: [
{
id: "2", title: "+1 228-224-3114", subtitle: "Call us to book", detail: "Available during business hours", imageSrc: ""
}
]
},
{
id: "hours", groupTitle: "Hours", members: [
{
id: "3", title: "Open Daily", subtitle: "8:00 AM onwards", detail: "Your convenience is our priority", imageSrc: ""
}
]
}
]}
buttons={[ buttons={[
{ text: "Get Directions", href: "https://maps.google.com/?q=1670F+Pass+Rd,+Biloxi,+MS+39531" }, { text: "Get Directions", href: "https://maps.google.com/?q=1670F+Pass+Rd,+Biloxi,+MS+39531" },
{ text: "Call Now", href: "tel:+12282243114" } { text: "Call Now", href: "tel:+12282243114" }
]} ]}
background={{ variant: "plain" }}
useInvertedBackground={false}
/> />
</div> </div>
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<ContactText <TeamCardEleven
text="Ready for a Fresh Cut? Book your appointment or call us today to schedule your visit to Top Gun Cuts Barbershop." title="Ready for a Fresh Cut?"
animationType="reveal-blur" description="Book your appointment or reach out to us. We're excited to help you look your best."
textboxLayout="default"
useInvertedBackground={false}
animationType="slide-up"
groups={[
{
id: "booking", groupTitle: "Book Online", members: [
{
id: "1", title: "Schedule Your Visit", subtitle: "Quick and easy booking", detail: "Reserve your preferred time slot", imageSrc: ""
}
]
},
{
id: "phone-contact", groupTitle: "Call Us", members: [
{
id: "2", title: "+1 228-224-3114", subtitle: "Direct phone line", detail: "Speak with our team in real-time", imageSrc: ""
}
]
},
{
id: "visit", groupTitle: "Walk-Ins Welcome", members: [
{
id: "3", title: "Stop by anytime", subtitle: "No appointment needed", detail: "Experience our service firsthand", imageSrc: ""
}
]
}
]}
buttons={[ buttons={[
{ text: "Book Appointment", href: "contact" }, { text: "Book Appointment", href: "#contact" },
{ text: "Call Now", href: "tel:+12282243114" } { text: "Call Now", href: "tel:+12282243114" }
]} ]}
background={{ variant: "plain" }}
useInvertedBackground={false}
/> />
</div> </div>
@@ -171,7 +219,7 @@ export default function LandingPage() {
title: "Contact", items: [ title: "Contact", items: [
{ label: "Phone: +1 228-224-3114", href: "tel:+12282243114" }, { label: "Phone: +1 228-224-3114", href: "tel:+12282243114" },
{ label: "1670F Pass Rd, Biloxi, MS 39531", href: "https://maps.google.com/?q=1670F+Pass+Rd,+Biloxi,+MS+39531" }, { label: "1670F Pass Rd, Biloxi, MS 39531", href: "https://maps.google.com/?q=1670F+Pass+Rd,+Biloxi,+MS+39531" },
{ label: "Open Daily at 8:00 AM", href: "#" } { label: "Open Daily at 8:00 AM", href: "#location" }
] ]
} }
]} ]}