Parity with starting state of RRv7 Tutorial Address Book

This commit is contained in:
2025-04-01 10:57:36 +02:00
parent cf2cd294ee
commit d2ec794846
10 changed files with 899 additions and 298 deletions

View File

@@ -1,20 +1,11 @@
import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import React from "react";
import "./globals.css";
const geistSans = Geist({
variable: "--font-geist-sans",
subsets: ["latin"],
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Create Next App",
description: "Generated by create next app",
title: "Next.js Address Book",
description: "From the RRv7 tutorial",
};
export default function RootLayout({
@@ -24,7 +15,7 @@ export default function RootLayout({
}>) {
return (
<html lang="en">
<body className={`${geistSans.variable} ${geistMono.variable}`}>
<body>
{children}
</body>
</html>