From c14e2a93cb2be74a1352059f27be57ddcb29cff9 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 10:13:44 +0000 Subject: [PATCH 1/4] Add src/app/contact/page.tsx --- src/app/contact/page.tsx | 133 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 133 insertions(+) create mode 100644 src/app/contact/page.tsx diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx new file mode 100644 index 0000000..08b6b2d --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,133 @@ +"use client"; + +import { Phone, MessageCircle, MapPin } from "lucide-react"; +import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; +import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; +import FooterCard from "@/components/sections/footer/FooterCard"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; + +export default function ContactPage() { + const handleFormSubmit = (data: Record) => { + console.log("Form submitted:", data); + }; + + return ( + + + +
+ +
+ +
+
+

Contact Information

+ +
+
+
+ +
+

Phone

+

Call us anytime

+ + 07702470459 + +
+ +
+
+ +
+

WhatsApp

+

Quick response via WhatsApp

+ + Message on WhatsApp + +
+ +
+
+ +
+

Location

+

Visit our store

+ + SR Nagar, Hyderabad + +
+
+
+
+ + +
+ ); +} -- 2.49.1 From a7317278d04c51531722eef130d718b9c802f472 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 10:13:44 +0000 Subject: [PATCH 2/4] Update src/app/layout.tsx --- src/app/layout.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0ae6da4..4662f56 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -2,7 +2,8 @@ import type { Metadata } from "next"; import "./globals.css"; export const metadata: Metadata = { - title: "School Uniforms & Textiles - Quality Uniforms for Your Child", description: "Premium school uniforms, expert tailoring, and quick service in SR Nagar. Browse our complete collection or call now for instant availability."}; + title: "School Uniforms & Textiles - Quality Uniforms for Your Child", description: "Premium school uniforms, expert tailoring, and quick service in SR Nagar. Browse our complete collection or call now for instant availability." +}; export default function RootLayout({ children, -- 2.49.1 From 9b7df3f9be74ae49a568380ac35758300cd6f80b Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 10:13:45 +0000 Subject: [PATCH 3/4] Update src/app/page.tsx --- src/app/page.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index ee81ace..1fb5ab4 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -39,7 +39,7 @@ export default function LandingPage() { { name: "Products", id: "products" }, { name: "Schools", id: "schools" }, { name: "Services", id: "/services" }, - { name: "Contact", id: "contact" }, + { name: "Contact", id: "/contact" }, ]} button={{ text: "Call Now", href: "tel:+919876543210" }} /> @@ -84,7 +84,7 @@ export default function LandingPage() { carouselPosition="right" buttons={[ { text: "📞 Call Now", href: "tel:+919876543210" }, - { text: "Check Availability", href: "#contact" }, + { text: "Check Availability", href: "/contact" }, ]} buttonAnimation="slide-up" /> @@ -127,7 +127,7 @@ export default function LandingPage() { gridVariant="four-items-2x2-equal-grid" animationType="slide-up" useInvertedBackground={false} - buttons={[{ text: "Get Started Today", href: "#contact" }]} + buttons={[{ text: "Get Started Today", href: "/contact" }]} buttonAnimation="slide-up" /> @@ -179,7 +179,7 @@ export default function LandingPage() { ]} speed={40} showCard={true} - buttons={[{ text: "Check Your School", href: "#contact" }]} + buttons={[{ text: "Check Your School", href: "/contact" }]} buttonAnimation="slide-up" /> @@ -201,7 +201,7 @@ export default function LandingPage() { }, { id: "custom", badge: "Popular", badgeIcon: Star, - price: "₹300-500", subtitle: "Custom uniform stitching", buttons: [{ text: "Order Now", href: "#contact" }], + price: "₹300-500", subtitle: "Custom uniform stitching", buttons: [{ text: "Order Now", href: "/contact" }], features: [ "Accurate measurements", "Custom design options", "Premium quality fabrics", "Perfect fit guaranteed" ], -- 2.49.1 From 1128c32e95e213d7fde0725f62d591e8a4e61ebf Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 10:13:45 +0000 Subject: [PATCH 4/4] Update src/app/services/page.tsx --- src/app/services/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx index a04f4cc..4c01fea 100644 --- a/src/app/services/page.tsx +++ b/src/app/services/page.tsx @@ -33,7 +33,7 @@ export default function ServicesPage() { { name: "Products", id: "products" }, { name: "Schools", id: "schools" }, { name: "Services", id: "/services" }, - { name: "Contact", id: "contact" }, + { name: "Contact", id: "/contact" }, ]} button={{ text: "Call Now", href: "tel:+919876543210" }} /> @@ -56,7 +56,7 @@ export default function ServicesPage() { }, { id: "custom", badge: "Popular", badgeIcon: Star, - price: "₹300-500", subtitle: "Custom uniform stitching", buttons: [{ text: "Order Now", href: "#contact" }], + price: "₹300-500", subtitle: "Custom uniform stitching", buttons: [{ text: "Order Now", href: "/contact" }], features: [ "Accurate measurements", "Custom design options", "Premium quality fabrics", "Perfect fit guaranteed" ], -- 2.49.1