feat(InterviewBooking): inital main of interview booking

This commit is contained in:
darkicewolf50 2025-01-18 14:13:15 -07:00
parent 74cc024684
commit 1dc41aca81
2 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,12 @@
/**
* @param {null} null - requires onthing
* @returns {JSX.Element} Page - HTML tags and JS functionality
* @description The Footer of the page
* @author Brock <darkicewolf50@gmail.com>
* @todo add who helped developed the site and finalize css
*/
const interviewBooking = () => {
return <p>Hello</p>;
};
export default interviewBooking;

View File

@ -9,6 +9,7 @@ import OurSponsors from "./OurSponsors/OurSponsors";
import JoinTheClub from "./Club Membership & Upcoming Events/JoinTheClub/JoinTheClub"; import JoinTheClub from "./Club Membership & Upcoming Events/JoinTheClub/JoinTheClub";
import UpcomingEvents from "./Club Membership & Upcoming Events/UpcominEvents/UpcomingEvents"; import UpcomingEvents from "./Club Membership & Upcoming Events/UpcominEvents/UpcomingEvents";
import Gallery from "./Gallery/Gallery"; import Gallery from "./Gallery/Gallery";
import interviewBooking from "./Interivew Booking/InterviewBooking";
import "./index.css"; import "./index.css";
const root = ReactDOM.createRoot(document.getElementById("root")); const root = ReactDOM.createRoot(document.getElementById("root"));
@ -35,6 +36,10 @@ root.render(
<Route <Route
path="/Gallery" path="/Gallery"
element={<Gallery />}></Route> element={<Gallery />}></Route>
<Route
path="/InterviewBooking"
element={<interviewBooking />}
/>
</Route> </Route>
</Routes> </Routes>
</BrowserRouter> </BrowserRouter>