diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx new file mode 100644 index 0000000..e0296e7 --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,88 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import ContactCenter from '@/components/sections/contact/ContactCenter'; +import FooterMedia from '@/components/sections/footer/FooterMedia'; +import { Phone } from "lucide-react"; + +export default function ContactPage() { + return ( + + + +
+ +
+ + +
+ ); +} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index fe3f5be..5b1d334 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,19 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Public_Sans } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], -}); export const metadata: Metadata = { - title: "Hair Club Barbershop | Premium Haircuts & Grooming in San Antonio", description: "Expert barbershop in San Antonio with 4.9★ rating. Precision haircuts, fades, beard trims, hot shaves. Book now or call (210) 555-1234. Walk-ins welcome!", keywords: "barbershop San Antonio, haircut, barber, fades, beard trim, grooming, men's haircut, hot shave", openGraph: { - title: "Hair Club Barbershop | San Antonio", description: "Premium barbershop with 4.9★ rating and 1,200+ customers. Expert haircuts, fades, beard grooming.", siteName: "Hair Club", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/handsome-bearded-man-barbershop-barber-work_627829-7279.jpg", alt: "Hair Club Barbershop Interior"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Hair Club Barbershop | San Antonio", description: "Premium barbershop with 4.9★ rating. Expert haircuts & grooming.", images: ["http://img.b2bpic.net/free-photo/handsome-bearded-man-barbershop-barber-work_627829-7279.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Hair Club | Premium Barbershop in San Antonio", description: "Expert barbershop services in San Antonio. Precision haircuts, fades, beard grooming, and hot shaves. 4.9★ rating from 1,200+ satisfied customers."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +