Commit 6acd11e7 authored by Vũ Đình Nguyên's avatar Vũ Đình Nguyên

first commit

parent a9a4088f
import type { Metadata } from "next";
import React from "react";
export const metadata: Metadata = {
title: "Create Next App",
description: "Generated by create next app",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return <main className="w-full">{children}</main>;
}
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import './styles.css' import './styles.css'
import{Providers} from './_providers' import{Providers} from './_providers'
import React from 'react' import React from 'react'
const geistSans = Geist({
variable: "--font-geist-sans",
subsets: ["latin"],
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono",
subsets: ["latin"],
});
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Create Next App", title: "Create Next App",
...@@ -28,7 +19,6 @@ export default function RootLayout({ ...@@ -28,7 +19,6 @@ export default function RootLayout({
return ( return (
<html lang="en"> <html lang="en">
<body <body
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
> >
<Providers>{children}</Providers> <Providers>{children}</Providers>
</body> </body>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment