Update src/app/layout.tsx

This commit is contained in:
2026-03-05 17:11:59 +00:00
parent 187b9959b6
commit 3a0e67d4c3

View File

@@ -1,6 +1,11 @@
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./globals.css";
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Portfolio", description: "Creative Professional & Designer"
};
@@ -12,7 +17,7 @@ export default function RootLayout({
}) {
return (
<html lang="en">
<body>
<body className={inter.variable}>
{children}
<script