File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11import type { Metadata } from "next" ;
2- import { Geist , Geist_Mono } from "next/font/google" ;
2+ import { Inter } from "next/font/google" ;
33import "./globals.css" ;
44
5- const geistSans = Geist ( {
6- variable : "--font-geist-sans" ,
7- subsets : [ "latin" ] ,
8- } ) ;
9-
10- const geistMono = Geist_Mono ( {
11- variable : "--font-geist-mono" ,
12- subsets : [ "latin" ] ,
13- } ) ;
5+ const inter = Inter ( { subsets : [ "latin" ] } ) ;
146
157export const metadata : Metadata = {
16- title : "Create Next App " ,
17- description : "Generated by create next app " ,
8+ title : "Attarchi Portfolio " ,
9+ description : "Professional portfolio showcasing full-stack development expertise " ,
1810} ;
1911
2012export default function RootLayout ( {
2113 children,
22- } : Readonly < {
23- children : React . ReactNode ;
24- } > ) {
14+ } : {
15+ children : React . ReactNode
16+ } ) {
2517 return (
2618 < html lang = "en" >
27- < body
28- className = { `${ geistSans . variable } ${ geistMono . variable } antialiased` }
29- >
30- { children }
31- </ body >
19+ < body className = { inter . className } > { children } </ body >
3220 </ html >
3321 ) ;
3422}
You can’t perform that action at this time.
0 commit comments