Con la marca incorporada primera versión
This commit is contained in:
@@ -1,5 +1,7 @@
|
||||
import type { Metadata, Viewport } from 'next'
|
||||
import './globals.css'
|
||||
import { SurveyHeader } from '@/components/survey-header'
|
||||
import { SurveyFooter } from '@/components/survey-footer'
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Mapeo de Cuidadores',
|
||||
@@ -17,7 +19,11 @@ export const viewport: Viewport = {
|
||||
export default function RootLayout({ children }: { children: React.ReactNode }) {
|
||||
return (
|
||||
<html lang="es">
|
||||
<body>{children}</body>
|
||||
<body>
|
||||
<SurveyHeader />
|
||||
<div className="layout-content">{children}</div>
|
||||
<SurveyFooter />
|
||||
</body>
|
||||
</html>
|
||||
)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user