+
+
+ >
);
};
-export default Home;
\ No newline at end of file
+export default Home;
diff --git a/src/js/components/Jumbotron.jsx b/src/js/components/Jumbotron.jsx
new file mode 100644
index 000000000..207625c7a
--- /dev/null
+++ b/src/js/components/Jumbotron.jsx
@@ -0,0 +1,19 @@
+import React from "react";
+
+const Jumbotron = () => {
+ return (
+
+
+
A Warm Welcome!
+
+ Lorem ipsum dolor sit, amet consectetur adipisicing elit. Inventore facere distinctio voluptates quia officiis unde nobis neque veniam hic. Sequi totam laudantium, velit a quaerat deleniti blanditiis facere reiciendis cumque!
+
+
+
+
+ );
+};
+
+export default Jumbotron;
\ No newline at end of file
diff --git a/src/js/components/Navbar.jsx b/src/js/components/Navbar.jsx
new file mode 100644
index 000000000..5dab48585
--- /dev/null
+++ b/src/js/components/Navbar.jsx
@@ -0,0 +1,36 @@
+const Navbar = () => {
+ return (
+
+ );
+};
+
+export default Navbar;
diff --git a/src/js/main.jsx b/src/js/main.jsx
index 14662105b..e19987ca1 100644
--- a/src/js/main.jsx
+++ b/src/js/main.jsx
@@ -1,18 +1,14 @@
-import React from 'react'
-import ReactDOM from 'react-dom/client'
+import React from "react";
+import ReactDOM from "react-dom/client";
+import App from "./App";
//Bootstrap
import "bootstrap/dist/css/bootstrap.min.css";
-import "bootstrap"
-
-// index.css'
-import '../styles/index.css'
-
-// components
-import Home from './components/Home';
-
-ReactDOM.createRoot(document.getElementById('root')).render(
-
-
- ,
-)
+import "bootstrap/dist/js/bootstrap.bundle.min.js";
+import "./styles/index.css";
+
+ReactDOM.createRoot(document.getElementById("root")).render(
+
+
+
+);
diff --git a/src/styles/index.css b/src/js/styles/index.css
similarity index 98%
rename from src/styles/index.css
rename to src/js/styles/index.css
index 50716eb70..93cbc48cb 100644
--- a/src/styles/index.css
+++ b/src/js/styles/index.css
@@ -8,4 +8,4 @@
import 'relative/path/to/stylesheet.scss';
-*/
+*/
\ No newline at end of file