4 Commits

Author SHA1 Message Date
20d3a39a9f Update src/app/layout.tsx 2026-03-06 14:40:02 +00:00
b3b61f1e03 Update src/app/styles/base.css 2026-03-06 14:39:14 +00:00
cc23b301a1 Update src/app/layout.tsx 2026-03-06 14:39:13 +00:00
9ee708dc02 Merge version_2 into main
Merge version_2 into main
2026-03-06 14:36:04 +00:00
2 changed files with 9 additions and 11 deletions

View File

@@ -1,17 +1,15 @@
import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import { Lato } from "next/font/google";
import "./globals.css";
const geist = Geist({
variable: "--font-geist-sans", subsets: ["latin"],
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
const lato = Lato({
variable: "--font-lato", subsets: ["latin"],
weight: ["100", "300", "400", "700", "900"],
});
export const metadata: Metadata = {
title: "Chef Portfolio", description: "Professional culinary services and fine dining experiences"};
title: "Chef Portfolio", description: "Professional culinary services and fine dining experiences"
};
export default function RootLayout({
children,
@@ -20,7 +18,7 @@ export default function RootLayout({
}) {
return (
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
<body className={`${lato.variable} antialiased`}>
{children}
<script

View File

@@ -11,7 +11,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-inter-tight), sans-serif;
font-family: var(--font-lato), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-inter-tight), sans-serif;
font-family: var(--font-lato), sans-serif;
}