Update src/app/layout.tsx

This commit is contained in:
2026-03-03 19:27:49 +00:00
parent 86fd66cd4f
commit 4fca796f17

View File

@@ -1,10 +1,11 @@
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import { Poppins } from "next/font/google";
import "./styles/variables.css";
import "./globals.css";
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
const poppins = Poppins({
variable: "--font-poppins", subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
export const metadata: Metadata = {
@@ -17,7 +18,7 @@ export default function RootLayout({
}) {
return (
<html lang="en">
<body className={inter.variable}>
<body className={poppins.variable}>
{children}
<script