1- import type { Metadata , Viewport } from "next" ;
2- import { Poppins } from "next/font/google" ;
3- import "./globals.css" ;
1+ import type { Metadata , Viewport } from 'next' ;
2+ import { Inter } from 'next/font/google' ;
3+ import Navbar from './_components/Navbar' ;
4+ import './globals.css' ;
45
5- const poppinsSans = Poppins ( {
6- variable : "--font-poppins-sans" ,
7- subsets : [ "latin" ] ,
8- weight : [ "400" , "700" ] ,
9- } ) ;
10-
11- const poppinsMono = Poppins ( {
12- variable : "--font-poppins-mono" ,
13- subsets : [ "latin" ] ,
14- weight : [ "400" , "700" ] ,
15- style : [ "normal" ] ,
6+ const inter = Inter ( {
7+ variable : '--font-inter' ,
8+ subsets : [ 'latin' ] ,
169} ) ;
1710
1811export const metadata : Metadata = {
19- title : "Cobalt" ,
20- description : "Experience the next level of Skyblock and maximize your grinding potential with Cobalt." ,
12+ title : 'Cobalt' ,
13+ description :
14+ 'Experience the next level of Skyblock and maximize your grinding potential with Cobalt.' ,
2115
2216 openGraph : {
2317 title : 'Cobalt' ,
24- description : 'Experience the next level of Skyblock and maximize your grinding potential with Cobalt.' ,
18+ description :
19+ 'Experience the next level of Skyblock and maximize your grinding potential with Cobalt.' ,
2520 url : 'https://cobalt.quiteboring.dev' ,
2621 siteName : 'cobalt.quiteboring.dev' ,
2722 locale : 'en_US' ,
@@ -31,18 +26,17 @@ export const metadata: Metadata = {
3126
3227export const viewport : Viewport = {
3328 themeColor : '#4682B4' ,
34- }
35-
29+ } ;
30+
3631export default function RootLayout ( {
3732 children,
3833} : Readonly < {
3934 children : React . ReactNode ;
4035} > ) {
4136 return (
4237 < html lang = "en" >
43- < body
44- className = { `${ poppinsSans . variable } ${ poppinsMono . variable } antialiased` }
45- >
38+ < body className = { `${ inter . variable } antialiased overflow-x-hidden flex flex-col min-h-screen` } >
39+ < Navbar />
4640 { children }
4741 </ body >
4842 </ html >
0 commit comments