Files
front-AT/app/layout.tsx
T

43 lines
1.0 KiB
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";
import Header from "./Components/Header/Header";
import Footer from "./Components/Footer/Footer";
2025-09-22 15:06:07 -06:00
import FallingSquares from "./Components/visual/FallingSquares/FallingSquares";
2025-09-22 14:53:19 -06:00
import WavesBackground from "./Components/visual/Wave/wavesBack";
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-22 11:57:52 -06:00
<body className={poppins.variable}>
2025-09-02 19:50:17 -04:00
<Header />
<main>
2025-09-22 14:53:19 -06:00
<FallingSquares />
2025-09-12 18:12:38 -06:00
{children}
2025-09-05 14:17:26 -04:00
<WavesBackground />
2025-09-02 19:50:17 -04:00
</main>
<Footer />
2025-08-18 10:37:48 -04:00
</body>
</html>
);
}
2025-09-22 14:53:19 -06:00
//IO