9 Commits

Author SHA1 Message Date
6a9f1bbbf5 Update src/app/page.tsx 2026-03-07 19:08:21 +00:00
4e0973a309 Update src/app/layout.tsx 2026-03-07 19:08:20 +00:00
1aa6cbd576 Update src/app/contact/page.tsx 2026-03-07 19:08:20 +00:00
282820236f Update src/app/classes/page.tsx 2026-03-07 19:08:20 +00:00
ab5c37ee93 Update src/app/about/page.tsx 2026-03-07 19:08:19 +00:00
a12630004c Merge version_3 into main
Merge version_3 into main
2026-03-07 19:04:14 +00:00
5d63913ff6 Update src/app/page.tsx 2026-03-07 19:04:10 +00:00
6bccd31cb1 Update src/app/layout.tsx 2026-03-07 19:04:09 +00:00
926a17e65f Merge version_2 into main
Merge version_2 into main
2026-03-07 19:02:14 +00:00
5 changed files with 11 additions and 20 deletions

View File

@@ -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" },
],
},
]}

View File

@@ -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"

View File

@@ -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" },
],
},
];

View File

@@ -1,11 +1,8 @@
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./globals.css";
const inter = Inter({ subsets: ["latin"] });
import "./styles/globals.css";
export const metadata: Metadata = {
title: "Trupti Dance Academy", description: "Join Trupti Dance Academy in Melissa, Texas for BollyX fitness and Bollywood dance classes for kids, teens, and adults."};
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,
@@ -14,7 +11,7 @@ export default function RootLayout({
}) {
return (
<html lang="en">
<body className={inter.className}>{children}
<body>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1384,4 +1381,4 @@ export default function RootLayout({
</body>
</html>
);
}
}

View File

@@ -32,7 +32,6 @@ export default function HomePage() {
{ name: "About", id: "/about" },
{ name: "Classes", id: "/classes" },
{ name: "Contact", id: "/contact" },
{ name: "FAQ", id: "/faq" },
]}
brandName="Trupti Dance Academy"
bottomLeftText="Melissa, Texas"
@@ -130,7 +129,7 @@ export default function HomePage() {
<div id="classes-showcase" data-section="classes-showcase">
<ProductCardTwo
title="Classes for Every Age & Level"
description="From tiny dancers aged 4 to adults looking for a fun workout, we offer classes for everyone. Our expert-led sessions focus on technique, fitness, and most importantly — having fun. All classes are $60/month with flexible scheduling and a 2-week free trial for new members."
description="From tiny dancers aged 4 to adults looking for a fun workout, we offer classes for everyone. Our expert-led sessions focus on technique, fitness, and most importantly — having fun."
tag="Class Schedule"
tagAnimation="slide-up"
products={[
@@ -234,7 +233,7 @@ export default function HomePage() {
{ label: "Privacy Policy", href: "#" },
{ label: "Refund Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "FAQ", href: "/faq" },
{ label: "FAQ", href: "#faq" },
],
},
]}
@@ -244,4 +243,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}