5 Commits

Author SHA1 Message Date
34d21061a5 Update src/app/page.tsx 2026-03-04 12:37:58 +00:00
3553690ede Update src/app/layout.tsx 2026-03-04 12:37:57 +00:00
ab823c0991 Merge version_2 into main
Merge version_2 into main
2026-03-04 12:13:32 +00:00
11d04d3da1 Update src/app/page.tsx 2026-03-04 12:13:27 +00:00
8d986dc148 Merge version_1 into main
Merge version_1 into main
2026-03-04 12:08:35 +00:00
2 changed files with 14 additions and 10 deletions

View File

@@ -1420,4 +1420,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -30,11 +30,15 @@ export default function LandingPage() {
<NavbarStyleApple
brandName="Wing Chun"
navItems={[
{ name: "About", id: "about" },
{ name: "Training", id: "training" },
{ name: "Classes", id: "classes" },
{ name: "Instructors", id: "team" },
{ name: "Contact", id: "contact" }
{ name: "Home", id: "/" },
{ name: "Training program", id: "training" },
{ name: "Federation", id: "federation" },
{ name: "Branches", id: "branches" },
{ name: "Kung Fu Styles", id: "styles" },
{ name: "Blog", id: "blog" },
{ name: "Shop", id: "shop" },
{ name: "Photos", id: "photos" },
{ name: "Videos", id: "videos" }
]}
/>
</div>
@@ -109,13 +113,13 @@ export default function LandingPage() {
animationType="slide-up"
products={[
{
id: "1", name: "Beginner Fundamentals", price: "Starting Journey", imageSrc: "http://img.b2bpic.net/free-photo/full-shot-kids-training-gym_23-2150930333.jpg", imageAlt: "Beginner Wing Chun class"
id: "1", name: "Beginner Fundamentals", price: "Enroll Now", imageSrc: "http://img.b2bpic.net/free-photo/full-shot-kids-training-gym_23-2150930333.jpg", imageAlt: "Beginner Wing Chun class"
},
{
id: "2", name: "Intermediate Techniques", price: "Building Skills", imageSrc: "http://img.b2bpic.net/free-photo/side-view-men-practicing-tai-chi_23-2149960186.jpg?_wi=3", imageAlt: "Intermediate training session"
id: "2", name: "Intermediate Techniques", price: "Join Today", imageSrc: "http://img.b2bpic.net/free-photo/side-view-men-practicing-tai-chi_23-2149960186.jpg?_wi=3", imageAlt: "Intermediate training session"
},
{
id: "3", name: "Advanced Chi Sau", price: "Mastery Level", imageSrc: "http://img.b2bpic.net/free-photo/male-martial-arts-instructor-training-with-female-trainee-practice-hall-with-copy-space_23-2148845929.jpg", imageAlt: "Advanced chi sau practice"
id: "3", name: "Advanced Chi Sau", price: "Enroll Now", imageSrc: "http://img.b2bpic.net/free-photo/male-martial-arts-instructor-training-with-female-trainee-practice-hall-with-copy-space_23-2148845929.jpg", imageAlt: "Advanced chi sau practice"
}
]}
/>
@@ -197,4 +201,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}