From dfe94f0e8eaa0dcc7d6325a8607ca9061aeadd70 Mon Sep 17 00:00:00 2001
From: rizaldy
Date: Wed, 31 Jan 2024 00:25:25 +0700
Subject: [PATCH] feat: create foundations
---
pages/_app.js | 31 +++++++++++++++++++++++++++++++
pages/_document.js | 15 +++++++++++++++
styles/globals.css | 12 ++++++++++++
3 files changed, 58 insertions(+)
create mode 100644 pages/_app.js
create mode 100644 pages/_document.js
create mode 100644 styles/globals.css
diff --git a/pages/_app.js b/pages/_app.js
new file mode 100644
index 0000000..10e4682
--- /dev/null
+++ b/pages/_app.js
@@ -0,0 +1,31 @@
+import "../styles/globals.css";
+
+import { Fragment } from "react";
+
+import Navbar from "../components/Navbar";
+import Footer from "../components/Footer";
+
+import config from "../config.json";
+
+const Content = ({ children }) => (
+
+);
+
+const App = ({ Component, pageProps }) => (
+
+
+
+
+
+
+
+);
+
+export default App;
diff --git a/pages/_document.js b/pages/_document.js
new file mode 100644
index 0000000..c5fc359
--- /dev/null
+++ b/pages/_document.js
@@ -0,0 +1,15 @@
+import { Html, Head, Main, NextScript } from "next/document";
+
+const Document = () => {
+ return (
+
+
+
+
+
+
+
+ );
+};
+
+export default Document;
diff --git a/styles/globals.css b/styles/globals.css
new file mode 100644
index 0000000..1c5fb1d
--- /dev/null
+++ b/styles/globals.css
@@ -0,0 +1,12 @@
+@tailwind base;
+@tailwind components;
+@tailwind utilities;
+
+/* Somehow tailwind doesn't include this??? */
+.aspect-photos {
+ aspect-ratio: 1 / 1;
+}
+
+.aspect-videos {
+ aspect-ratio: 16 / 9;
+}