Next JS tutorial in Hindi #25 Font Optimization in next.js 13.4

preview_player
Показать описание

In this next js tutorial video, we learn how to do font Optimization a in next js 13.4 in Hindi. this course is made by Anil Sidhu in the Hindi language.

points of video
What is Dynamic meta data?
What is the use of generateMetadata?
How to use generateMetadata?
Wrong way to use meta data.
Use generateMetadata with multiple route
Interview Question

Рекомендации по теме
Комментарии
Автор

sir maine aapki node js wali series dekh ke aaj me node js devloper ban gaya hu thank you sir

nitinbhalani
Автор

For local font non google font;

import localFont from 'next/font/local'

// Font files can be colocated inside of `pages`
const myFont = localFont({ src: './my-font.woff2' })

export default function MyApp({ Component, pageProps }) {
return (
<main className={myFont.className}>
<Component {...pageProps} />
</main>
)
}

faizanetaajushshariah
Автор

css k ma kaisy use krengy fonts? or aik sa ziada fonts use krny ho tw kaisy use krengy?

shahrukhnasir
Автор

Sir Please Bring project videos as learing by project is easy rather just wathing theory

dreamerb
Автор

sir hum log scss ya sass waghera use nahi karsakte next js mein ?

zainyzain
Автор

agar diffrent font weight use karna he to kese krenge like bold medium semi bold

AnilSharma-ostp
Автор

fun fact every youtuber get example from documentation without codewithharry😂

MoazzamFayyaz-ez
Автор

In this video can apply google font for an element, i want to apply whole my website ?

php_master
Автор

<h1 className={roboto.className} > next.js</h1>
sir why we use .className
and className ka mtlb kya h

arjunnegi