The Blog rebuild

This commit is contained in:
Eli Winderickx
2025-12-13 07:12:14 +01:00
parent b9babf8cf0
commit 9db388dcc1
24 changed files with 49 additions and 12 deletions

View File

@@ -1,13 +1,13 @@
import "../styles/globals.css"
import { Work_Sans } from "@next/font/google"
import localFont from "@next/font/local"
// importing the Work Sans font with
// the Next.js 13 Font Optimization Feature
const workSans = Work_Sans({
weight: ["400", "700"],
style: ["normal", "italic"],
subsets: ["latin"],
})
const workSans = localFont({ src: '../public/fonts/WorkSans.ttf' })
// const workSans = Work_Sans({
// weight: ["400", "700"],
// style: ["normal", "italic"],
// subsets: ["latin"],
// })
function MyApp({ Component, pageProps }) {
return <main className={workSans.className}>