8 Commits

Author SHA1 Message Date
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
bed63929d5 Update src/app/page.tsx 2026-03-07 19:02:10 +00:00
c83caaf6e0 Update src/app/layout.tsx 2026-03-07 19:02:10 +00:00
a0d08faaa6 Merge version_1 into main
Merge version_1 into main
2026-03-07 19:01:21 +00:00
0cba353285 Merge version_1 into main
Merge version_1 into main
2026-03-07 18:59:52 +00:00
b9c00d8b3d Merge version_1 into main
Merge version_1 into main
2026-03-07 18:56:30 +00:00
6 changed files with 66 additions and 32 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 } from "lucide-react";
import { Sparkles, Heart, Users, Star, Zap, Clock, Music } from "lucide-react";
export default function AboutPage() {
return (
@@ -29,6 +29,7 @@ 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"
@@ -139,7 +140,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,6 +7,7 @@ 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 = [
@@ -14,6 +15,7 @@ export default function ClassesPage() {
{ name: "About", id: "/about" },
{ name: "Classes", id: "/classes" },
{ name: "Contact", id: "/contact" },
{ name: "FAQ", id: "/faq" },
];
const footerColumns = [
@@ -38,7 +40,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" },
],
},
];
@@ -63,6 +65,7 @@ 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,6 +13,7 @@ export default function ContactPage() {
{ name: "About", id: "/about" },
{ name: "Classes", id: "/classes" },
{ name: "Contact", id: "/contact" },
{ name: "FAQ", id: "/faq" },
];
const footerColumns = [
@@ -37,7 +38,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,8 +1,11 @@
import type { Metadata } from "next";
import "./styles/globals.css";
import { Inter } from "next/font/google";
import "./globals.css";
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
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"};
title: "Trupti Dance Academy", description: "Join Trupti Dance Academy in Melissa, Texas for BollyX fitness and Bollywood dance classes."};
export default function RootLayout({
children,
@@ -11,7 +14,7 @@ export default function RootLayout({
}) {
return (
<html lang="en">
<body>{children}
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1381,4 +1384,4 @@ export default function RootLayout({
</body>
</html>
);
}
}

View File

@@ -32,6 +32,7 @@ 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"
@@ -66,13 +67,16 @@ export default function HomePage() {
stats: [
{
title: "Active Students", values: [45, 52, 68],
description: "Enrolled members"},
description: "Enrolled members"
},
{
title: "Classes Weekly", values: [12, 14, 16],
description: "Dance sessions"},
description: "Dance sessions"
},
{
title: "Years Experience", values: [5, 5, 5],
valueSuffix: "+", description: "Certified instruction"},
valueSuffix: "+", description: "Certified instruction"
},
],
chartTitle: "Monthly Enrollment", chartData: [
{ value: 35 },
@@ -84,13 +88,16 @@ export default function HomePage() {
listTitle: "Upcoming Classes", listItems: [
{
icon: Clock,
title: "Kids Dance 5:00 PM", status: "Tue/Thu"},
title: "Kids Dance 5:00 PM", status: "Tue/Thu"
},
{
icon: Users,
title: "Ladies Dance 6:30 PM", status: "Tue/Thu"},
title: "Ladies Dance 6:30 PM", status: "Tue/Thu"
},
{
icon: Zap,
title: "BollyX Fitness 6:30 PM", status: "Wed"},
title: "BollyX Fitness 6:30 PM", status: "Wed"
},
],
}}
/>
@@ -106,23 +113,31 @@ export default function HomePage() {
{
icon: Zap,
title: "Improve Strength & Fitness", description:
"Develop core strength, improve flexibility, and enhance overall physical fitness through dynamic dance movements."},
"Develop core strength, improve flexibility, and enhance overall physical fitness through dynamic dance movements."
},
{
icon: Heart,
title: "Nurturing Growth for Kids", description:
"Dance supports children's mental, physical, and emotional development while boosting creativity and confidence."},
"Dance supports children's mental, physical, and emotional development while boosting creativity and confidence."
},
{
icon: Users,
title: "Supportive Community", description:
"Join a welcoming group of dancers who encourage and inspire each other every step of the way."},
"Join a welcoming group of dancers who encourage and inspire each other every step of the way."
},
{
icon: Star,
title: "Express Yourself", description:
"Build confidence and self-expression through the art of dance in a positive, judgment-free environment."},
"Build confidence and self-expression through the art of dance in a positive, judgment-free environment."
},
]}
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
buttons={[
{ text: "Get Started Today", href: "/classes" }
]}
buttonAnimation="slide-up"
/>
</div>
@@ -135,19 +150,24 @@ export default function HomePage() {
products={[
{
id: "1", brand: "Kids Program", name: "Kids Dance (Ages 4-6)", price: "$60/month", rating: 5,
reviewCount: "45+", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-elegant-girls-doing-yoga_1157-18733.jpg?_wi=1", imageAlt: "Kids dance class"},
reviewCount: "45+", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-elegant-girls-doing-yoga_1157-18733.jpg?_wi=1", imageAlt: "Kids dance class"
},
{
id: "2", brand: "Kids Program", name: "Kids Dance (Ages 7-9)", price: "$60/month", rating: 5,
reviewCount: "38+", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-elegant-girls-doing-yoga_1157-18733.jpg?_wi=2", imageAlt: "Kids intermediate dance"},
reviewCount: "38+", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-elegant-girls-doing-yoga_1157-18733.jpg?_wi=2", imageAlt: "Kids intermediate dance"
},
{
id: "3", brand: "Teen Program", name: "Teen Dance (Ages 10-17)", price: "$60/month", rating: 5,
reviewCount: "52+", imageSrc: "http://img.b2bpic.net/free-photo/full-shot-friends-jumping-together_23-2148629612.jpg?_wi=1", imageAlt: "Teen dance class"},
reviewCount: "52+", imageSrc: "http://img.b2bpic.net/free-photo/full-shot-friends-jumping-together_23-2148629612.jpg?_wi=1", imageAlt: "Teen dance class"
},
{
id: "4", brand: "Adult Program", name: "Ladies Dance Class", price: "$60/month", rating: 5,
reviewCount: "31+", imageSrc: "http://img.b2bpic.net/free-photo/women-giving-five-each-other-after-having-great-workout-gym_1153-8693.jpg?_wi=1", imageAlt: "Ladies dance class"},
reviewCount: "31+", imageSrc: "http://img.b2bpic.net/free-photo/women-giving-five-each-other-after-having-great-workout-gym_1153-8693.jpg?_wi=1", imageAlt: "Ladies dance class"
},
{
id: "5", brand: "Fitness Program", name: "BollyX Fitness", price: "$60/month", rating: 5,
reviewCount: "67+", imageSrc: "http://img.b2bpic.net/free-photo/people-taking-part-dance-therapy-class_23-2149346586.jpg?_wi=1", imageAlt: "BollyX fitness class"},
reviewCount: "67+", imageSrc: "http://img.b2bpic.net/free-photo/people-taking-part-dance-therapy-class_23-2149346586.jpg?_wi=1", imageAlt: "BollyX fitness class"
},
]}
gridVariant="uniform-all-items-equal"
animationType="slide-up"
@@ -166,22 +186,28 @@ export default function HomePage() {
testimonials={[
{
id: "1", name: "Priya Sharma", handle: "@priya_dances", testimonial:
"Trupti's classes have completely transformed my fitness journey. The energy and community support is incredible!", imageSrc: "http://img.b2bpic.net/free-photo/smiling-man-sitting-cafe-table-gesturing_1262-1141.jpg", imageAlt: "Priya Sharma"},
"Trupti's classes have completely transformed my fitness journey. The energy and community support is incredible!", imageSrc: "http://img.b2bpic.net/free-photo/smiling-man-sitting-cafe-table-gesturing_1262-1141.jpg", imageAlt: "Priya Sharma"
},
{
id: "2", name: "Aisha Patel", handle: "@aisha_fit", testimonial:
"As a busy mom, these classes are my escape. Trupti makes me feel strong and confident in just 60 minutes.", imageSrc: "http://img.b2bpic.net/free-photo/happy-intern-starting-her-career_1262-17047.jpg", imageAlt: "Aisha Patel"},
"As a busy mom, these classes are my escape. Trupti makes me feel strong and confident in just 60 minutes.", imageSrc: "http://img.b2bpic.net/free-photo/happy-intern-starting-her-career_1262-17047.jpg", imageAlt: "Aisha Patel"
},
{
id: "3", name: "Maya Desai", handle: "@maya_dance", testimonial:
"My daughter went from shy to shining! Trupti creates such a supportive environment for kids to grow.", imageSrc: "http://img.b2bpic.net/free-photo/middle-age-hispanic-woman-standing-isolated-background-doing-happy-thumbs-up-gesture-with-hand-approving-expression-looking-camera-showing-success_839833-32510.jpg", imageAlt: "Maya Desai"},
"My daughter went from shy to shining! Trupti creates such a supportive environment for kids to grow.", imageSrc: "http://img.b2bpic.net/free-photo/middle-age-hispanic-woman-standing-isolated-background-doing-happy-thumbs-up-gesture-with-hand-approving-expression-looking-camera-showing-success_839833-32510.jpg", imageAlt: "Maya Desai"
},
{
id: "4", name: "Deepa Singh", handle: "@deepa_wellness", testimonial:
"The BollyX classes are so fun and effective. I've never felt this fit and happy with my body!", imageSrc: "http://img.b2bpic.net/free-photo/successful-young-man-stylish-hat-relaxing-alone-cozy-cafeteria-lunch-break-looking-with-happy-expression_273609-1935.jpg", imageAlt: "Deepa Singh"},
"The BollyX classes are so fun and effective. I've never felt this fit and happy with my body!", imageSrc: "http://img.b2bpic.net/free-photo/successful-young-man-stylish-hat-relaxing-alone-cozy-cafeteria-lunch-break-looking-with-happy-expression_273609-1935.jpg", imageAlt: "Deepa Singh"
},
{
id: "5", name: "Neha Verma", handle: "@neha_moves", testimonial:
"Best investment in my health. Trupti's passion for dance and fitness is contagious. Highly recommend!", imageSrc: "http://img.b2bpic.net/free-photo/smiling-business-woman-looking-up-copy-space_1262-3088.jpg", imageAlt: "Neha Verma"},
"Best investment in my health. Trupti's passion for dance and fitness is contagious. Highly recommend!", imageSrc: "http://img.b2bpic.net/free-photo/smiling-business-woman-looking-up-copy-space_1262-3088.jpg", imageAlt: "Neha Verma"
},
{
id: "6", name: "Sanjana Kumar", handle: "@sanjana_active", testimonial:
"Found my tribe here! The accountability and friendships make coming to class a highlight of my week.", imageSrc: "http://img.b2bpic.net/free-photo/happy-young-caucasian-female-wearing-blue-long-sleeved-shirt-making-thumb-up-sign_176420-15015.jpg", imageAlt: "Sanjana Kumar"},
"Found my tribe here! The accountability and friendships make coming to class a highlight of my week.", imageSrc: "http://img.b2bpic.net/free-photo/happy-young-caucasian-female-wearing-blue-long-sleeved-shirt-making-thumb-up-sign_176420-15015.jpg", imageAlt: "Sanjana Kumar"
},
]}
animationType="slide-up"
textboxLayout="default"
@@ -233,7 +259,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" },
],
},
]}
@@ -243,4 +269,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -184,4 +184,4 @@ export default function RecitalPage() {
</div>
</ThemeProvider>
);
}
}