feat: change colour scheme; add cv details
This commit is contained in:
parent
296fa4e28a
commit
ef9aeb0516
3 changed files with 8 additions and 6 deletions
|
@ -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
|
||||
|
|
|
@ -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 (
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Add table
Reference in a new issue