Files
formularios_front/src/app/layout.tsx
T

56 lines
1.6 KiB
TypeScript
Raw Normal View History

2025-04-01 09:35:40 -06:00
import type { Metadata } from "next";
2025-04-01 09:50:01 -06:00
import { Roboto } from "next/font/google";
2025-04-01 09:35:40 -06:00
2025-04-01 09:50:01 -06:00
import "bootstrap-icons/font/bootstrap-icons.css";
import "@/styles/sass/bootstrap.scss";
import BootstrapClient from "@/components/bootstrap-client";
2025-04-03 21:05:11 -06:00
import { Toaster } from "react-hot-toast";
2025-04-01 09:35:40 -06:00
2025-04-01 09:50:01 -06:00
const roboto = Roboto({
weight: ["100", "300", "400", "500", "700", "900"],
2025-04-01 09:35:40 -06:00
subsets: ["latin"],
});
export const metadata: Metadata = {
2025-04-07 19:55:37 -06:00
title: "Registros - Eventos FES Acatlán",
description: "Plataforma para consultar y registrarse a eventos organizados dentro de la FES Acatlán. Completa un formulario para confirmar tu asistencia.",
2025-04-01 09:50:01 -06:00
icons: {
icon: "/unam.png",
},
2025-04-07 19:55:37 -06:00
keywords: ["eventos", "FES Acatlán", "UNAM", "registro", "formulario", "asistencia", "registros"],
authors: [{ name: "FES Acatlán" }],
creator: "FES Acatlán",
metadataBase: new URL("https://registro.acatlan.unam.mx/"), // cámbialo por el dominio real
openGraph: {
title: "Registros - Eventos FES Acatlán",
description: "Consulta los eventos disponibles en la FES Acatlán y regístrate para asistir.",
url: "https://registro.acatlan.unam.mx/",
siteName: "Registros FES Acatlán",
images: [
{
url: "/ogimage.png",
alt: "Logo UNAM",
},
],
locale: "es_MX",
type: "website",
},
2025-04-01 09:35:40 -06:00
};
2025-04-07 19:55:37 -06:00
2025-04-01 09:35:40 -06:00
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
2025-04-01 09:50:01 -06:00
<body className={roboto.className}>
<BootstrapClient />
2025-04-03 21:05:11 -06:00
<Toaster />
2025-04-01 09:35:40 -06:00
{children}
</body>
</html>
);
}