Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| b70f859591 | |||
| 0c0aafe713 | |||
| 1c7ba96e04 | |||
| 2531163b9b | |||
| 4268a403eb | |||
| 7b5fafa88b | |||
| 35dcf8cb21 |
@@ -1,54 +1,21 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import { Montserrat } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-halant", subsets: ["latin"],
|
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const montserrat = Montserrat({
|
|
||||||
variable: "--font-montserrat", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Luxe Café | Premium Specialty Coffee Experience", description: "Discover exceptional single-origin specialty coffee crafted by master baristas. Premium beans, artisan roasting, and pure excellence in every cup.", keywords: "specialty coffee, premium cafe, artisan roasting, single origin, luxury coffee shop", robots: {
|
title: "Create Next App", description: "Generated by create next app"
|
||||||
index: true,
|
|
||||||
follow: true,
|
|
||||||
},
|
|
||||||
openGraph: {
|
|
||||||
title: "Luxe Café | Premium Specialty Coffee", description: "Experience the finest specialty coffee crafted with premium beans and expert precision.", type: "website", siteName: "Luxe Café", images: [
|
|
||||||
{
|
|
||||||
url: "http://img.b2bpic.net/free-photo/young-attractive-woman-striped-trench-coat-happily-talking-cellphone-sitting-near-big-window-while-spending-time-modern-cafe_574295-4851.jpg", alt: "Luxe Café Premium Interior"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "Luxe Café | Premium Specialty Coffee", description: "Exceptional coffee crafted with passion and precision.", images: ["http://img.b2bpic.net/free-photo/young-attractive-woman-striped-trench-coat-happily-talking-cellphone-sitting-near-big-window-while-spending-time-modern-cafe_574295-4851.jpg"],
|
|
||||||
},
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${halant.variable} ${inter.variable} ${montserrat.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1416,7 +1383,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -66,7 +66,7 @@ export default function LandingPage() {
|
|||||||
|
|
||||||
<div id="about" data-section="about">
|
<div id="about" data-section="about">
|
||||||
<AboutMetric
|
<AboutMetric
|
||||||
title="Where Passion Meets Perfection in Every Cup"
|
title="Where Passion Meets Perfection: 25+ Years of Excellence"
|
||||||
metrics={[
|
metrics={[
|
||||||
{ icon: Leaf, label: "Premium Sourced Beans", value: "18+ Origins" },
|
{ icon: Leaf, label: "Premium Sourced Beans", value: "18+ Origins" },
|
||||||
{ icon: Award, label: "Craft Excellence", value: "Award Winning" },
|
{ icon: Award, label: "Craft Excellence", value: "Award Winning" },
|
||||||
|
|||||||
Reference in New Issue
Block a user