2024-01-13 14:53:47 +00:00
|
|
|
import ContactForm from "./components/contact_form/contact";
|
2024-01-06 16:42:33 +00:00
|
|
|
import './App.css';
|
2024-01-13 14:53:47 +00:00
|
|
|
import Home from "./components/home/home";
|
|
|
|
|
import {BrowserRouter, Route, Routes} from 'react-router-dom';
|
|
|
|
|
import Footer from "./components/footer/footer";
|
|
|
|
|
import React from "react";
|
|
|
|
|
import VerifyMail from "./components/verify_email/verify_mail";
|
|
|
|
|
import ThankYou from "./components/verify_email/thank_you";
|
2024-01-06 16:42:33 +00:00
|
|
|
|
|
|
|
|
function App() {
|
2024-01-13 14:53:47 +00:00
|
|
|
return (
|
|
|
|
|
<div className="app-container">
|
|
|
|
|
<BrowserRouter>
|
|
|
|
|
<Routes>
|
|
|
|
|
<Route path="/" element={<Home/>}/>
|
|
|
|
|
<Route path="/contact" element={<ContactForm/>}/>
|
|
|
|
|
<Route path="/verify-email" element={<VerifyMail/>}/>
|
|
|
|
|
<Route path="/thank-you" element={<ThankYou/>}/>
|
|
|
|
|
</Routes>
|
|
|
|
|
</BrowserRouter>
|
|
|
|
|
<Footer/>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
2024-01-06 16:42:33 +00:00
|
|
|
}
|
|
|
|
|
|
2024-01-13 14:53:47 +00:00
|
|
|
export default App;
|