aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2022-10-14 12:28:03 -0400
committerAndrew Lee <alee14498@protonmail.com>2022-10-14 12:28:03 -0400
commit6570bf5f1ad7fe9aebab08c78c4111717788948a (patch)
treefd5d16e00dea944a537ea69847b8e50b42a08264
parent269a2c961fc1babb678db589eb0e6f85bc38644e (diff)
downloadpersonal-website-6570bf5f1ad7fe9aebab08c78c4111717788948a.tar.gz
personal-website-6570bf5f1ad7fe9aebab08c78c4111717788948a.tar.bz2
personal-website-6570bf5f1ad7fe9aebab08c78c4111717788948a.zip
Fixed export problems
-rw-r--r--components/header.js13
-rw-r--r--next.config.js3
2 files changed, 16 insertions, 0 deletions
diff --git a/components/header.js b/components/header.js
new file mode 100644
index 0000000..0b12081
--- /dev/null
+++ b/components/header.js
@@ -0,0 +1,13 @@
+import Head from "next/head.js"
+
+const Header = () => {
+ <Head>
+ <meta name="description" content="Andrew's personal website" />
+ <meta name="viewport" content="width=device-width, initial-scale=1"/>
+ <link rel="icon" href="/favicon.ico" />
+
+ <title></title>
+ </Head>
+}
+
+export default Header
diff --git a/next.config.js b/next.config.js
index 0d60710..ac741ea 100644
--- a/next.config.js
+++ b/next.config.js
@@ -1,3 +1,6 @@
module.exports = {
reactStrictMode: true,
+ images: {
+ unoptimized: true
+ }
}