This commit is contained in:
2026-04-21 07:37:18 +03:30
commit 96a79795c1
39 changed files with 3625 additions and 0 deletions

20
app/layout.js Normal file
View File

@@ -0,0 +1,20 @@
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>
);
}