diff --git a/app/product/page.tsx b/app/product/page.tsx
new file mode 100644
index 0000000..5210669
--- /dev/null
+++ b/app/product/page.tsx
@@ -0,0 +1,159 @@
+"use client";
+
+import { useApp } from "@/contexts/AppContext";
+import Sidebar from "@/components/Sidebar";
+import TopBar from "@/components/TopBar";
+import StatsCards from "@/components/StatsCards";
+import ProductCard from "@/components/ProductCard";
+import Image from "next/image";
+import { Button } from "@heroui/react";
+
+export default function ProductPage() {
+ const { t } = useApp();
+
+ const statsData = [
+ {
+ label: "Total Value Locked",
+ value: "$465.0M",
+ change: "+2.4%",
+ isPositive: true,
+ },
+ {
+ label: "Cumulative Yield",
+ value: "$505,232",
+ change: "+2.4%",
+ isPositive: true,
+ },
+ {
+ label: "Your Total Balance",
+ value: "$10,000",
+ change: "+2.4%",
+ isPositive: true,
+ },
+ {
+ label: "Your Total Earning",
+ value: "--",
+ change: "+2.4%",
+ isPositive: true,
+ },
+ ];
+
+ const products = [
+ {
+ id: 1,
+ name: "High-Yield US Equity",
+ category: "Quant Strategy",
+ icon: "/product-us-equity.svg",
+ yieldAPY: "22.0%",
+ poolCap: "10M",
+ maturity: "05 Feb 2026",
+ risk: "Medium",
+ riskLevel: 2,
+ lockUp: "12 Months",
+ circulatingSupply: "$2.5M",
+ poolCapacityPercent: 75,
+ },
+ {
+ id: 2,
+ name: "HK Commercial RE",
+ category: "Real Estate",
+ icon: "/product-hk-re.svg",
+ yieldAPY: "22.0%",
+ poolCap: "10M",
+ maturity: "05 Feb 2026",
+ risk: "LOW",
+ riskLevel: 1,
+ lockUp: "12 Months",
+ circulatingSupply: "$2.5M",
+ poolCapacityPercent: 75,
+ },
+ {
+ id: 3,
+ name: "High-Yield US Equity",
+ category: "Quant Strategy",
+ icon: "/product-us-equity-2.svg",
+ yieldAPY: "22.0%",
+ poolCap: "10M",
+ maturity: "05 Feb 2026",
+ risk: "High",
+ riskLevel: 3,
+ lockUp: "12 Months",
+ circulatingSupply: "$2.5M",
+ poolCapacityPercent: 75,
+ },
+ ];
+
+ return (
+
+
+
+
+
+
+
+
+ {/* Page Title */}
+
+
+ AssetX Fund Market
+
+
+
+ {/* Stats Cards */}
+
+
+
+
+ {/* Assets Section */}
+
+ {/* Section Header */}
+
+
+ Assets
+
+
+
+
+
+
+
+ {/* Product Cards Grid */}
+
+ {products.map((product) => (
+
console.log("Invest in", product.name)}
+ />
+ ))}
+
+
+
+
+
+ );
+}
diff --git a/components/ProductCard.tsx b/components/ProductCard.tsx
new file mode 100644
index 0000000..ff71e62
--- /dev/null
+++ b/components/ProductCard.tsx
@@ -0,0 +1,185 @@
+"use client";
+
+import Image from "next/image";
+import { Button } from "@heroui/react";
+
+interface ProductCardProps {
+ name: string;
+ category: string;
+ icon?: string;
+ yieldAPY: string;
+ poolCap: string;
+ maturity: string;
+ risk: string;
+ riskLevel: 1 | 2 | 3;
+ lockUp: string;
+ circulatingSupply: string;
+ poolCapacityPercent: number;
+ onInvest?: () => void;
+}
+
+export default function ProductCard({
+ name,
+ category,
+ icon,
+ yieldAPY,
+ poolCap,
+ maturity,
+ risk,
+ riskLevel,
+ lockUp,
+ circulatingSupply,
+ poolCapacityPercent,
+ onInvest,
+}: ProductCardProps) {
+ const getRiskColor = (level: number) => {
+ switch (level) {
+ case 1:
+ return "bg-green-500";
+ case 2:
+ return "bg-yellow-500";
+ case 3:
+ return "bg-red-500";
+ default:
+ return "bg-gray-300";
+ }
+ };
+
+ const getCategoryColor = (cat: string) => {
+ if (cat.includes("Quant")) {
+ return "bg-blue-50 dark:bg-blue-900/20 border-blue-200 dark:border-blue-800 text-blue-700 dark:text-blue-300";
+ } else if (cat.includes("Real Estate")) {
+ return "bg-green-50 dark:bg-green-900/20 border-green-200 dark:border-green-800 text-green-700 dark:text-green-300";
+ }
+ return "bg-bg-subtle dark:bg-gray-700 border-border-normal dark:border-gray-600 text-text-tertiary dark:text-gray-400";
+ };
+
+ return (
+
+ {/* Product Header */}
+
+
+ {icon ? (
+
+ ) : (
+ 🏛️
+ )}
+
+
+
+ {name}
+
+
+ {category}
+
+
+
+
+ {/* Product Metrics - Two Columns */}
+
+ {/* Column 1 */}
+
+
+
+ Yield APY
+
+
+ {yieldAPY}
+
+
+
+
+ Maturity
+
+
+ {maturity}
+
+
+
+
+ Lock-Up
+
+
+ {lockUp}
+
+
+
+
+ {/* Column 2 */}
+
+
+
+ Pool CaP
+
+
+ {poolCap}
+
+
+
+
+ Risk
+
+
+
+ {risk}
+
+
+ {[1, 2, 3].map((level) => (
+
+ ))}
+
+
+
+
+
+ Circulating supply
+
+
+ {circulatingSupply}
+
+
+
+
+
+ {/* Divider */}
+
+
+ {/* Pool Capacity & Invest Button */}
+
+
+
+
+ Pool Capacity
+
+
+ {poolCapacityPercent}% Filled
+
+
+
+
+
+
+
+ );
+}
diff --git a/locales/en.json b/locales/en.json
index e35cf4f..7e99940 100644
--- a/locales/en.json
+++ b/locales/en.json
@@ -1,133 +1,155 @@
-{
- "nav": {
- "assets": "Assets",
- "alp": "ALP",
- "swap": "Swap",
- "lending": "Lending",
- "transparency": "Transparency",
- "ecosystem": "Ecosystem",
- "points": "Points",
- "globalTVL": "Global TVL",
- "faqs": "FAQs"
- },
- "tabs": {
- "overview": "Overview",
- "assetDescription": "Asset Description",
- "analytics": "Analytics",
- "performanceAnalysis": "Performance Analysis",
- "assetCustody": "Asset Custody & Verification"
- },
- "product": {
- "gyUsEquityIndexToken": "High-Yield US Equity Quantitative Strategy",
- "contractAddress": "Contract"
- },
- "stats": {
- "currentAPY": "Current APY",
- "totalValueLocked": "Total Value Locked",
- "yourBalance": "Your Balance",
- "yourEarnings": "Your Earnings",
- "availableToWithdraw": "Available to Withdraw"
- },
- "assetOverview": {
- "title": "Asset Overview",
- "mediumRisk": "Medium Risk",
- "underlyingAssets": "Underlying Assets",
- "usEquityIndex": "US Equity Index",
- "maturityRange": "Maturity Range",
- "cap": "Cap",
- "minInvestment": "Min. Investment",
- "poolCapacity": "Pool Capacity",
- "currentPrice": "Current Price"
- },
- "apy": {
- "apyHistory": "APY History",
- "priceHistory": "Price History",
- "lastDays": "Last 30 days",
- "highest": "Highest",
- "lowest": "Lowest"
- },
- "description": {
- "title": "Asset Description",
- "content": "高盈美股量化策略 (High-Yield US Equity Quantitative Strategy) is an institutional-grade Real World Asset (RWA) offering investors exposure to a diversified portfolio of US equities. This strategy utilizes advanced quantitative models to generate high yields through market-neutral arbitrage and other sophisticated trading techniques. Designed for stability and consistent returns, it provides an on-chain gateway to traditional financial markets with enhanced transparency and instant settlement.\n\nThe strategy aims to minimize market risk while maximizing yield generation, making it suitable for investors seeking stable growth within the decentralized finance ecosystem. Underlying assets are held by institutional custodians and verified through robust compliance frameworks."
- },
- "mintSwap": {
- "mint": "Mint",
- "swap": "Swap",
- "deposit": "Deposit",
- "withdraw": "Withdraw",
- "balance": "Bal",
- "max": "MAX",
- "estimatedReturns": "Estimated Returns",
- "estAPY": "Est. APY",
- "estReturns": "Est. Returns",
- "transactionSummary": "Transaction Summary",
- "youGet": "You Get",
- "salesPrice": "Sales Price",
- "fee": "Fee",
- "gas": "Gas",
- "approveDeposit": "Approve & Deposit USDC",
- "termsText": "By depositing, you agree to the",
- "termsOfService": "Terms of Service",
- "and": "and",
- "privacyPolicy": "Privacy Policy"
- },
- "protocol": {
- "title": "Protocol Information",
- "whitepaper": "Whitepaper",
- "documentation": "Documentation",
- "github": "GitHub"
- },
- "rewards": {
- "season1": "Season 1 Rewards",
- "live": "Live",
- "earnPoints": "Earn 1 point per USDC per day holding GY-US",
- "yourPoints": "Your Points",
- "badgeBoost": "Badge Boost",
- "referrals": "Referrals"
- },
- "performance": {
- "title": "Performance Analysis",
- "description": "Historical daily net returns for the High-Yield US Equity Strategy.",
- "ytd": "2025 YTD",
- "dailyNetReturns": "Daily Net Returns (%)",
- "weekdays": {
- "sun": "SUN",
- "mon": "MON",
- "tue": "TUE",
- "wed": "WED",
- "thu": "THU",
- "fri": "FRI",
- "sat": "SAT"
- }
- },
- "custody": {
- "title": "Asset Custody & Verification",
- "description": "Real-time view of underlying asset holdings and institutional custodian verification status.",
- "underlyingHoldings": "Underlying Asset Holdings",
- "verifiedBy": "Verified by third-party institutional custodians",
- "lastUpdated": "Last updated",
- "minutesAgo": "minutes ago",
- "custodian": "Custodian",
- "assetType": "Asset Type",
- "maturity": "Maturity",
- "valueUSD": "Value (USD)",
- "status": "Status",
- "verified": "Verified",
- "totalValue": "Total underlying asset value",
- "smartContract": "Smart Contract",
- "smartContractDesc": "Audited by OpenZeppelin & Certik for security and reliability.",
- "compliance": "Compliance",
- "complianceDesc": "SEC-regulated structure & bankruptcy remote legal framework.",
- "proofOfReserves": "Proof of Reserves",
- "proofDesc": "Real-time on-chain verification via Chainlink Oracle.",
- "viewReports": "View Reports",
- "independentVerifications": "Independent Verifications",
- "independentDesc": "Every month, assetX undergoes third-party auditing to ensure complete transparency.",
- "attestationReport": "Attestation Report",
- "viewAllArchive": "View All Archive",
- "morganStanley": "Morgan Stanley",
- "primeBroker": "Prime Broker",
- "usEquityPortfolio": "US Equity Portfolio",
- "days": "days"
- }
-}
+{
+ "nav": {
+ "assets": "Assets",
+ "alp": "ALP",
+ "swap": "Swap",
+ "lending": "Lending",
+ "transparency": "Transparency",
+ "ecosystem": "Ecosystem",
+ "points": "Points",
+ "globalTVL": "Global TVL",
+ "faqs": "FAQs"
+ },
+ "tabs": {
+ "overview": "Overview",
+ "assetDescription": "Asset Description",
+ "analytics": "Analytics",
+ "performanceAnalysis": "Performance Analysis",
+ "assetCustody": "Asset Custody & Verification"
+ },
+ "product": {
+ "gyUsEquityIndexToken": "High-Yield US Equity Quantitative Strategy",
+ "contractAddress": "Contract"
+ },
+ "stats": {
+ "currentAPY": "Current APY",
+ "totalValueLocked": "Total Value Locked",
+ "yourBalance": "Your Balance",
+ "yourEarnings": "Your Earnings",
+ "availableToWithdraw": "Available to Withdraw"
+ },
+ "assetOverview": {
+ "title": "Asset Overview",
+ "mediumRisk": "Medium Risk",
+ "underlyingAssets": "Underlying Assets",
+ "usEquityIndex": "US Equity Index",
+ "maturityRange": "Maturity Range",
+ "cap": "Cap",
+ "minInvestment": "Min. Investment",
+ "poolCapacity": "Pool Capacity",
+ "currentPrice": "Current Price"
+ },
+ "apy": {
+ "apyHistory": "APY History",
+ "priceHistory": "Price History",
+ "lastDays": "Last 30 days",
+ "highest": "Highest",
+ "lowest": "Lowest"
+ },
+ "description": {
+ "title": "Asset Description",
+ "content": "高盈美股量化策略 (High-Yield US Equity Quantitative Strategy) is an institutional-grade Real World Asset (RWA) offering investors exposure to a diversified portfolio of US equities. This strategy utilizes advanced quantitative models to generate high yields through market-neutral arbitrage and other sophisticated trading techniques. Designed for stability and consistent returns, it provides an on-chain gateway to traditional financial markets with enhanced transparency and instant settlement.\n\nThe strategy aims to minimize market risk while maximizing yield generation, making it suitable for investors seeking stable growth within the decentralized finance ecosystem. Underlying assets are held by institutional custodians and verified through robust compliance frameworks."
+ },
+ "mintSwap": {
+ "mint": "Mint",
+ "swap": "Swap",
+ "deposit": "Deposit",
+ "withdraw": "Withdraw",
+ "balance": "Bal",
+ "max": "MAX",
+ "estimatedReturns": "Estimated Returns",
+ "estAPY": "Est. APY",
+ "estReturns": "Est. Returns",
+ "transactionSummary": "Transaction Summary",
+ "youGet": "You Get",
+ "salesPrice": "Sales Price",
+ "fee": "Fee",
+ "gas": "Gas",
+ "approveDeposit": "Approve & Deposit USDC",
+ "termsText": "By depositing, you agree to the",
+ "termsOfService": "Terms of Service",
+ "and": "and",
+ "privacyPolicy": "Privacy Policy"
+ },
+ "protocol": {
+ "title": "Protocol Information",
+ "whitepaper": "Whitepaper",
+ "documentation": "Documentation",
+ "github": "GitHub"
+ },
+ "rewards": {
+ "season1": "Season 1 Rewards",
+ "live": "Live",
+ "earnPoints": "Earn 1 point per USDC per day holding GY-US",
+ "yourPoints": "Your Points",
+ "badgeBoost": "Badge Boost",
+ "referrals": "Referrals"
+ },
+ "performance": {
+ "title": "Performance Analysis",
+ "description": "Historical daily net returns for the High-Yield US Equity Strategy.",
+ "ytd": "2025 YTD",
+ "dailyNetReturns": "Daily Net Returns (%)",
+ "weekdays": {
+ "sun": "SUN",
+ "mon": "MON",
+ "tue": "TUE",
+ "wed": "WED",
+ "thu": "THU",
+ "fri": "FRI",
+ "sat": "SAT"
+ }
+ },
+ "custody": {
+ "title": "Asset Custody & Verification",
+ "description": "Real-time view of underlying asset holdings and institutional custodian verification status.",
+ "underlyingHoldings": "Underlying Asset Holdings",
+ "verifiedBy": "Verified by third-party institutional custodians",
+ "lastUpdated": "Last updated",
+ "minutesAgo": "minutes ago",
+ "custodian": "Custodian",
+ "assetType": "Asset Type",
+ "maturity": "Maturity",
+ "valueUSD": "Value (USD)",
+ "status": "Status",
+ "verified": "Verified",
+ "totalValue": "Total underlying asset value",
+ "smartContract": "Smart Contract",
+ "smartContractDesc": "Audited by OpenZeppelin & Certik for security and reliability.",
+ "compliance": "Compliance",
+ "complianceDesc": "SEC-regulated structure & bankruptcy remote legal framework.",
+ "proofOfReserves": "Proof of Reserves",
+ "proofDesc": "Real-time on-chain verification via Chainlink Oracle.",
+ "viewReports": "View Reports",
+ "independentVerifications": "Independent Verifications",
+ "independentDesc": "Every month, assetX undergoes third-party auditing to ensure complete transparency.",
+ "attestationReport": "Attestation Report",
+ "viewAllArchive": "View All Archive",
+ "morganStanley": "Morgan Stanley",
+ "primeBroker": "Prime Broker",
+ "usEquityPortfolio": "US Equity Portfolio",
+ "days": "days"
+ },
+ "productPage": {
+ "title": "AssetX Fund Market",
+ "assets": "Assets",
+ "totalValueLocked": "Total Value Locked",
+ "cumulativeYield": "Cumulative Yield",
+ "yourTotalBalance": "Your Total Balance",
+ "yourTotalEarning": "Your Total Earning",
+ "yieldAPY": "Yield APY",
+ "poolCap": "Pool CaP",
+ "maturity": "Maturity",
+ "risk": "Risk",
+ "lockUp": "Lock-Up",
+ "circulatingSupply": "Circulating supply",
+ "poolCapacity": "Pool Capacity",
+ "filled": "Filled",
+ "invest": "Invest",
+ "quantStrategy": "Quant Strategy",
+ "realEstate": "Real Estate",
+ "low": "LOW",
+ "medium": "Medium",
+ "high": "High"
+ }
+}
diff --git a/locales/zh.json b/locales/zh.json
index 49c4cb6..66bc6c8 100644
--- a/locales/zh.json
+++ b/locales/zh.json
@@ -1,133 +1,155 @@
-{
- "nav": {
- "assets": "资产",
- "alp": "ALP",
- "swap": "交换",
- "lending": "借贷",
- "transparency": "透明度",
- "ecosystem": "生态系统",
- "points": "积分",
- "globalTVL": "全球锁仓总值",
- "faqs": "常见问题"
- },
- "tabs": {
- "overview": "概览",
- "assetDescription": "资产描述",
- "analytics": "分析",
- "performanceAnalysis": "业绩分析",
- "assetCustody": "资产托管与验证"
- },
- "product": {
- "gyUsEquityIndexToken": "高盈美股量化策略",
- "contractAddress": "合约地址"
- },
- "stats": {
- "currentAPY": "当前年化收益率",
- "totalValueLocked": "总锁仓价值",
- "yourBalance": "您的余额",
- "yourEarnings": "您的收益",
- "availableToWithdraw": "可提取金额"
- },
- "assetOverview": {
- "title": "资产概览",
- "mediumRisk": "中等风险",
- "underlyingAssets": "基础资产",
- "usEquityIndex": "美国股票指数",
- "maturityRange": "到期日范围",
- "cap": "上限",
- "minInvestment": "最小投资额",
- "poolCapacity": "资金池容量",
- "currentPrice": "当前价格"
- },
- "apy": {
- "apyHistory": "APY 历史",
- "priceHistory": "价格历史",
- "lastDays": "最近 30 天",
- "highest": "最高",
- "lowest": "最低"
- },
- "description": {
- "title": "资产描述",
- "content": "高盈美股量化策略(High-Yield US Equity Quantitative Strategy)是一款机构级真实世界资产(RWA)产品,为投资者提供多元化的美国股票投资组合敞口。该策略利用先进的量化模型,通过市场中性套利和其他复杂的交易技术来产生高收益。专为稳定性和持续回报而设计,它提供了一个通往传统金融市场的链上通道,具有更高的透明度和即时结算功能。\n\n该策略旨在最小化市场风险的同时最大化收益生成,适合在去中心化金融生态系统中寻求稳定增长的投资者。基础资产由机构托管人持有,并通过健全的合规框架进行验证。"
- },
- "mintSwap": {
- "mint": "铸造",
- "swap": "交换",
- "deposit": "存入",
- "withdraw": "提取",
- "balance": "余额",
- "max": "最大",
- "estimatedReturns": "预计收益",
- "estAPY": "预计 APY",
- "estReturns": "预计回报",
- "transactionSummary": "交易摘要",
- "youGet": "您将获得",
- "salesPrice": "销售价格",
- "fee": "手续费",
- "gas": "Gas 费用",
- "approveDeposit": "批准并存入 USDC",
- "termsText": "通过存入,您同意",
- "termsOfService": "服务条款",
- "and": "和",
- "privacyPolicy": "隐私政策"
- },
- "protocol": {
- "title": "协议信息",
- "whitepaper": "白皮书",
- "documentation": "文档",
- "github": "GitHub"
- },
- "rewards": {
- "season1": "第一季奖励",
- "live": "进行中",
- "earnPoints": "持有 GY-US 每天每 USDC 赚取 1 积分",
- "yourPoints": "您的积分",
- "badgeBoost": "徽章加成",
- "referrals": "推荐"
- },
- "performance": {
- "title": "业绩分析",
- "description": "高收益美国股票策略的历史每日净回报。",
- "ytd": "2025 年初至今",
- "dailyNetReturns": "每日净回报 (%)",
- "weekdays": {
- "sun": "周日",
- "mon": "周一",
- "tue": "周二",
- "wed": "周三",
- "thu": "周四",
- "fri": "周五",
- "sat": "周六"
- }
- },
- "custody": {
- "title": "资产托管与验证",
- "description": "实时查看基础资产持有情况和机构托管人验证状态。",
- "underlyingHoldings": "基础资产持有量",
- "verifiedBy": "由第三方机构托管人验证",
- "lastUpdated": "最后更新",
- "minutesAgo": "分钟前",
- "custodian": "托管人",
- "assetType": "资产类型",
- "maturity": "到期日",
- "valueUSD": "价值 (USD)",
- "status": "状态",
- "verified": "已验证",
- "totalValue": "基础资产总价值",
- "smartContract": "智能合约",
- "smartContractDesc": "由 OpenZeppelin 和 Certik 审计,确保安全性和可靠性。",
- "compliance": "合规性",
- "complianceDesc": "SEC 监管结构和破产隔离法律框架。",
- "proofOfReserves": "储备证明",
- "proofDesc": "通过 Chainlink Oracle 进行实时链上验证。",
- "viewReports": "查看报告",
- "independentVerifications": "独立验证",
- "independentDesc": "每月 assetX 都会接受第三方审计以确保完全透明。",
- "attestationReport": "证明报告",
- "viewAllArchive": "查看所有存档",
- "morganStanley": "摩根士丹利",
- "primeBroker": "主经纪商",
- "usEquityPortfolio": "美国股票投资组合",
- "days": "天"
- }
-}
+{
+ "nav": {
+ "assets": "资产",
+ "alp": "ALP",
+ "swap": "交换",
+ "lending": "借贷",
+ "transparency": "透明度",
+ "ecosystem": "生态系统",
+ "points": "积分",
+ "globalTVL": "全球锁仓总值",
+ "faqs": "常见问题"
+ },
+ "tabs": {
+ "overview": "概览",
+ "assetDescription": "资产描述",
+ "analytics": "分析",
+ "performanceAnalysis": "业绩分析",
+ "assetCustody": "资产托管与验证"
+ },
+ "product": {
+ "gyUsEquityIndexToken": "高盈美股量化策略",
+ "contractAddress": "合约地址"
+ },
+ "stats": {
+ "currentAPY": "当前年化收益率",
+ "totalValueLocked": "总锁仓价值",
+ "yourBalance": "您的余额",
+ "yourEarnings": "您的收益",
+ "availableToWithdraw": "可提取金额"
+ },
+ "assetOverview": {
+ "title": "资产概览",
+ "mediumRisk": "中等风险",
+ "underlyingAssets": "基础资产",
+ "usEquityIndex": "美国股票指数",
+ "maturityRange": "到期日范围",
+ "cap": "上限",
+ "minInvestment": "最小投资额",
+ "poolCapacity": "资金池容量",
+ "currentPrice": "当前价格"
+ },
+ "apy": {
+ "apyHistory": "APY 历史",
+ "priceHistory": "价格历史",
+ "lastDays": "最近 30 天",
+ "highest": "最高",
+ "lowest": "最低"
+ },
+ "description": {
+ "title": "资产描述",
+ "content": "高盈美股量化策略(High-Yield US Equity Quantitative Strategy)是一款机构级真实世界资产(RWA)产品,为投资者提供多元化的美国股票投资组合敞口。该策略利用先进的量化模型,通过市场中性套利和其他复杂的交易技术来产生高收益。专为稳定性和持续回报而设计,它提供了一个通往传统金融市场的链上通道,具有更高的透明度和即时结算功能。\n\n该策略旨在最小化市场风险的同时最大化收益生成,适合在去中心化金融生态系统中寻求稳定增长的投资者。基础资产由机构托管人持有,并通过健全的合规框架进行验证。"
+ },
+ "mintSwap": {
+ "mint": "铸造",
+ "swap": "交换",
+ "deposit": "存入",
+ "withdraw": "提取",
+ "balance": "余额",
+ "max": "最大",
+ "estimatedReturns": "预计收益",
+ "estAPY": "预计 APY",
+ "estReturns": "预计回报",
+ "transactionSummary": "交易摘要",
+ "youGet": "您将获得",
+ "salesPrice": "销售价格",
+ "fee": "手续费",
+ "gas": "Gas 费用",
+ "approveDeposit": "批准并存入 USDC",
+ "termsText": "通过存入,您同意",
+ "termsOfService": "服务条款",
+ "and": "和",
+ "privacyPolicy": "隐私政策"
+ },
+ "protocol": {
+ "title": "协议信息",
+ "whitepaper": "白皮书",
+ "documentation": "文档",
+ "github": "GitHub"
+ },
+ "rewards": {
+ "season1": "第一季奖励",
+ "live": "进行中",
+ "earnPoints": "持有 GY-US 每天每 USDC 赚取 1 积分",
+ "yourPoints": "您的积分",
+ "badgeBoost": "徽章加成",
+ "referrals": "推荐"
+ },
+ "performance": {
+ "title": "业绩分析",
+ "description": "高收益美国股票策略的历史每日净回报。",
+ "ytd": "2025 年初至今",
+ "dailyNetReturns": "每日净回报 (%)",
+ "weekdays": {
+ "sun": "周日",
+ "mon": "周一",
+ "tue": "周二",
+ "wed": "周三",
+ "thu": "周四",
+ "fri": "周五",
+ "sat": "周六"
+ }
+ },
+ "custody": {
+ "title": "资产托管与验证",
+ "description": "实时查看基础资产持有情况和机构托管人验证状态。",
+ "underlyingHoldings": "基础资产持有量",
+ "verifiedBy": "由第三方机构托管人验证",
+ "lastUpdated": "最后更新",
+ "minutesAgo": "分钟前",
+ "custodian": "托管人",
+ "assetType": "资产类型",
+ "maturity": "到期日",
+ "valueUSD": "价值 (USD)",
+ "status": "状态",
+ "verified": "已验证",
+ "totalValue": "基础资产总价值",
+ "smartContract": "智能合约",
+ "smartContractDesc": "由 OpenZeppelin 和 Certik 审计,确保安全性和可靠性。",
+ "compliance": "合规性",
+ "complianceDesc": "SEC 监管结构和破产隔离法律框架。",
+ "proofOfReserves": "储备证明",
+ "proofDesc": "通过 Chainlink Oracle 进行实时链上验证。",
+ "viewReports": "查看报告",
+ "independentVerifications": "独立验证",
+ "independentDesc": "每月 assetX 都会接受第三方审计以确保完全透明。",
+ "attestationReport": "证明报告",
+ "viewAllArchive": "查看所有存档",
+ "morganStanley": "摩根士丹利",
+ "primeBroker": "主经纪商",
+ "usEquityPortfolio": "美国股票投资组合",
+ "days": "天"
+ },
+ "productPage": {
+ "title": "AssetX 基金市场",
+ "assets": "资产",
+ "totalValueLocked": "总锁仓量",
+ "cumulativeYield": "累计收益",
+ "yourTotalBalance": "您的总余额",
+ "yourTotalEarning": "您的总收益",
+ "yieldAPY": "收益率 APY",
+ "poolCap": "池容量",
+ "maturity": "到期日",
+ "risk": "风险",
+ "lockUp": "锁仓期",
+ "circulatingSupply": "流通量",
+ "poolCapacity": "池容量",
+ "filled": "已填充",
+ "invest": "投资",
+ "quantStrategy": "量化策略",
+ "realEstate": "房地产",
+ "low": "低",
+ "medium": "中",
+ "high": "高"
+ }
+}
diff --git a/public/edit-list-unordered0.svg b/public/edit-list-unordered0.svg
new file mode 100644
index 0000000..0ffa6f9
--- /dev/null
+++ b/public/edit-list-unordered0.svg
@@ -0,0 +1,3 @@
+
diff --git a/public/menu-more-grid-small0.svg b/public/menu-more-grid-small0.svg
new file mode 100644
index 0000000..122af01
--- /dev/null
+++ b/public/menu-more-grid-small0.svg
@@ -0,0 +1,10 @@
+