diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index f9fcc57..0ae6da4 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,49 +1,17 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
-import { Inter } from "next/font/google";
-import { Manrope } 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 manrope = Manrope({
- variable: "--font-manrope", subsets: ["latin"],
-});
export const metadata: Metadata = {
- title: "School Uniforms & Textiles in SR Nagar | Quality Uniforms & Tailoring", description: "Shop quality school uniforms, shoes, and tailoring services in SR Nagar. Trusted by parents for 15+ years. Call now for instant availability and pricing.", keywords: "school uniforms near me, school dress shop, school uniform stitching, school uniform store, tailoring services, kids uniform, school accessories", robots: {
- index: true,
- follow: true,
- },
- openGraph: {
- title: "School Uniforms & Textiles - Quality Uniforms for Your Child", description: "Find all your child's school uniform needs in one place. Quality fabrics, expert tailoring, and friendly service.", type: "website", siteName: "School Uniforms & Textiles"},
- twitter: {
- card: "summary_large_image", title: "School Uniforms in SR Nagar - Quality & Trusted", description: "Your local one-stop shop for quality school uniforms and tailoring services"},
-};
+ 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,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-
-
-
- {children}
-
+
+ {children}
-
);
}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 19477bb..ee81ace 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -35,10 +35,10 @@ export default function LandingPage() {
diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx
new file mode 100644
index 0000000..a04f4cc
--- /dev/null
+++ b/src/app/services/page.tsx
@@ -0,0 +1,131 @@
+"use client";
+
+import { Scissors, Zap, Star, Sparkles, Phone, MessageCircle, MapPin } from "lucide-react";
+import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
+import PricingCardEight from "@/components/sections/pricing/PricingCardEight";
+import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
+import FooterCard from "@/components/sections/footer/FooterCard";
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+
+export default function ServicesPage() {
+ const handleFormSubmit = (data: Record) => {
+ console.log("Form submitted:", data);
+ };
+
+ return (
+
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+}