Files

40 lines
938 B
TypeScript
Raw Permalink 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
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 = {
2026-03-03 17:36:06 -06:00
title: {
default: "Servicio AT",
template: "Servicio AT | %s",
},
2025-09-12 18:12:38 -06:00
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",
2026-03-03 17:36:06 -06:00
icons: {
2026-06-05 15:38:48 -05:00
icon: [{ url: "/icon.ico" }, { url: "/icon.png" }, { url: "/icon.svg" }],
2026-02-24 18:29:42 -06:00
},
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>
2026-03-03 17:36:06 -06:00
<Header />
<main>{children}</main>
<Footer />
2025-08-18 10:37:48 -04:00
</body>
</html>
);
}
2025-09-22 14:53:19 -06:00
//IO