diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 07f8165..1de1e42 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -6,7 +6,7 @@ import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/Nav import FeatureBorderGlow from "@/components/sections/feature/featureBorderGlow/FeatureBorderGlow"; import ContactCTA from "@/components/sections/contact/ContactCTA"; import FooterMedia from "@/components/sections/footer/FooterMedia"; -import { Sparkles, Heart, Users, Star, Zap, Clock, Music } from "lucide-react"; +import { Sparkles, Heart, Users, Star, Zap } from "lucide-react"; export default function AboutPage() { return ( @@ -29,7 +29,6 @@ export default function AboutPage() { { name: "About", id: "/about" }, { name: "Classes", id: "/classes" }, { name: "Contact", id: "/contact" }, - { name: "FAQ", id: "/faq" }, ]} brandName="Trupti Dance Academy" bottomLeftText="Melissa, Texas" @@ -140,7 +139,7 @@ export default function AboutPage() { { label: "Privacy Policy", href: "#" }, { label: "Refund Policy", href: "#" }, { label: "Terms of Service", href: "#" }, - { label: "FAQ", href: "/faq" }, + { label: "FAQ", href: "#faq" }, ], }, ]} diff --git a/src/app/classes/page.tsx b/src/app/classes/page.tsx index e437792..ce8cf0b 100644 --- a/src/app/classes/page.tsx +++ b/src/app/classes/page.tsx @@ -7,7 +7,6 @@ import FeatureBorderGlow from "@/components/sections/feature/featureBorderGlow/F import ProductCardTwo from "@/components/sections/product/ProductCardTwo"; import FooterMedia from "@/components/sections/footer/FooterMedia"; import { Sparkles, Music, Zap, Users, Calendar, Clock, Heart, Star } from "lucide-react"; -import Link from "next/link"; export default function ClassesPage() { const navItems = [ @@ -15,7 +14,6 @@ export default function ClassesPage() { { name: "About", id: "/about" }, { name: "Classes", id: "/classes" }, { name: "Contact", id: "/contact" }, - { name: "FAQ", id: "/faq" }, ]; const footerColumns = [ @@ -40,7 +38,7 @@ export default function ClassesPage() { { label: "Privacy Policy", href: "#" }, { label: "Refund Policy", href: "#" }, { label: "Terms of Service", href: "#" }, - { label: "FAQ", href: "/faq" }, + { label: "FAQ", href: "#faq" }, ], }, ]; @@ -65,7 +63,6 @@ export default function ClassesPage() { { name: "About", id: "/about" }, { name: "Classes", id: "/classes" }, { name: "Contact", id: "/contact" }, - { name: "FAQ", id: "/faq" }, ]} brandName="Trupti Dance Academy" bottomLeftText="Melissa, Texas" diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index fadad3c..92a158b 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -13,7 +13,6 @@ export default function ContactPage() { { name: "About", id: "/about" }, { name: "Classes", id: "/classes" }, { name: "Contact", id: "/contact" }, - { name: "FAQ", id: "/faq" }, ]; const footerColumns = [ @@ -38,7 +37,7 @@ export default function ContactPage() { { label: "Privacy Policy", href: "#" }, { label: "Refund Policy", href: "#" }, { label: "Terms of Service", href: "#" }, - { label: "FAQ", href: "/faq" }, + { label: "FAQ", href: "#faq" }, ], }, ]; diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9337a5c..76bdd37 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1436 +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"], -}); +import "./styles/globals.css"; export const metadata: Metadata = { - title: "Trupti Dance Academy | Premium Dance & Fitness in Melissa, TX", - description: "Join Trupti Dance Academy in Melissa, Texas for BollyX fitness and Bollywood dance classes for kids, teens, and adults. Premium dance instruction with a supportive community.", - keywords: "dance academy, Bollywood dance, BollyX fitness, dance classes Melissa Texas, kids dance, adult dance fitness", - robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Trupti Dance Academy | Dance & Fitness", - description: "Premium Bollywood dance and fitness classes for all ages in Melissa, Texas. Join our vibrant dance community today.", - type: "website", - siteName: "Trupti Dance Academy", - images: [ - { - url: "http://img.b2bpic.net/free-photo/festive-girl-posing-star-light_23-2147651829.jpg", - alt: "Trupti Dance Academy", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Trupti Dance Academy | Dance & Fitness", - description: "Join our Bollywood dance and fitness classes in Melissa, Texas", - images: ["http://img.b2bpic.net/free-photo/festive-girl-posing-star-light_23-2147651829.jpg"], - }, -}; + title: "Trupti Dance Academy - Dance Classes in Melissa, Texas", description: "Join Trupti Dance Academy for BollyX fitness and Bollywood dance classes in Melissa, Texas. Classes for kids, teens, and adults of all skill levels.", keywords: "dance classes, Bollywood, BollyX fitness, Melissa Texas, dance academy"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -