Merge version_2 into main #2

Merged
bender merged 2 commits from version_2 into main 2026-03-06 06:41:32 +00:00
2 changed files with 8 additions and 48 deletions

View File

@@ -1,59 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { DM_Sans } 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 dmSans = DM_Sans({
variable: "--font-dm-sans", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Private Chef Services | Personalized Gourmet Dining", description: "Experience restaurant-quality cuisine in your home. Customized menus, event catering, and meal planning from award-winning private chef. Request a consultation today.", keywords: "private chef, personal chef, home chef service, event catering, gourmet dining, meal planning, luxury catering", metadataBase: new URL("https://privatechefservices.com"),
alternates: {
canonical: "https://privatechefservices.com"
},
openGraph: {
title: "Private Chef Services | Personalized Gourmet Dining", description: "Experience restaurant-quality cuisine in your home. Customized menus for your taste and dietary preferences.", url: "https://privatechefservices.com", siteName: "Private Chef Services", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/precision-creativity-shine-as-chef-sprinkles-sliced-veggies-onto-dish_482257-124472.jpg", alt: "Gourmet dining experience"
}
]
},
twitter: {
card: "summary_large_image", title: "Private Chef Services | Personalized Gourmet Dining", description: "Experience restaurant-quality cuisine in your home.", images: ["http://img.b2bpic.net/free-photo/precision-creativity-shine-as-chef-sprinkles-sliced-veggies-onto-dish_482257-124472.jpg"]
},
robots: {
index: true,
follow: true
}
};
title: "Private Chef Services | Gourmet Dining at Home", description: "Premium private chef services for intimate dinners, event catering, and meal planning. Award-winning culinary excellence delivered to your table."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${dmSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1421,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -198,8 +198,8 @@ export default function LandingPage() {
title="Let's Create Your Perfect Culinary Experience"
description="Whether you're planning an intimate dinner, corporate event, or seeking ongoing meal services, our team is ready to discuss your vision and craft something extraordinary."
buttons={[
{ text: "Request a Consultation", href: "#contact" },
{ text: "Call Us Today", href: "#" }
{ text: "Schedule Free Consultation", href: "#contact" },
{ text: "Get Custom Quote", href: "#" }
]}
buttonAnimation="slide-up"
background={{ variant: "radial-gradient" }}