Skip to content

Commit

Permalink
switched font
Browse files Browse the repository at this point in the history
  • Loading branch information
emilkrebs committed Mar 17, 2024
1 parent 5ad30e9 commit 7703198
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 11 deletions.
5 changes: 0 additions & 5 deletions replacePaths.sh

This file was deleted.

5 changes: 1 addition & 4 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@

import { Montserrat } from 'next/font/google';
import './globals.css';
import Footer from './components/Footer';
import Navbar from './components/Navbar';
import { Metadata } from 'next';

const inter = Montserrat({ subsets: ['latin'] });
export const metadata: Metadata = {
title: 'Emil Krebs',
description: 'Emil Krebs Website',
Expand All @@ -26,7 +23,7 @@ export default function RootLayout({
<title>Emil Krebs</title>
</head>

<body className={inter.className}>
<body className='font-sans'>
<Navbar />
{children}

Expand Down
4 changes: 2 additions & 2 deletions tailwind.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ const config: Config = {
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {

fontFamily: {
sans: ['Montserrat', 'sans-serif'],
},
},
plugins: [],
Expand Down

0 comments on commit 7703198

Please sign in to comment.