5 Commits

Author SHA1 Message Date
5d0f0edea1 Update src/app/page.tsx 2026-04-18 07:39:18 +00:00
814e14b595 Merge version_2 into main
Merge version_2 into main
2026-04-18 07:36:24 +00:00
e454a08098 Update src/app/page.tsx 2026-04-18 07:36:22 +00:00
f1cddecb4b Merge version_1 into main
Merge version_1 into main
2026-04-18 07:31:30 +00:00
e31ebcc919 Merge version_1 into main
Merge version_1 into main
2026-04-18 07:31:03 +00:00

View File

@@ -11,7 +11,7 @@ import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen'; import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
import TextAbout from '@/components/sections/about/TextAbout'; import TextAbout from '@/components/sections/about/TextAbout';
import { ShieldCheck, Users, Link as LinkIcon } from "lucide-react"; import { ShieldCheck, Users, Link as LinkIcon, Wallet } from "lucide-react";
export default function LandingPage() { export default function LandingPage() {
return ( return (
@@ -33,6 +33,7 @@ export default function LandingPage() {
brandName="OmniWallet" brandName="OmniWallet"
navItems={[ navItems={[
{ name: "Home", id: "hero" }, { name: "Home", id: "hero" },
{ name: "Wallet", id: "wallet" },
{ name: "About", id: "about" }, { name: "About", id: "about" },
{ name: "Features", id: "features" }, { name: "Features", id: "features" },
{ name: "Contact", id: "contact" } { name: "Contact", id: "contact" }
@@ -45,13 +46,31 @@ export default function LandingPage() {
logoText="OmniWallet" logoText="OmniWallet"
description="The secure, fast, and unified wallet for all your blockchain assets. Use your unique username to send funds instantly." description="The secure, fast, and unified wallet for all your blockchain assets. Use your unique username to send funds instantly."
buttons={[ buttons={[
{ text: "Get Started", href: "#contact" }, { text: "Get Started", onClick: () => window.alert("Wallet created! Your main interface is ready.") },
{ text: "Learn More", href: "#features" } { text: "Learn More", href: "#features" }
]} ]}
imageSrc="http://img.b2bpic.net/free-photo/blockchain-technology-cartoon-illustration_23-2151572166.jpg?_wi=1" imageSrc="http://img.b2bpic.net/free-photo/blockchain-technology-cartoon-illustration_23-2151572166.jpg?_wi=1"
/> />
</div> </div>
<div id="wallet" data-section="wallet">
<MetricCardOne
animationType="slide-up"
textboxLayout="split"
gridVariant="uniform-all-items-equal"
useInvertedBackground={true}
title="Your Digital Wallet"
description="Manage your balances, send funds to usernames, and receive assets securely in your personal vault."
tag="Secure Dashboard"
tagIcon={Wallet}
metrics={[
{ id: "bal", value: "$0.00", title: "Current Balance", description: "Total assets held", icon: Wallet },
{ id: "in", value: "Receive", title: "Receive Funds", description: "Share your unique ID", icon: LinkIcon },
{ id: "out", value: "Send", title: "Send Funds", description: "Pay via username", icon: Users }
]}
/>
</div>
<div id="about" data-section="about"> <div id="about" data-section="about">
<TextAbout <TextAbout
useInvertedBackground={false} useInvertedBackground={false}