From d3985ce0ce0e217d24be859a0ade803394af3bcc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Kn=C3=B6rzer?= <33221434+davidknoerzer@users.noreply.github.com> Date: Fri, 9 Feb 2024 03:35:02 +0100 Subject: [PATCH] fixed layout.tsx linting bug --- src/app/layout.tsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index d193cb3..b8f6ae4 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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",