Files
engel/app/layout.js
2026-04-21 07:37:18 +03:30

21 lines
481 B
JavaScript

import "./globals.css";
export const metadata = {
title: "DeutschAkademie Engel",
description: "Bilingual academy website built with Next.js.",
};
export default function RootLayout({ children }) {
return (
<html lang="en" className="scroll-smooth">
<head>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
/>
</head>
<body>{children}</body>
</html>
);
}