feat: scaffold web frontend

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
tao.chen
2026-07-02 16:48:19 +08:00
co-authored by Claude
parent d8b812cf0e
commit 4039d9fa48
14 changed files with 2800 additions and 1 deletions
+14
View File
@@ -0,0 +1,14 @@
import { StrictMode } from "react";
import { createRoot } from "react-dom/client";
import "@/styles/index.css";
createRoot(document.getElementById("root")!).render(
<StrictMode>
<div className="min-h-screen bg-neutral-950 p-8 text-neutral-100">
<h1 className="text-2xl font-semibold">Codespace</h1>
<p className="mt-2 text-sm text-neutral-400">
Web frontend scaffold. IDE shell coming in later tasks.
</p>
</div>
</StrictMode>,
);
+1
View File
@@ -0,0 +1 @@
@import "tailwindcss";
+1
View File
@@ -0,0 +1 @@
/// <reference types="vite/client" />