11 Commits

Author SHA1 Message Date
d18caa808a Merge version_3 into main
Merge version_3 into main
2026-03-06 14:40:06 +00:00
20d3a39a9f Update src/app/layout.tsx 2026-03-06 14:40:02 +00:00
3b12f83710 Merge version_3 into main
Merge version_3 into main
2026-03-06 14:39:18 +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
0abbbfde6d Update src/app/page.tsx 2026-03-06 14:36:00 +00:00
837ffb2fbd Update src/app/layout.tsx 2026-03-06 14:35:59 +00:00
423e3d383a Merge version_1 into main
Merge version_1 into main
2026-03-06 14:34:01 +00:00
6706d0bca0 Merge version_1 into main
Merge version_1 into main
2026-03-06 14:32:50 +00:00
48c0e76630 Merge version_1 into main
Merge version_1 into main
2026-03-06 14:31:38 +00:00
3 changed files with 14 additions and 41 deletions

View File

@@ -1,52 +1,26 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Inter_Tight } from "next/font/google";
import { Lato } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const interTight = Inter_Tight({
variable: "--font-inter-tight", subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
const lato = Lato({
variable: "--font-lato", subsets: ["latin"],
weight: ["100", "300", "400", "700", "900"],
});
export const metadata: Metadata = {
title: "Fine Dining Chef | Culinary Excellence & Catering Services", description: "Experience exceptional fine dining with our award-winning chef. Specializing in private chef services, bespoke catering, and innovative cuisine.", keywords: "chef, private chef services, catering, fine dining, culinary excellence, event catering", openGraph: {
title: "Fine Dining Chef | Culinary Excellence", description: "Experience exceptional fine dining and bespoke catering services.", siteName: "Chef", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/chef-preparing-delicious-fish-close-up_23-2148516906.jpg", alt: "Fine dining chef"},
],
},
twitter: {
card: "summary_large_image", title: "Fine Dining Chef | Culinary Excellence", description: "Experience exceptional fine dining and bespoke catering.", images: [
"http://img.b2bpic.net/free-photo/chef-preparing-delicious-fish-close-up_23-2148516906.jpg"],
},
title: "Chef Portfolio", description: "Professional culinary services and fine dining experiences"
};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${interTight.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${lato.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1414,7 +1388,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -49,7 +49,7 @@ export default function ChefPortfolio() {
tagIcon={ChefHat}
background={{ variant: "glowing-orb" }}
buttons={[
{ text: "Book a Service", href: "contact" },
{ text: "Book Your Chef", href: "contact" },
{ text: "View Menu", href: "dishes" },
]}
imageSrc="http://img.b2bpic.net/free-photo/chef-preparing-delicious-fish-close-up_23-2148516906.jpg?_wi=1"

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;
}