aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/pages/Home
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/pages/Home')
-rw-r--r--frontend/src/pages/Home/Home.jsx15
-rw-r--r--frontend/src/pages/Home/Home.module.css8
2 files changed, 23 insertions, 0 deletions
diff --git a/frontend/src/pages/Home/Home.jsx b/frontend/src/pages/Home/Home.jsx
new file mode 100644
index 0000000..35ed08e
--- /dev/null
+++ b/frontend/src/pages/Home/Home.jsx
@@ -0,0 +1,15 @@
+import Header from "../../components/Header/Header";
+import CustomGrid from "../../components/CustomGrid/CustomGrid";
+import styles from "./Home.module.css";
+const Home = () => {
+ return (
+ <>
+ <div class={styles.container}>
+ <Header />
+ <CustomGrid />
+ </div>
+ </>
+ );
+};
+
+export default Home;
diff --git a/frontend/src/pages/Home/Home.module.css b/frontend/src/pages/Home/Home.module.css
new file mode 100644
index 0000000..83d02d6
--- /dev/null
+++ b/frontend/src/pages/Home/Home.module.css
@@ -0,0 +1,8 @@
+.container {
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ height: 100%;
+ width: 100%;
+}