UNPKG

@nadeshikon/plugin-nextjs

Version:
18 lines (16 loc) 374 B
import Image from 'next/image' import testPng from '../images/test.png' export default function Layout({ children }) { return ( <html> <head> <title>Hello World</title> </head> <body> <h2>app-layout</h2> <Image id="app-layout" src={testPng} quality={85} /> {children} </body> </html> ) }