diff --git a/app/components/Contact/Contact.css b/app/components/Contact/Contact.css
new file mode 100644
index 0000000..e69de29
diff --git a/app/components/Contact/Contact.jsx b/app/components/Contact/Contact.jsx
new file mode 100644
index 0000000..bbd47bc
--- /dev/null
+++ b/app/components/Contact/Contact.jsx
@@ -0,0 +1,7 @@
+import React from "react";
+
+const Contact = () => {
+ return
Contact
;
+};
+
+export default Contact;
diff --git a/app/components/Faq/Faq.css b/app/components/Faq/Faq.css
new file mode 100644
index 0000000..e69de29
diff --git a/app/components/Faq/Faq.jsx b/app/components/Faq/Faq.jsx
new file mode 100644
index 0000000..1ab5920
--- /dev/null
+++ b/app/components/Faq/Faq.jsx
@@ -0,0 +1,7 @@
+import React from "react";
+
+const Faq = () => {
+ return FAQ
;
+};
+
+export default Faq;
diff --git a/app/components/Footer/Footer.css b/app/components/Footer/Footer.css
new file mode 100644
index 0000000..e69de29
diff --git a/app/components/Footer/Footer.jsx b/app/components/Footer/Footer.jsx
new file mode 100644
index 0000000..6c261a9
--- /dev/null
+++ b/app/components/Footer/Footer.jsx
@@ -0,0 +1,7 @@
+import React from "react";
+
+const Footer = () => {
+ return Footer
;
+};
+
+export default Footer;
diff --git a/app/components/Header/Header.css b/app/components/Header/Header.css
new file mode 100644
index 0000000..e69de29
diff --git a/app/components/Header/Header.jsx b/app/components/Header/Header.jsx
new file mode 100644
index 0000000..0a015a6
--- /dev/null
+++ b/app/components/Header/Header.jsx
@@ -0,0 +1,7 @@
+import React from "react";
+
+const Header = () => {
+ return Header
;
+};
+
+export default Header;
diff --git a/app/components/Hero/Hero.css b/app/components/Hero/Hero.css
new file mode 100644
index 0000000..e69de29
diff --git a/app/components/Hero/Hero.jsx b/app/components/Hero/Hero.jsx
new file mode 100644
index 0000000..1b62b05
--- /dev/null
+++ b/app/components/Hero/Hero.jsx
@@ -0,0 +1,7 @@
+import React from "react";
+
+const Hero = () => {
+ return Hero
;
+};
+
+export default Hero;
diff --git a/app/globals.css b/app/globals.css
index fd81e88..7161589 100644
--- a/app/globals.css
+++ b/app/globals.css
@@ -12,7 +12,7 @@
:root {
--foreground-rgb: 255, 255, 255;
--background-start-rgb: 0, 0, 0;
- --background-end-rgb: 0, 0, 0;
+ --background-end-rgb: 2, 1, 27;
}
}
diff --git a/app/page.js b/app/page.js
index 9c88d59..667f5e4 100644
--- a/app/page.js
+++ b/app/page.js
@@ -1,113 +1,17 @@
-import Image from 'next/image'
-
+import Header from './components/Header/Header'
+import Hero from './components/Hero/Hero'
+import Contact from './components/Contact/Contact'
+import Faq from './components/Faq/Faq'
+import Footer from './components/Footer/Footer'
export default function Home() {
return (
-
-
- Get started by editing
- app/page.js
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
)
}