Enviar arquivos para "src/app"

This commit is contained in:
2024-11-24 08:59:12 -08:00
parent afdb67f21c
commit 3a6a3bce37
2 changed files with 158 additions and 0 deletions

12
src/app/layout.jsx Normal file
View File

@ -0,0 +1,12 @@
export const metadata = {
title: 'Nome do Site de Carros',
description: 'Descrição do site para SEO',
}
export default function RootLayout({ children }) {
return (
<html lang="pt">
<body>{children}</body>
</html>
)
}