This commit is contained in:
2026-03-28 01:06:30 -05:00
parent 796c374d38
commit ecb708790d
35 changed files with 2347 additions and 37 deletions

11
frontend/src/App.tsx Normal file
View File

@@ -0,0 +1,11 @@
import { Routes, Route, Navigate } from 'react-router-dom';
import { Gallery } from './pages/Gallery';
export default function App() {
return (
<Routes>
<Route path="/" element={<Gallery />} />
<Route path="*" element={<Navigate to="/" replace />} />
</Routes>
);
}