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 +} 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 +}