Files
front-AT/app/layout.tsx
T

38 lines
839 B
TypeScript
Raw Normal View History

2025-08-18 10:37:48 -04:00
import type { Metadata } from "next";
2025-09-02 19:50:17 -04:00
import { Poppins } 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-09-22 14:53:19 -06:00
import "./globals.css";
2025-08-18 10:37:48 -04:00
2025-09-02 19:50:17 -04:00
const poppins = Poppins({
2025-09-12 18:12:38 -06:00
variable: "--font-poppins",
2025-08-18 10:37:48 -04:00
subsets: ["latin"],
2025-09-12 18:12:38 -06:00
weight: ["400", "600", "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">
2025-09-28 01:59:16 -06:00
<body className={poppins.variable} suppressHydrationWarning>
2025-09-02 19:50:17 -04:00
<Header />
2025-09-24 14:05:51 -06:00
<main>{children}</main>
2025-09-02 19:50:17 -04:00
<Footer />
2025-08-18 10:37:48 -04:00
</body>
</html>
);
}
2025-09-22 14:53:19 -06:00
//IO