From 428d05c2d5e4c9a21629197359adc561918de276 Mon Sep 17 00:00:00 2001 From: jyswee Date: Thu, 23 Jul 2026 22:11:48 +0000 Subject: [PATCH] Seed: real-estate template (18 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..c39daa7 --- /dev/null +++ b/src/App.tsx @@ -0,0 +1,22 @@ +import { BrowserRouter, Routes, Route } from "react-router-dom"; +import IndexPage from "@/pages/Index"; +import PropertiesPage from "@/pages/Properties"; +import PropertyDetailPage from "@/pages/PropertyDetail"; +import AgentsPage from "@/pages/Agents"; +import ContactPage from "@/pages/Contact"; + +function App() { + return ( + + + } /> + } /> + } /> + } /> + } /> + + + ); +} + +export default App;