import { useUnifiedWallet } from './hooks/useUnifiedWallet' import { Link } from 'react-router-dom' /** * Home Page * Landing page showcasing the RWA tokenization platform * Displays features, how it works, and CTAs to connect wallet and create assets */ export default function Home() { const { activeAddress } = useUnifiedWallet() return (
{/* Hero Section */}
RWA Tokenization Platform

Tokenize Real-World Assets on Algorand

Create Algorand Standard Assets (ASA) with built-in compliance features. Perfect for founders prototyping RWA solutions.

Start Tokenizing Learn about ASAs
{!activeAddress && (

Connect your wallet using the button in the top-right to get started.

)}
{/* Features Section */}

How It Works

{/* Step 1 */}
1

Connect Wallet

Use Pera, Defly, Exodus, or KMD on localnet. One click to connect.

{/* Step 2 */}
2

Create ASA

Define asset properties: name, symbol, supply, and optional metadata URL.

{/* Step 3 */}
3

Track Assets

View your created assets in a local history table (stored in your browser).

{/* Features Highlight */}

Compliance-Ready Features

  • Manager Role: Update asset settings
  • Freeze Account: Restrict transfers
  • Clawback Authority: Recover tokens if needed
  • Metadata Support: Link off-chain documentation

Asset Configuration Example

Name:{' '} Real Estate Token
Symbol:{' '} PROPERTY
Total Supply:{' '} 1,000,000
Decimals:{' '} 2
Manager:{' '} Your Wallet
{/* CTA Section */}

Ready to get started?

Launch your first RWA token in minutes. No complicated setup, no hidden fees.

Create Your First Asset
) }