+ );
+}
+
+export default DefaultLayout;
diff --git a/src/layouts/DefaultLayout/DefaultLayout.module.css b/src/layouts/DefaultLayout/DefaultLayout.module.css
new file mode 100644
index 0000000..3a2e8ac
--- /dev/null
+++ b/src/layouts/DefaultLayout/DefaultLayout.module.css
@@ -0,0 +1,9 @@
+.layout {
+ display: flex;
+ flex-direction: column;
+ min-height: 100dvh;
+}
+
+.layout main {
+ flex-grow: 1;
+}
\ No newline at end of file
diff --git a/src/pages/_app.js b/src/pages/_app.js
index b47e352..995fc27 100644
--- a/src/pages/_app.js
+++ b/src/pages/_app.js
@@ -1,15 +1,13 @@
import "@/styles/tacit-css-1.7.1.min.css";
import "@/styles/globals.css";
-import { Merriweather } from "next/font/google";
import { DefaultSeo } from "next-seo";
-const merriweather = Merriweather({ subsets: ["latin"], weight: [ "400", "700" ]});
export default function App({ Component, pageProps }) {
- return
+ return <>
-
+ >
}
diff --git a/src/pages/index.js b/src/pages/index.js
index 48ef717..2ca23ee 100644
--- a/src/pages/index.js
+++ b/src/pages/index.js
@@ -1,81 +1,66 @@
import Head from "next/head";
-import Footer from "@/components/Footer";
-import Header from "@/components/Header";
import ExternalLink from "@/components/ExternalLink";
+import DefaultLayout from "@/layouts/DefaultLayout/DefaultLayout";
export default function Home() {
return (
- <>
+
-
-
Hello!
-
-
-
- I'm Aaron. I'm a Brit living in Newcastle-upon-tyne,
- UK. I work professionally as a Software Engineer and Tutor, and study
+ I'm Aaron. I'm a Brit living in Newcastle-upon-tyne, UK. I
+ work professionally as a Software Engineer and Tutor, and study
languages in my spare time.
- This is my little corner of the web! I've always had a terrible
- habit of 'lurking' online; I barely interact with the
- content I consume, and you'll rarely if ever catch me posting or
- commenting on something. That said, this little site endeavours to
- pull me by my ankles out of the weeds in the great digital park we
- find ourselves, and encourage me to share a bit more about myself
- online.
+ This is my little corner of the web! I've always had a habit of
+ 'lurking' online; I barely interact with the content I
+ consume, and you'll rarely if ever catch me posting or commenting
+ on something. That said, this little site endeavours to pull me by my
+ ankles out of the weeds in the great digital park we find ourselves,
+ and encourage me to share a bit more about myself online.
Where to find me
-
- I'm not a massive fan of social media, and prefer to keep my
- digital footprint as small as possible. That said, you can find me in
- the following places!
-
-
- Letterboxd is a social platform for film lovers to
- rate, review, and discover movies, akin to "Goodreads for
- film."
-
-
-
- See what I've watched recently.
-
-
+
+
+
+
+ Letterboxd
+
+ {" "}
+ is a social platform for film lovers to rate, review, and discover
+ movies, akin to "Goodreads for film."
+
+
+
+
+ GitHub
+
+ {" "}
+ is a web-based platform for version control and collaboration on
+ software development projects. Find out what I've been working
+ on here!
+
+
+
+
+ LinkedIn
+
+
+ , unfortunately. A social network for professionals.
+
+
-
- GitHub is a web-based platform for version control
- and collaboration on software development projects. Find out what
- I've been working on here!
-
Yarbz Tutoring is my tutoring site. You can read a
bit more about my tutoring and general software develpment experience,
and book a class if it suits you.
@@ -84,10 +69,8 @@ export default function Home() {
Read more about my tutoring side-gig.
-
+
*/}
-
-
- >
+
);
}
diff --git a/src/pages/writing/index.js b/src/pages/writing/index.js
index b30010c..71c04aa 100644
--- a/src/pages/writing/index.js
+++ b/src/pages/writing/index.js
@@ -1,5 +1,5 @@
import Footer from "@/components/Footer";
-import Header from "@/components/Header";
+import Header from "@/components/Header/Header";
export default function Writing() {
return (
diff --git a/src/styles/globals.css b/src/styles/globals.css
index a245c98..2017fdb 100644
--- a/src/styles/globals.css
+++ b/src/styles/globals.css
@@ -1,3 +1,8 @@
-h1 {
- margin-bottom: 70px;
+html, body {
+ margin: 0;
+ padding: 0;
+}
+
+h1, h2, h3 {
+ font-weight: 600;
}
\ No newline at end of file