Initial commit: Proyecto portal-requisicion-vacantes
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
import type { Metadata } from 'next'
|
||||
import { Toaster } from '@/components/ui/sonner'
|
||||
import './globals.css'
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Portal GLM | Requisiciones y Reclutamiento',
|
||||
description: 'Portal de Gestión de Requisiciones y Reclutamiento - GomezLee Marketing',
|
||||
icons: {
|
||||
icon: '/images/logo-glm.png',
|
||||
apple: '/images/logo-glm.png',
|
||||
},
|
||||
}
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
children: React.ReactNode
|
||||
}>) {
|
||||
return (
|
||||
<html lang="es" className="bg-background">
|
||||
<body className="font-sans antialiased" style={{ fontFamily: 'Arial, sans-serif' }}>
|
||||
{children}
|
||||
<Toaster />
|
||||
</body>
|
||||
</html>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user