1
0
Fork 0
This repository has been archived on 2025-08-23. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
backup-websites-2023-12-13/sites/terraform-skoleni.cz/app/layout.tsx
Vojtech Mares 7b5d149ecc
feat: final commit
Signed-off-by: Vojtech Mares <iam@vojtechmares.com>
2023-12-13 18:20:21 +01:00

27 lines
600 B
TypeScript

import { Footer } from 'components/Footer';
import 'styles/global.css';
import { Metadata } from 'next';
export const metadata: Metadata = {
title: {
default: 'Terraform školení - Vojtěch Mareš',
template: '%s | Next.js App Router',
},
description:
'Terraform školení pro začátečníky i pokročilé | Školí Vojtěch Mareš - DevOps konzultant, lektor a mentor',
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="cs">
<body>
{children}
<Footer />
</body>
</html>
);
}