(active ? setActive(false) : setActive(true))}
diff --git a/pages/_app.js b/pages/_app.js
index 2a60b4b..84ac194 100644
--- a/pages/_app.js
+++ b/pages/_app.js
@@ -1,19 +1,13 @@
import Layout from "../components/layout/Layout";
-import Landing from "../components/landing/Landing";
-import Parallax from "../components/parallax/Parallax";
-import { useState } from "react";
+// import Landing from "../components/landing/Landing";
+// import Parallax from "../components/parallax/Parallax";
+// import { useState } from "react";
+import "../styles/globals.css";
export default function App({ Component, pageProps }) {
return (
- <>
-
-
-
-
-
- >
+
+
+
);
}
diff --git a/pages/index.js b/pages/index.js
index ae0a5d2..ac6fb50 100644
--- a/pages/index.js
+++ b/pages/index.js
@@ -1,9 +1,5 @@
-import Head from "next/head";
-import { Inter } from "@next/font/google";
import HomePage from "../components/homepage/HomePage";
-const inter = Inter({ subsets: ["latin"] });
-
export default function Home() {
return
;
}