From 1a8c2fa51dc3e94b8a90e4d4f04e2430acbb6680 Mon Sep 17 00:00:00 2001 From: jyswee Date: Thu, 23 Jul 2026 22:12:46 +0000 Subject: [PATCH] Seed: fitness template (17 files) --- src/App.tsx | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 src/App.tsx diff --git a/src/App.tsx b/src/App.tsx new file mode 100644 index 0000000..a3eff78 --- /dev/null +++ b/src/App.tsx @@ -0,0 +1,22 @@ +import { BrowserRouter, Routes, Route } from "react-router-dom"; +import IndexPage from "@/pages/Index"; +import ClassesPage from "@/pages/Classes"; +import TrainersPage from "@/pages/Trainers"; +import PricingPage from "@/pages/Pricing"; +import ContactPage from "@/pages/Contact"; + +function App() { + return ( + + + } /> + } /> + } /> + } /> + } /> + + + ); +} + +export default App;