初始化 assetx 项目,首次提交

This commit is contained in:
2026-01-26 17:44:27 +08:00
commit f901590dce
492 changed files with 25203 additions and 0 deletions

18
app/page.tsx Normal file
View File

@@ -0,0 +1,18 @@
import Sidebar from "@/components/Sidebar";
import TopBar from "@/components/TopBar";
import ContentSection from "@/components/ContentSection";
export default function Home() {
return (
<div className="min-h-screen bg-bg-subtle dark:bg-gray-900">
<Sidebar />
<main className="ml-[222px] p-8 flex flex-col gap-8">
{/* Top Navigation Bar */}
<TopBar />
{/* Tab Navigation and Content */}
<ContentSection />
</main>
</div>
);
}