From 46803351e5406a75023a3038b9660284099271b3 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 13 Apr 2026 14:11:31 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 169 ++++++++++++----------------------------------- 1 file changed, 42 insertions(+), 127 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index b121f46..99f0fd5 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -29,17 +29,11 @@ export default function LandingPage() { @@ -48,41 +42,22 @@ export default function LandingPage() {
@@ -96,41 +71,17 @@ export default function LandingPage() { useInvertedBackground={false} products={[ { - id: "c1", - name: "Cyber Samurai", - price: "New Release", - imageSrc: "http://img.b2bpic.net/free-photo/cyberpunk-character-neon-cityscape_23-2152007990.jpg", - }, + id: "c1", name: "Cyber Samurai", price: "New Release", imageSrc: "http://img.b2bpic.net/free-photo/cyberpunk-character-neon-cityscape_23-2152007990.jpg"}, { - id: "c2", - name: "Neon Mage", - price: "Most Watched", - imageSrc: "http://img.b2bpic.net/free-photo/portrait-woman-with-ai-enhanced-body_23-2151871877.jpg", - }, + id: "c2", name: "Neon Mage", price: "Most Watched", imageSrc: "http://img.b2bpic.net/free-photo/portrait-woman-with-ai-enhanced-body_23-2151871877.jpg"}, { - id: "c3", - name: "Tech Rogue", - price: "Fan Favorite", - imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-ninja-wearing-equipment_23-2150961084.jpg", - }, + id: "c3", name: "Tech Rogue", price: "Fan Favorite", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-ninja-wearing-equipment_23-2150961084.jpg"}, { - id: "c4", - name: "Street Ninja", - price: "Rising Star", - imageSrc: "http://img.b2bpic.net/free-photo/lifestyle-scene-with-people-doing-regular-tasks-anime-style_23-2151002531.jpg", - }, + id: "c4", name: "Street Ninja", price: "Rising Star", imageSrc: "http://img.b2bpic.net/free-photo/lifestyle-scene-with-people-doing-regular-tasks-anime-style_23-2151002531.jpg"}, { - id: "c5", - name: "Arcade Legend", - price: "Classic", - imageSrc: "http://img.b2bpic.net/free-photo/cartoon-superhero-illustration_23-2151732537.jpg", - }, + id: "c5", name: "Arcade Legend", price: "Classic", imageSrc: "http://img.b2bpic.net/free-photo/cartoon-superhero-illustration_23-2151732537.jpg"}, { - id: "c6", - name: "Dark Soul", - price: "Limited", - imageSrc: "http://img.b2bpic.net/free-photo/dark-style-ninja-naruto_23-2151278587.jpg", - }, + id: "c6", name: "Dark Soul", price: "Limited", imageSrc: "http://img.b2bpic.net/free-photo/dark-style-ninja-naruto_23-2151278587.jpg"}, ]} title="Popular Characters" description="Trending heroes you need to know about." @@ -139,49 +90,25 @@ export default function LandingPage() {
@@ -204,16 +137,10 @@ export default function LandingPage() { description="Sign up to receive the latest updates, character releases, and exclusive community events." inputs={[ { - name: "name", - type: "text", - placeholder: "Your Name", - required: true, + name: "name", type: "text", placeholder: "Your Name", required: true, }, { - name: "email", - type: "email", - placeholder: "Email Address", - required: true, + name: "email", type: "email", placeholder: "Email Address", required: true, }, ]} buttonText="Subscribe" @@ -227,33 +154,21 @@ export default function LandingPage() { logoText="AnimeHub" columns={[ { - title: "Navigation", - items: [ + title: "Navigation", items: [ { - label: "Trending", - href: "#hero", - }, + label: "Trending", href: "#hero"}, { - label: "Reviews", - href: "#reviews", - }, + label: "Reviews", href: "#reviews"}, { - label: "Community", - href: "#community", - }, + label: "Community", href: "#community"}, ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { - label: "Privacy Policy", - href: "#", - }, + label: "Privacy Policy", href: "#"}, { - label: "Terms of Service", - href: "#", - }, + label: "Terms of Service", href: "#"}, ], }, ]} -- 2.49.1