diff --git a/app/layout.tsx b/app/layout.tsx index 976eb90..696927d 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,6 +1,9 @@ import type { Metadata } from "next"; import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; +import Header from "@/components/layout/Header"; +import Footer from "@/components/layout/Footer"; +import Container from "@/components/layout/Container"; const geistSans = Geist({ variable: "--font-geist-sans", @@ -13,8 +16,7 @@ const geistMono = Geist_Mono({ }); export const metadata: Metadata = { - title: "Create Next App", - description: "Generated by create next app", + title: "Angel Mankel — Software Engineer" }; export default function RootLayout({ @@ -27,7 +29,11 @@ export default function RootLayout({ lang="en" className={`${geistSans.variable} ${geistMono.variable} h-full antialiased`} > - {children} + +
+ {children} +