feat: scaffold web frontend
Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -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>,
|
||||
);
|
||||
@@ -0,0 +1 @@
|
||||
@import "tailwindcss";
|
||||
Vendored
+1
@@ -0,0 +1 @@
|
||||
/// <reference types="vite/client" />
|
||||
Reference in New Issue
Block a user