Merge version_2 into main #2
@@ -1,55 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Open_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 openSans = Open_Sans({
|
||||
variable: "--font-open-sans", subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Café Elegance - Premium Artisanal Coffee", description: "Discover exceptional single-origin coffee blends sourced ethically from the world's finest plantations. Experience the art of coffee at Café Elegance.", keywords: "premium coffee, artisanal coffee, specialty coffee, coffee shop, ethically sourced, single-origin coffee", openGraph: {
|
||||
title: "Café Elegance - Premium Artisanal Coffee", description: "Experience exceptional coffee crafted with passion. Discover our award-winning blends and premium café ambiance.", siteName: "Café Elegance", type: "website", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/love-attraction_1098-13609.jpg", alt: "Café Elegance premium coffee experience"
|
||||
}
|
||||
]
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Café Elegance - Premium Artisanal Coffee", description: "Discover exceptional coffee crafted with passion", images: ["http://img.b2bpic.net/free-photo/white-coffee-roasted-beans-black_1303-1937.jpg"]
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true
|
||||
}
|
||||
};
|
||||
title: "Café Elegance", description: "Premium artisanal coffee and dining experience"};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1417,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -161,14 +161,14 @@ export default function LandingPage() {
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplitForm
|
||||
title="Get In Touch"
|
||||
description="Have questions about our coffee or want to reserve a table? We'd love to hear from you. Reach out today and let's start a conversation."
|
||||
title="Questions about our coffee? Ready to reserve a table?"
|
||||
description="Let us know what brings you here. Whether you're curious about our premium blends or want to book a memorable dining experience, we're here to help. Fill out the form below and we'll get back to you promptly."
|
||||
inputs={[
|
||||
{ name: "name", type: "text", placeholder: "Your Name", required: true },
|
||||
{ name: "email", type: "email", placeholder: "Your Email", required: true },
|
||||
{ name: "phone", type: "tel", placeholder: "Your Phone", required: false }
|
||||
{ name: "inquiry_type", type: "text", placeholder: "Coffee Questions or Table Reservation", required: true }
|
||||
]}
|
||||
textarea={{ name: "message", placeholder: "Tell us about your interest or reservation request...", rows: 5, required: true }}
|
||||
textarea={{ name: "message", placeholder: "Tell us about your coffee preferences or reservation details...", rows: 5, required: true }}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/girls-toasting-with-cups-coffee-covered-with-blanket_1153-2007.jpg"
|
||||
imageAlt="Cozy café atmosphere with warm lighting"
|
||||
mediaAnimation="slide-up"
|
||||
|
||||
Reference in New Issue
Block a user