feat: set up basic app shell components

This commit is contained in:
2026-05-27 18:29:55 -07:00
parent dd8cbe1c45
commit 9d36e13fb4
7 changed files with 85 additions and 67 deletions
+9 -3
View File
@@ -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`}
>
<body className="min-h-full flex flex-col">{children}</body>
<body className="min-h-full flex flex-col">
<Header />
<Container>{children}</Container>
<Footer />
</body>
</html>
);
}