Skip to content

Commit

Permalink
update font
Browse files Browse the repository at this point in the history
  • Loading branch information
kochie committed Jun 19, 2023
1 parent 60f3b53 commit f01f415
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ import { config } from '@fortawesome/fontawesome-svg-core'
import '../assets/styles/global.css'
import 'tailwindcss/tailwind.css'
import '@fortawesome/fontawesome-svg-core/styles.css'
import { Source_Sans_Pro } from 'next/font/google'
import { Source_Sans_3 } from 'next/font/google'

config.autoAddCss = false

const sourceSansPro = Source_Sans_Pro({
const sourceSans3 = Source_Sans_3({
subsets: ['latin'],
display: 'swap',
weight: ['400', '700'],
Expand All @@ -20,7 +20,7 @@ export default function RootLayout({
}) {
return (
<html lang="en">
<body className={sourceSansPro.className}>
<body className={sourceSans3.className}>
{children}
<Script
data-name="BMC-Widget"
Expand Down

1 comment on commit f01f415

@vercel
Copy link

@vercel vercel bot commented on f01f415 Jun 19, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

me.kochie.io – ./

mekochieio-git-main-kochie1.vercel.app
mekochieio-kochie1.vercel.app
robertkoch.me
me.kochie.io

Please sign in to comment.