Files
front-AT/app/layout.tsx
T

37 lines
912 B
TypeScript
Raw Normal View History

2025-08-18 10:37:48 -04:00
import type { Metadata } from "next";
2025-10-29 14:28:50 -06:00
import { Inter } from "next/font/google";
2025-09-26 16:56:07 -06:00
import Header from "./Components/layout/Header/Header";
import Footer from "./Components/layout/Footer/Footer";
2025-09-22 15:06:07 -06:00
2025-10-01 15:29:23 -06:00
import { ToastProvider } from "./Components/layout/ToastProvider";
2026-02-12 18:53:29 -06:00
import "./globals.css";
2025-08-18 10:37:48 -04:00
2025-10-29 14:28:50 -06:00
const inter = Inter({ subsets: ["latin"], weight: ["400", "700"] });
2025-08-18 10:37:48 -04:00
export const metadata: Metadata = {
2025-09-12 18:12:38 -06:00
title: "Servicio AT",
description: "Servicio de administracion de la FES Acatlan",
authors: [{ name: "FES Acatlán" }],
2025-09-12 20:40:17 -06:00
creator: "Lino,Carlos,Axel",
2025-08-18 10:37:48 -04:00
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
2025-09-02 19:50:17 -04:00
<html lang="es">
<body className={inter.className} suppressHydrationWarning>
2025-10-01 15:29:23 -06:00
<ToastProvider>
<Header />
<main>{children}</main>
<Footer />
</ToastProvider>
2025-08-18 10:37:48 -04:00
</body>
</html>
);
}
2025-09-22 14:53:19 -06:00
//IO