diff --git a/src/app/page.tsx b/src/app/page.tsx index 8315f9a..16eac43 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,6 +2,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; +import { Star, Shield, Award, Briefcase } from "lucide-react"; import ContactSplit from '@/components/sections/contact/ContactSplit'; import FaqSplitText from '@/components/sections/faq/FaqSplitText'; import FeatureCardTwentyEight from '@/components/sections/feature/FeatureCardTwentyEight'; @@ -128,11 +129,11 @@ export default function LandingPage() { useInvertedBackground={false} metrics={[ { - id: "m1", title: "Game Releases", value: "15+"}, + id: "m1", title: "Game Releases", value: "15+", icon: Award}, { - id: "m2", title: "Happy Players", value: "5M+"}, + id: "m2", title: "Happy Players", value: "5M+", icon: Star}, { - id: "m3", title: "Industry Awards", value: "12"}, + id: "m3", title: "Industry Awards", value: "12", icon: Shield}, ]} title="Studio Achievements" description="Our impact on the gaming landscape since 2018." @@ -177,7 +178,6 @@ export default function LandingPage() {