6 Commits

Author SHA1 Message Date
384e3cbb42 Merge version_3 into main
Merge version_3 into main
2026-03-08 10:14:16 +00:00
e1a844e328 Update src/app/page.tsx 2026-03-08 10:14:12 +00:00
31327412b2 Merge version_2 into main
Merge version_2 into main
2026-03-08 10:10:32 +00:00
1564f8a31e Update src/app/page.tsx 2026-03-08 10:10:27 +00:00
e2b4d77852 Update src/app/layout.tsx 2026-03-08 10:10:27 +00:00
7abec9c41c Merge version_1 into main
Merge version_1 into main
2026-03-08 10:01:26 +00:00
2 changed files with 9 additions and 40 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

@@ -41,7 +41,7 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroBillboardScroll
title="The White Lotus"
description="Elevated Mobile Bartending for Unforgettable Events"
description="Craft cocktails that elevate your guests' experience—delivered with elegance to your venue"
background={{ variant: "plain" }}
imageSrc="http://img.b2bpic.net/free-vector/wedding-chair-reserved-sign-template_742173-28075.jpg"
imageAlt="The White Lotus luxury bartending logo"
@@ -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"