import type { Metadata } from "next"; import { Inter } from "next/font/google"; import "./globals.css"; import Link from "next/link"; import Image from "next/image"; import Script from "next/script"; import { Navigation } from "@/components/layout/Navigation"; import { SubnavBar } from "@/components/layout/SubnavBar"; import InfoBanner from "@/components/layout/InfoBanner"; const inter = Inter({ subsets: ["latin"], variable: "--font-inter" }); export const metadata: Metadata = { title: "Associação Portuguesa de Powerlifting (APP)", description: "Website da APP com acessibilidade WCAG 2.1 AA e suporte bilingue", }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return (
{/* Skip to main content link */} Saltar para o conteúdo {/* Header Navigation */}