Merge version_3 into main #5

Merged
bender merged 2 commits from version_3 into main 2026-03-06 03:30:16 +00:00
2 changed files with 13 additions and 4 deletions

View File

@@ -5,7 +5,8 @@ import "./globals.css";
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "FuNtus Kids Play Area - Safe Indoor Play Zones in Bengaluru", description: "FuNtus Kids Play Area is Bengaluru's premier indoor playground with safe, engaging play zones for children of all ages. Book your visit today!"};
title: "FuNtus Kids Play Area - Safe Indoor Play Zones in Bengaluru", description: "FuNtus Kids Play Area is Bengaluru's premier indoor playground with safe, engaging play zones for children of all ages. Book your visit today!"
};
export default function RootLayout({
children,
@@ -1384,4 +1385,4 @@ export default function RootLayout({
</body>
</html>
);
}
}

View File

@@ -10,7 +10,7 @@ import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
import ContactText from "@/components/sections/contact/ContactText";
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
import Link from "next/link";
import { ShieldCheck, Video, Heart, Award, TrendingUp, Users } from "lucide-react";
import { ShieldCheck, Video, Heart, Award, TrendingUp, Users, Sparkles, Wind, Zap } from "lucide-react";
export default function HomePage() {
return (
@@ -64,6 +64,14 @@ export default function HomePage() {
buttonAnimation="slide-up"
background={{ variant: "downward-rays-static" }}
ariaLabel="FuNtus Kids Play Area Hero Section"
marqueeItems={[
{ type: "text-icon", text: "Soft Play", icon: Sparkles },
{ type: "text-icon", text: "Trampoline", icon: Zap },
{ type: "text-icon", text: "Slide Zone", icon: Wind },
{ type: "text-icon", text: "Ball Pit", icon: Award },
]}
marqueeSpeed={30}
showMarqueeCard={true}
/>
</div>
@@ -223,4 +231,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}