feat: port TechLog Studio shell and indexes

This commit is contained in:
DongHyeonka
2026-08-15 23:29:32 +09:00
parent 2b6fa42620
commit 887f5e6eb1
15 changed files with 1187 additions and 0 deletions
@@ -0,0 +1,5 @@
import { DocumentList } from "../components/document-list.tsx";
export function DocumentsPage() {
return <DocumentList />;
}
@@ -0,0 +1,5 @@
import { NewDocumentForm } from "../components/new-document-form.tsx";
export function NewDocumentPage() {
return <NewDocumentForm />;
}
@@ -0,0 +1,5 @@
import { StudioDashboard } from "../components/studio-dashboard.tsx";
export function StudioHomePage() {
return <StudioDashboard />;
}
@@ -0,0 +1,12 @@
import { Link } from "react-router-dom";
export function StudioNotFoundPage() {
return (
<section className="studio-route-state">
<p className="studio-eyebrow">404</p>
<h1>Studio </h1>
<p> .</p>
<Link to="/studio/documents"> </Link>
</section>
);
}