altarra/src/app/layout.tsx
2026-01-08 18:18:26 +00:00

22 lines
651 B
TypeScript

import './globals.css'
import type { Metadata } from 'next'
import { Inter } from 'next/font/google'
import Footer from '@/components/Footer'
const inter = Inter({ subsets: ['latin'] })
export const metadata: Metadata = {
title: 'Altarra - Submissão de Alturas',
description: 'Submissão de alturas de rack para Liftingcast',
}
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="pt-PT">
<body className={`${inter.className} flex flex-col min-h-screen bg-white text-gray-900`}>
<main className="flex-1">{children}</main>
<Footer />
</body>
</html>
)
}