Files
e9c8c074-642c-434e-b771-c72…/src/app/contact/page.tsx

111 lines
4.2 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import Link from "next/link";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
import HeroBillboardGallery from "@/components/sections/hero/HeroBillboardGallery";
import ContactText from "@/components/sections/contact/ContactText";
import FooterCard from "@/components/sections/footer/FooterCard";
export default function ContactPage() {
return (
<ThemeProvider
defaultButtonVariant="hover-magnetic"
defaultTextAnimation="entrance-slide"
borderRadius="soft"
contentWidth="small"
sizing="mediumSizeLargeTitles"
background="blurBottom"
cardStyle="soft-shadow"
primaryButtonStyle="diagonal-gradient"
secondaryButtonStyle="layered"
headingFontWeight="light"
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
brandName="Fit For A King Tailors"
navItems={[
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "Gallery", id: "/gallery" },
{ name: "About", id: "/about" },
]}
button={{
text: "Schedule Fitting",
href: "/contact",
}}
animateOnLoad={true}
/>
</div>
<div id="contact-hero" data-section="contact-hero">
<HeroBillboardGallery
title="Get In Touch With Fit For A King Tailors"
description="Professional Tailoring Services in Pearland, TX Contact Us Today for Your Perfect Fit"
tag="Contact Us"
tagAnimation="slide-up"
background={{ variant: "plain" }}
mediaItems={[
{
imageSrc: "http://img.b2bpic.net/free-photo/classy-man-tailor-shop_53876-24895.jpg?_wi=2",
imageAlt: "Professional tailoring shop",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/she-is-professional-fashion-designer_329181-14351.jpg?_wi=6",
imageAlt: "Expert tailoring service",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/close-up-person-cutting-fabric-pieces-by-rotary-cutter-mat-using-ruler_23-2148164443.jpg?_wi=5",
imageAlt: "Precision tailoring work",
},
]}
mediaAnimation="blur-reveal"
buttons={[
{ text: "Call Now", href: "tel:+1-281-999-9999" },
{
text: "Visit Location",
href: "https://maps.google.com/?q=1826+Country+Place+Parkway+116+Pearland+Texas+77584",
},
]}
buttonAnimation="slide-up"
/>
</div>
<div id="contact-form" data-section="contact-form">
<ContactText
text="Ready to schedule your fitting? Call us directly or visit our shop in Pearland. We're here to help you find the perfect fit."
animationType="entrance-slide"
buttons={[
{ text: "Call: (281) 999-9999", href: "tel:+1-281-999-9999" },
{
text: "1826 Country Place Parkway #116, Pearland, TX 77584",
href: "https://maps.google.com/?q=1826+Country+Place+Parkway+116+Pearland+Texas+77584",
},
]}
background={{ variant: "radial-gradient" }}
useInvertedBackground={false}
/>
</div>
<div id="contact-info" data-section="contact-info">
<ContactText
text="Hours: Monday-Friday 10:00 AM - 6:00 PM | Saturday 10:00 AM - 4:00 PM | Sunday Closed. We serve Pearland, Houston, Friendswood, League City, and Pasadena."
animationType="entrance-slide"
buttons={[
{ text: "Email: info@fitforakingTailors.com", href: "mailto:info@fitforakingTailors.com" },
{ text: "Follow Us Online", href: "#" },
]}
background={{ variant: "plain" }}
useInvertedBackground={true}
/>
</div>
<div id="footer" data-section="footer">
<FooterCard
logoText="Fit For A King Tailors"
copyrightText="© 2025 Fit For A King Tailors. All rights reserved. Serving Pearland, Houston, Friendswood, League City, and Pasadena."
/>
</div>
</ThemeProvider>
);
}