We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a04691 commit 9a1d784Copy full SHA for 9a1d784
src/app/layout.tsx
@@ -1,13 +1,8 @@
1
import type { Metadata } from "next";
2
-import {DM_Sans} from 'next/font/google'
3
import "./globals.css";
4
import Header from "@/components/AppLayout/Header";
5
import Footer from "@/components/AppLayout/Footer";
6
7
-const DmSans = DM_Sans({
8
- display: 'swap',
9
-})
10
-
11
export const metadata: Metadata = {
12
title: "Create Next App",
13
description: "Generated by create next app",
@@ -21,7 +16,7 @@ export default function RootLayout({
21
16
return (
22
17
<html lang="en">
23
18
<body
24
- className={`${DmSans.className} antialiased`}
19
+ className={` antialiased`}
25
20
>
26
<Header />
27
<main className="pt-12">{children}</main>
0 commit comments