I'm new to next.js its an amazing development tool, but as I'm new here so facing some difficulties so my problem is I'm trying to google icons and its unable to use without cdn link here is my root file. here is my root file:
import './globals.css'
import { Inter } from 'next/font/google'
const inter = Inter({ subsets: ['latin'] })
export const metadata = {
title: 'Netflix',
description: 'A movie app',
}
export default function RootLayout({ children }) {
return (
<html lang="en">
<body className={`${inter.className} bg-black `} >
{children}</body>
</html>
)
}