feat: add Stirling-PDF-style layout with sidebar, tool panel, dropzone, and theme toggle

This commit is contained in:
Siddharth Kumar Sah
2026-03-22 03:01:23 +08:00
parent 541e49576c
commit e920021da1
9 changed files with 345 additions and 1 deletions
+2 -1
View File
@@ -1,10 +1,11 @@
import { BrowserRouter, Routes, Route } from "react-router-dom";
import { HomePage } from "./pages/home-page";
export function App() {
return (
<BrowserRouter>
<Routes>
<Route path="/" element={<div className="p-8 text-2xl font-bold text-primary">Stirling Image</div>} />
<Route path="/" element={<HomePage />} />
</Routes>
</BrowserRouter>
);