Merge version_2 into main #2

Merged
bender merged 2 commits from version_2 into main 2026-03-08 10:10:33 +00:00
2 changed files with 8 additions and 39 deletions

View File

@@ -1,50 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Manrope } 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 manrope = Manrope({
variable: "--font-manrope", subsets: ["latin"],
});
const dmSans = DM_Sans({
variable: "--font-dm-sans", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "The White Lotus | Luxury Mobile Bartending", description: "Elevated mobile bartending service for weddings, private events, and corporate celebrations. Precision-crafted cocktails and refined hospitality.", keywords: "luxury bartending, mobile bar service, wedding bartender, cocktail service, private events, craft cocktails, professional mixologist", openGraph: {
title: "The White Lotus | Luxury Mobile Bartending", description: "Experience elevated mobile bartending for your unforgettable events.", siteName: "The White Lotus", type: "website"},
twitter: {
card: "summary_large_image", title: "The White Lotus | Luxury Mobile Bartending", description: "Elevated mobile bartending for weddings, private events, and corporate celebrations."},
};
title: "The White Lotus - Luxury Mobile Bartending", description: "Elevated mobile bartending for unforgettable events"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${manrope.variable} ${dmSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1412,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -125,8 +125,8 @@ export default function LandingPage() {
description="Tell us about your event. We'll craft an unforgettable experience tailored to your vision."
background={{ variant: "plain" }}
useInvertedBackground={false}
inputPlaceholder="your@email.com"
buttonText="Request a Quote"
inputPlaceholder="event@example.com"
buttonText="Get Your Quote"
termsText="We respect your privacy. We'll be in touch within 24 hours."
tagClassName="text-sm tracking-widest"
titleClassName="text-4xl md:text-5xl tracking-tight"