File size: 319 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
import Image from 'next/image'
import { Inter } from 'next/font/google'
const inter = Inter({ subsets: ['latin'] })
export default function Page() {
return (
<>
<Image priority src="/favicon.ico" alt="favicon" width={16} height={16} />
<h1 className={inter.className}>Hello World</h1>
</>
)
}
|