diff --git a/src/app/page.tsx b/src/app/page.tsx index 24e0ef3..183a86c 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -7,6 +7,7 @@ import ProductCardOne from '@/components/sections/product/ProductCardOne'; import MetricCardOne from '@/components/sections/metrics/MetricCardOne'; import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo'; import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; +import { Users, ShoppingCart, Crown, HeartHandshake } from 'lucide-react'; const HomePage = () => { const navItems = [ @@ -66,6 +67,7 @@ const HomePage = () => { gridVariant={"three-columns-all-equal-width"} animationType={"scale-rotate"} useInvertedBackground={false} + textboxLayout={"default"} products={[{id:"rank-titan",name:"Titan",price:"₹80",imageSrc:"http://img.b2bpic.net/free-photo/8-bits-characters-gaming-assets_23-2151143638.jpg?_wi=1",imageAlt:"minecraft titan rank icon"},{id:"rank-lord",name:"Lord",price:"₹199",imageSrc:"http://img.b2bpic.net/free-photo/3d-rendering-elegant-cross_23-2150913410.jpg?_wi=1",imageAlt:"minecraft lord rank icon"},{id:"rank-void",name:"Void",price:"₹299",imageSrc:"http://img.b2bpic.net/free-vector/military-game-insignia-rank-badge-cartoon-vector_107791-19729.jpg?_wi=1",imageAlt:"minecraft void rank icon"},{id:"rank-knight",name:"Knight",price:"₹399",imageSrc:"http://img.b2bpic.net/free-vector/realistic-green-shield-background_23-2147610622.jpg?_wi=1",imageAlt:"minecraft knight rank icon"},{id:"rank-demon",name:"Demon",price:"₹499",imageSrc:"http://img.b2bpic.net/free-photo/view-rhinoceros-animal-with-futuristic-robotic-parts_23-2151742086.jpg?_wi=1",imageAlt:"minecraft demon rank icon"}]} /> @@ -76,6 +78,7 @@ const HomePage = () => { gridVariant={"four-items-2x2-equal-grid"} animationType={"scale-rotate"} useInvertedBackground={false} + textboxLayout={"default"} products={[{id:"key-steal",name:"Steal Key",price:"₹10",imageSrc:"http://img.b2bpic.net/free-photo/3d-rendering-valentines-day-gift_23-2151254285.jpg?_wi=1",imageAlt:"minecraft steal key crate icon"},{id:"key-koth",name:"Koth Key",price:"₹20",imageSrc:"http://img.b2bpic.net/free-photo/medieval-crown-royalty-still-life_23-2150385426.jpg?_wi=1",imageAlt:"minecraft koth key crate icon"},{id:"key-master",name:"Master Key",price:"₹30",imageSrc:"http://img.b2bpic.net/free-photo/flat-lay-still-life-printer-toners-assortment_23-2149120690.jpg?_wi=1",imageAlt:"minecraft master key crate icon"},{id:"key-empire",name:"Empire Key",price:"₹40",imageSrc:"http://img.b2bpic.net/free-vector/gold-chest-ui-game-vector-icon-element-set-casino-cartoon-interface-pack-with-lock-open-money-box-heart-star-coin-gear-settings-2d-fantasy-online-computer-app-isolated-loot-object_107791-22883.jpg?_wi=1",imageAlt:"minecraft empire key crate icon"}]} /> @@ -86,7 +89,8 @@ const HomePage = () => { gridVariant={"uniform-all-items-equal"} animationType={"depth-3d"} useInvertedBackground={false} - metrics={[{id:"online-players",value:"268+",title:"Online Players",description:"Players currently active on the network.",icon:"Users"},{id:"recent-purchases",value:"500+",title:"Recent Purchases",description:"Transactions completed in the last 24 hours.",icon:"ShoppingCart"},{id:"top-donators",value:"100+",title:"Top Donators",description:"Elite supporters making a difference.",icon:"Crown"},{id:"total-members",value:"10K+",title:"Total Community Members",description:"Our growing family on Discord and in-game.",icon:"HeartHandshake"}]} + textboxLayout={"default"} + metrics={[{id:"online-players",value:"268+",title:"Online Players",description:"Players currently active on the network.",icon:Users},{id:"recent-purchases",value:"500+",title:"Recent Purchases",description:"Transactions completed in the last 24 hours.",icon:ShoppingCart},{id:"top-donators",value:"100+",title:"Top Donators",description:"Elite supporters making a difference.",icon:Crown},{id:"total-members",value:"10K+",title:"Total Community Members",description:"Our growing family on Discord and in-game.",icon:HeartHandshake}]} />
@@ -95,6 +99,7 @@ const HomePage = () => { description={"See what our dedicated community members have to say about Kachhua MC."} animationType={"blur-reveal"} useInvertedBackground={false} + textboxLayout={"default"} testimonials={[{id:"1",name:"Aryan",role:"Lifesteal Enthusiast",testimonial:"Kachhua MC is by far the best Lifesteal server out there! The community is great, and the PvP is intense. Highly recommend the Demon Rank!",imageSrc:"http://img.b2bpic.net/free-photo/comic-book-everyday-lifestyle-scene_23-2151133832.jpg",imageAlt:"minecraft gamer avatar portrait"},{id:"2",name:"Maya",role:"Dedicated Builder",testimonial:"I love the unique features and the stability of Kachhua MC. It's a fantastic server for both competitive play and chilling with friends. Keep up the great work!",imageSrc:"http://img.b2bpic.net/free-photo/young-boy-playing-computer_23-2148860556.jpg",imageAlt:"minecraft player avatar focused"},{id:"3",name:"Rohan",role:"PvP Champion",testimonial:"The staff team is super responsive, and the anti-cheat is top-notch. Every battle feels fair and thrilling. This is my go-to server for Lifesteal PvP.",imageSrc:"http://img.b2bpic.net/free-photo/front-view-young-female-playing-vr-dark-wall_179666-39753.jpg",imageAlt:"minecraft pvp avatar sword"},{id:"4",name:"Priya",role:"Community Moderator",testimonial:"Being part of the Kachhua MC community is amazing. Everyone is welcoming, and the events are always fun. The server provides a truly premium Minecraft experience.",imageSrc:"http://img.b2bpic.net/free-photo/side-view-smiley-woman-playing-videogame_23-2149349992.jpg",imageAlt:"minecraft community avatar friendly"},{id:"5",name:"Sid",role:"Veteran Player",testimonial:"I've played on many Lifesteal servers, but Kachhua MC stands out with its innovation and dedication. The custom keys and ranks offer incredible value. A must-join!",imageSrc:"http://img.b2bpic.net/free-photo/activities-hipster-inspire-inspiration-icon_53876-21304.jpg",imageAlt:"minecraft veteran avatar wise"}]} />
diff --git a/src/app/store/page.tsx b/src/app/store/page.tsx index 7833fda..1c716b5 100644 --- a/src/app/store/page.tsx +++ b/src/app/store/page.tsx @@ -3,7 +3,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import FooterBase from '@/components/sections/footer/FooterBase'; import ProductCardOne from '@/components/sections/product/ProductCardOne'; -import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; + import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; const StorePage = () => { @@ -53,22 +53,11 @@ const StorePage = () => { gridVariant={"two-columns-alternating-heights"} animationType={"scale-rotate"} useInvertedBackground={false} + textboxLayout={"default"} products={[{id:"rank-demon-store",name:"Demon Rank",price:"₹499",imageSrc:"http://img.b2bpic.net/free-photo/view-rhinoceros-animal-with-futuristic-robotic-parts_23-2151742086.jpg?_wi=2",imageAlt:"minecraft demon rank icon"},{id:"key-master-store",name:"Master Key",price:"₹30",imageSrc:"http://img.b2bpic.net/free-photo/flat-lay-still-life-printer-toners-assortment_23-2149120690.jpg?_wi=2",imageAlt:"minecraft master key crate icon"},{id:"rank-titan-store",name:"Titan Rank",price:"₹80",imageSrc:"http://img.b2bpic.net/free-photo/8-bits-characters-gaming-assets_23-2151143638.jpg?_wi=2",imageAlt:"minecraft titan rank icon"},{id:"key-empire-store",name:"Empire Key",price:"₹40",imageSrc:"http://img.b2bpic.net/free-vector/gold-chest-ui-game-vector-icon-element-set-casino-cartoon-interface-pack-with-lock-open-money-box-heart-star-coin-gear-settings-2d-fantasy-online-computer-app-isolated-loot-object_107791-22883.jpg?_wi=2",imageAlt:"minecraft empire key crate icon"},{id:"rank-lord-store",name:"Lord Rank",price:"₹199",imageSrc:"http://img.b2bpic.net/free-photo/3d-rendering-elegant-cross_23-2150913410.jpg?_wi=2",imageAlt:"minecraft lord rank icon"},{id:"key-steal-store",name:"Steal Key",price:"₹10",imageSrc:"http://img.b2bpic.net/free-photo/3d-rendering-valentines-day-gift_23-2151254285.jpg?_wi=2",imageAlt:"minecraft steal key crate icon"},{id:"rank-void-store",name:"Void Rank",price:"₹299",imageSrc:"http://img.b2bpic.net/free-vector/military-game-insignia-rank-badge-cartoon-vector_107791-19729.jpg?_wi=2",imageAlt:"minecraft void rank icon"},{id:"key-koth-store",name:"Koth Key",price:"₹20",imageSrc:"http://img.b2bpic.net/free-photo/medieval-crown-royalty-still-life_23-2150385426.jpg?_wi=2",imageAlt:"minecraft koth key crate icon"},{id:"rank-knight-store",name:"Knight Rank",price:"₹399",imageSrc:"http://img.b2bpic.net/free-vector/realistic-green-shield-background_23-2147610622.jpg?_wi=2",imageAlt:"minecraft knight rank icon"}]} /> -
- -
+