diff --git a/components/App.jsx b/components/App.jsx
new file mode 100644
index 0000000..eeede7f
--- /dev/null
+++ b/components/App.jsx
@@ -0,0 +1,7 @@
+const App = ({ children }) => (
+
+ {children}
+
+);
+
+export default App;
\ No newline at end of file
diff --git a/components/Content.jsx b/components/Content.jsx
new file mode 100644
index 0000000..d719c59
--- /dev/null
+++ b/components/Content.jsx
@@ -0,0 +1,11 @@
+const Content = ({ className, children }) => (
+
+ {children}
+
+);
+
+export default Content;
\ No newline at end of file
diff --git a/components/Nav.jsx b/components/Nav.jsx
index 6a2b0b1..1350dfc 100644
--- a/components/Nav.jsx
+++ b/components/Nav.jsx
@@ -6,7 +6,7 @@ const Nav = ({ page }) => {
const [showMobileMenu, setShowMobileMenu] = useState(false);
return (
-