1st
This commit is contained in:
20
app/layout.js
Normal file
20
app/layout.js
Normal 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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user