- );
-};
-
-export default ExploreContainer;
diff --git a/src/pages/Home.css b/src/pages/Home.css
index e69de29..9747151 100644
--- a/src/pages/Home.css
+++ b/src/pages/Home.css
@@ -0,0 +1,14 @@
+ion-button {
+ text-align: center;
+ justify-content: center;
+ margin: 30% 10% 0 10%;
+ width: 100%;
+}
+
+ion-toolbar {
+ text-align: center;
+}
+
+ion-grid {
+ max-width: 500px;
+}
diff --git a/src/pages/Home.tsx b/src/pages/Home.tsx
index d791bb1..83a634b 100644
--- a/src/pages/Home.tsx
+++ b/src/pages/Home.tsx
@@ -1,23 +1,23 @@
-import { IonContent, IonHeader, IonPage, IonTitle, IonToolbar } from '@ionic/react';
+import { IonContent, IonHeader, IonPage, IonTitle, IonToolbar, IonButton, IonGrid, IonRow } from '@ionic/react';
import React from 'react';
-import ExploreContainer from '../components/ExploreContainer';
import './Home.css';
const Home: React.FC = () => {
+ async function handleSubmit() {}
+
return (