diff --git a/src/App.tsx b/src/App.tsx new file mode 100644 index 0000000..6d87f1b --- /dev/null +++ b/src/App.tsx @@ -0,0 +1,22 @@ +import { BrowserRouter, Routes, Route } from "react-router-dom"; +import IndexPage from "@/pages/Index"; +import ServicesPage from "@/pages/Services"; +import DoctorsPage from "@/pages/Doctors"; +import DoctorDetailPage from "@/pages/DoctorDetail"; +import ContactPage from "@/pages/Contact"; + +function App() { + return ( + + + } /> + } /> + } /> + } /> + } /> + + + ); +} + +export default App;