diff --git a/frontend/src/components/Intro.jsx b/frontend/src/components/Intro.jsx
new file mode 100644
index 0000000..f76c3d2
--- /dev/null
+++ b/frontend/src/components/Intro.jsx
@@ -0,0 +1,7 @@
+
+export default function Intro() {
+
+ return(
+
hello!
+ )
+}
diff --git a/frontend/src/pages/Home.jsx b/frontend/src/pages/Home.jsx
new file mode 100644
index 0000000..fa36ef1
--- /dev/null
+++ b/frontend/src/pages/Home.jsx
@@ -0,0 +1,10 @@
+import Intro from "../components/Intro";
+
+export default function Home() {
+
+ return(
+
+
+
+ );
+}