From 8b75654bed464d9bbd49d7efa3f299f1db734d4e Mon Sep 17 00:00:00 2001 From: mulika-local Date: Wed, 24 Dec 2025 15:20:43 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7ed629c..ba760d3 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1276,4 +1276,4 @@ export default function RootLayout({ ); -} \ No newline at end of file +} From 7c4b71906f1ff8e207c30f3aa660330cc5eb8655 Mon Sep 17 00:00:00 2001 From: mulika-local Date: Wed, 24 Dec 2025 15:20:44 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 8c3207b..244e4f8 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -6,7 +6,7 @@ import MetricCardOne from "@/components/sections/metrics/MetricCardOne"; import TextSplitAbout from "@/components/sections/about/TextSplitAbout"; import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; import FooterBaseSocial from "@/components/sections/footer/FooterBaseSocial"; -import { TrendingUp, Users, Zap, Youtube, Twitter, Linkedin } from "lucide-react"; +import { TrendingUp, Users, Zap, Youtube, Twitter, Linkedin, Star } from "lucide-react"; export default function StarWarsPage() { return ( @@ -44,9 +44,9 @@ export default function StarWarsPage() { title="Our Galactic Impact" description="Experience the epic saga spanning decades of storytelling" metrics={[ - { id: "1", value: "40", title: "Years", description: "Of Star Wars storytelling", icon: TrendingUp }, - { id: "2", value: "11", title: "Films", description: "Complete Skywalker saga", icon: Zap }, - { id: "3", value: "100M", title: "Fans", description: "Worldwide united by Force", icon: Users } + { id: "1", value: "40", title: "Years", description: "Of Star Wars storytelling", icon: TrendingUp, rating: 4.8, ratingCount: 128 }, + { id: "2", value: "11", title: "Films", description: "Complete Skywalker saga", icon: Zap, rating: 4.9, ratingCount: 256 }, + { id: "3", value: "100M", title: "Fans", description: "Worldwide united by Force", icon: Users, rating: 4.7, ratingCount: 512 } ]} gridVariant="uniform-all-items-equal" textboxLayout="default" @@ -118,4 +118,4 @@ export default function StarWarsPage() { ); -} \ No newline at end of file +}