diff --git a/content/pages/cv.yml b/content/pages/cv.yml index e287f90..98bba97 100644 --- a/content/pages/cv.yml +++ b/content/pages/cv.yml @@ -26,7 +26,8 @@ experience: employer: Hippo start: Feb. 2024 end: Present - desc: "-" + desc: >- + * Leading a small team of developers on a UK public sector project for the Department for Education (DfE) - position: Software Development Tutor employer: Yarbz Digital Ltd start: Sep. 2023 diff --git a/src/layouts/DefaultLayout/DefaultLayout.jsx b/src/layouts/DefaultLayout/DefaultLayout.jsx index 2a65096..271d824 100644 --- a/src/layouts/DefaultLayout/DefaultLayout.jsx +++ b/src/layouts/DefaultLayout/DefaultLayout.jsx @@ -4,9 +4,9 @@ import style from './DefaultLayout.module.css' import Header from '@/components/Header/Header' import Footer from '@/components/Footer/Footer' -import { Fira_Sans as FiraSans } from 'next/font/google' +import { Ubuntu } from 'next/font/google' -const fontMain = FiraSans({ subsets: ['latin'], weight: ['400', '600'] }) +const fontMain = Ubuntu({ subsets: ['latin'], weight: ['400', '500'] }) function DefaultLayout ({ children }) { return ( diff --git a/src/styles/globals.css b/src/styles/globals.css index 5f8a245..3d21290 100644 --- a/src/styles/globals.css +++ b/src/styles/globals.css @@ -1,7 +1,7 @@ :root { - --color-default: #30362F; - --color-primary: #DA7422; - --color-bg: #FFFBDB; + --color-default: #1f3470; + --color-primary: #5172cf; + --color-bg: #fbfbfb; } html, body { @@ -15,6 +15,7 @@ body { h1, h2, h3 { font-weight: 600; + color: var(--color-default) } a {