first commit
This commit is contained in:
@ -1,16 +1,16 @@
|
|||||||
// import { Geist, Geist_Mono } from "next/font/google";
|
|
||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
|
import { Geist, Geist_Mono } from "next/font/google";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
|
|
||||||
// const geistSans = Geist({
|
const geistSans = Geist({
|
||||||
// variable: "--font-geist-sans",
|
variable: "--font-geist-sans",
|
||||||
// subsets: ["latin"],
|
subsets: ["latin"],
|
||||||
// });
|
});
|
||||||
|
|
||||||
// const geistMono = Geist_Mono({
|
const geistMono = Geist_Mono({
|
||||||
// variable: "--font-geist-mono",
|
variable: "--font-geist-mono",
|
||||||
// subsets: ["latin"],
|
subsets: ["latin"],
|
||||||
// });
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Create Next App",
|
title: "Create Next App",
|
||||||
@ -25,11 +25,10 @@ export default function RootLayout({
|
|||||||
return (
|
return (
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<body
|
<body
|
||||||
// className={`${geistSans.variable} ${geistMono.variable} antialiased`}
|
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
|
||||||
className="antialiased"
|
|
||||||
>
|
>
|
||||||
{children}
|
{children}
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user