"use client"; import Sidebar from "@/components/layout/Sidebar"; import TopBar from "@/components/layout/TopBar"; import ALPStatsCards from "@/components/alp/ALPStatsCards"; import PriceHistoryCard from "@/components/alp/PriceHistoryCard"; import TradePanel from "@/components/common/TradePanel"; import LiquidityAllocationTable from "@/components/alp/LiquidityAllocationTable"; import { useApp } from "@/contexts/AppContext"; export default function ALPPage() { const { t } = useApp(); const breadcrumbItems = [ { label: "ASSETX", href: "/" }, { label: t("nav.alp") }, ]; return (
{/* Page Title and Stats Cards Section */}

{t("alp.title")}

{/* Stats Cards */}
{/* Main Content - Price History and Trade Panel */}
{/* Liquidity Allocation Table */}
); }