Skip to content

Commit

Permalink
fixed layout.tsx linting bug
Browse files Browse the repository at this point in the history
  • Loading branch information
davidknoerzer committed Feb 9, 2024
1 parent 5a21e8a commit d3985ce
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ import type { Metadata } from "next";
import { Rubik, Nanum_Gothic_Coding } from "next/font/google";
import "./globals.css";

export const font = Rubik({
weight: ['500'],
subsets: ['latin']
})
const font = Rubik({
weight: ["500"],
subsets: ["latin"],
});
export const codingFont = Nanum_Gothic_Coding({
weight: ['400'],
subsets: ['latin']
})
weight: ["400"],
subsets: ["latin"],
});

export const metadata: Metadata = {
title: "David's Portfolio",
Expand Down

0 comments on commit d3985ce

Please sign in to comment.