Merge branch 'main' of github.com:AaronJY/www-aaronjy-2024
This commit is contained in:
commit
a2195ff0a7
8 changed files with 116 additions and 75 deletions
18
src/components/Header/Header.jsx
Normal file
18
src/components/Header/Header.jsx
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
import Link from "next/link";
|
||||||
|
import React from "react";
|
||||||
|
|
||||||
|
import styles from "./Header.module.css";
|
||||||
|
|
||||||
|
function Header() {
|
||||||
|
return (
|
||||||
|
<header className={styles.header}>
|
||||||
|
<nav>
|
||||||
|
<Link href={"/"}>home</Link>
|
||||||
|
<Link href={"/writing"}>writing</Link>
|
||||||
|
<Link href={"/cv"}>cv</Link>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export default Header;
|
5
src/components/Header/Header.module.css
Normal file
5
src/components/Header/Header.module.css
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
.header nav {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
gap: 20px;
|
||||||
|
}
|
21
src/layouts/DefaultLayout/DefaultLayout.jsx
Normal file
21
src/layouts/DefaultLayout/DefaultLayout.jsx
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
import React from "react";
|
||||||
|
|
||||||
|
import style from "./DefaultLayout.module.css";
|
||||||
|
import Header from "@/components/Header/Header";
|
||||||
|
import Footer from "@/components/Footer";
|
||||||
|
|
||||||
|
import {Barlow} from "next/font/google";
|
||||||
|
|
||||||
|
const fontMain = Barlow({ subsets: ["latin"], weight: [ "400", "600" ]});
|
||||||
|
|
||||||
|
function DefaultLayout({ children }) {
|
||||||
|
return (
|
||||||
|
<div className={style.layout}>
|
||||||
|
<Header />
|
||||||
|
<main className={`${fontMain.className}`}>{children}</main>
|
||||||
|
<Footer />
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export default DefaultLayout;
|
9
src/layouts/DefaultLayout/DefaultLayout.module.css
Normal file
9
src/layouts/DefaultLayout/DefaultLayout.module.css
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
.layout {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
min-height: 100dvh;
|
||||||
|
}
|
||||||
|
|
||||||
|
.layout main {
|
||||||
|
flex-grow: 1;
|
||||||
|
}
|
|
@ -1,15 +1,12 @@
|
||||||
import '@/styles/globals.css'
|
import '@/styles/globals.css'
|
||||||
|
|
||||||
import { Inter } from 'next/font/google'
|
import { DefaultSeo } from "next-seo";
|
||||||
import { DefaultSeo } from 'next-seo'
|
|
||||||
|
|
||||||
const inter = Inter({ subsets: ['latin'], weight: ['400', '700'] })
|
|
||||||
|
|
||||||
export default function App ({ Component, pageProps }) {
|
|
||||||
return (
|
export default function App({ Component, pageProps }) {
|
||||||
<main className={inter.className}>
|
return <>
|
||||||
<DefaultSeo defaultTitle='Aaron Yarborough' titleTemplate='%s | Aaron Yarborough' />
|
<DefaultSeo defaultTitle="Aaron Yarborough" titleTemplate="%s | Aaron Yarborough"/>
|
||||||
<Component {...pageProps} />
|
<Component {...pageProps} />
|
||||||
</main>
|
</>
|
||||||
)
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,81 +1,66 @@
|
||||||
import Head from 'next/head'
|
import Head from "next/head";
|
||||||
import Footer from '@/components/Footer'
|
import ExternalLink from "@/components/ExternalLink";
|
||||||
import Header from '@/components/Header'
|
import DefaultLayout from "@/layouts/DefaultLayout/DefaultLayout";
|
||||||
import ExternalLink from '@/components/ExternalLink'
|
|
||||||
|
|
||||||
export default function Home () {
|
export default function Home () {
|
||||||
return (
|
return (
|
||||||
<>
|
<DefaultLayout>
|
||||||
<Head>
|
<Head>
|
||||||
<meta name='viewport' content='width=device-width, initial-scale=1' />
|
<meta name='viewport' content='width=device-width, initial-scale=1' />
|
||||||
<link rel='icon' href='/favicon.ico' />
|
<link rel='icon' href='/favicon.ico' />
|
||||||
</Head>
|
</Head>
|
||||||
|
|
||||||
<Header />
|
|
||||||
|
|
||||||
<section>
|
|
||||||
<h1>Hello 👋🏻</h1>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section>
|
<section>
|
||||||
|
<h1>Hello!</h1>
|
||||||
<p>
|
<p>
|
||||||
I'm Aaron. I'm a Brit living in Newcastle-upon-tyne,
|
I'm Aaron. I'm a Brit living in Newcastle-upon-tyne, UK. I
|
||||||
UK. I work professionally as a Software Engineer and Tutor, and study
|
work professionally as a Software Engineer and Tutor, and study
|
||||||
languages in my spare time.
|
languages in my spare time.
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
This is my little corner of the web! I've always had a terrible
|
This is my little corner of the web! I've always had a habit of
|
||||||
habit of 'lurking' online; I barely interact with the
|
'lurking' online; I barely interact with the content I
|
||||||
content I consume, and you'll rarely if ever catch me posting or
|
consume, and you'll rarely if ever catch me posting or commenting
|
||||||
commenting on something. That said, this little site endeavours to
|
on something. That said, this little site endeavours to pull me by my
|
||||||
pull me by my ankles out of the weeds in the great digital park we
|
ankles out of the weeds in the great digital park we find ourselves,
|
||||||
find ourselves, and encourage me to share a bit more about myself
|
and encourage me to share a bit more about myself online.
|
||||||
online.
|
|
||||||
</p>
|
</p>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section>
|
<section>
|
||||||
<h2>Where to find me</h2>
|
<h2>Where to find me</h2>
|
||||||
<p>
|
|
||||||
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!
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<p>
|
<ul>
|
||||||
<strong>Letterboxd</strong> is a social platform for film lovers to
|
<li>
|
||||||
rate, review, and discover movies, akin to "Goodreads for
|
<strong>
|
||||||
film."
|
<ExternalLink href="https://letterboxd.com/aaronyarbz/">
|
||||||
</p>
|
Letterboxd
|
||||||
<p>
|
</ExternalLink>
|
||||||
<ExternalLink href='https://letterboxd.com/aaronyarbz/'>
|
</strong>{" "}
|
||||||
See what I've watched recently.
|
is a social platform for film lovers to rate, review, and discover
|
||||||
</ExternalLink>
|
movies, akin to "Goodreads for film."
|
||||||
</p>
|
</li>
|
||||||
|
<li>
|
||||||
|
<strong>
|
||||||
|
<ExternalLink href="https://github.com/AaronJY">
|
||||||
|
GitHub
|
||||||
|
</ExternalLink>
|
||||||
|
</strong>{" "}
|
||||||
|
is a web-based platform for version control and collaboration on
|
||||||
|
software development projects. Find out what I've been working
|
||||||
|
on here!
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<strong>
|
||||||
|
<ExternalLink href="https://www.linkedin.com/in/aaronjyarborough/">
|
||||||
|
LinkedIn
|
||||||
|
</ExternalLink>
|
||||||
|
</strong>
|
||||||
|
, unfortunately. A social network for professionals.
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
<p>
|
{/* <p>
|
||||||
<strong>GitHub</strong> is a web-based platform for version control
|
|
||||||
and collaboration on software development projects. Find out what
|
|
||||||
I've been working on here!
|
|
||||||
</p>
|
|
||||||
<p>
|
|
||||||
<ExternalLink href='https://github.com/AaronJY'>
|
|
||||||
Check out what I've been working on.
|
|
||||||
</ExternalLink>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<p>
|
|
||||||
<strong>LinkedIn</strong> is possibly the <i>worst</i> social network.
|
|
||||||
Specifically for professional stuff, I'm only on here because I
|
|
||||||
have to be 😩
|
|
||||||
</p>
|
|
||||||
<p>
|
|
||||||
<ExternalLink href='https://www.linkedin.com/in/aaronjyarborough/'>
|
|
||||||
Be creepy and stalk me on LinkedIn.
|
|
||||||
</ExternalLink>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<p>
|
|
||||||
<strong>Yarbz Tutoring</strong> is my tutoring site. You can read a
|
<strong>Yarbz Tutoring</strong> is my tutoring site. You can read a
|
||||||
bit more about my tutoring and general software develpment experience,
|
bit more about my tutoring and general software develpment experience,
|
||||||
and book a class if it suits you.
|
and book a class if it suits you.
|
||||||
|
@ -84,10 +69,8 @@ export default function Home () {
|
||||||
<ExternalLink href='https://tutoring.yarbz.digital'>
|
<ExternalLink href='https://tutoring.yarbz.digital'>
|
||||||
Read more about my tutoring side-gig.
|
Read more about my tutoring side-gig.
|
||||||
</ExternalLink>
|
</ExternalLink>
|
||||||
</p>
|
</p> */}
|
||||||
</section>
|
</section>
|
||||||
|
</DefaultLayout>
|
||||||
<Footer />
|
);
|
||||||
</>
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import Footer from '@/components/Footer'
|
import Footer from "@/components/Footer";
|
||||||
import Header from '@/components/Header'
|
import Header from "@/components/Header/Header";
|
||||||
|
|
||||||
export default function Writing () {
|
export default function Writing () {
|
||||||
return (
|
return (
|
||||||
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
html, body {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1, h2, h3 {
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue