next.js/test/e2e/app-dir/metadata-navigation/app/layout.tsx
layout.tsx15 lines285 B
export default function Layout({ children }) {
  return (
    <html>
      <head></head>
      <body>{children}</body>
    </html>
  )
}

export const metadata = {
  title: 'this is the layout title',
  description: 'this is the layout description',
  keywords: ['nextjs', 'react'],
}
Quest for Codev2.0.0
/
SIGN IN