Merge version_3 into main
Merge version_3 into main
This commit was merged in pull request #2.
This commit is contained in:
@@ -1,54 +1,23 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Figtree } 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"],
|
||||
});
|
||||
import "./styles/variables.css";
|
||||
import "./styles/base.css";
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const figtree = Figtree({
|
||||
variable: "--font-figtree", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Caramella | Premium Hookah Lounge | Lebanese Heritage", description: "Experience authentic Lebanese hookah at Caramella. Premium flavors, elegant ambiance, and exceptional hospitality. A taste of Lebanon closer than you think.", keywords: "hookah lounge, shisha bar, Lebanese, premium tobacco, cafe, relaxation, Mediterranean", robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
openGraph: {
|
||||
title: "Caramella | Premium Hookah Lounge", description: "A taste of Lebanon closer than you think. Experience premium hookah in an elegant, welcoming atmosphere.", siteName: "Caramella", type: "website", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/ramadan-concept-with-glasses_23-2147791754.jpg", alt: "Caramella Premium Hookah Lounge"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Caramella | Premium Hookah Lounge", description: "A taste of Lebanon closer than you think.", images: ["http://img.b2bpic.net/free-photo/ramadan-concept-with-glasses_23-2147791754.jpg"],
|
||||
},
|
||||
};
|
||||
title: "Caramella - Premium Hookah Lounge", description: "Experience authentic Lebanese hookah culture at Caramella. Premium flavors, luxurious ambiance, and exceptional hospitality."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${figtree.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.variable}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1416,7 +1385,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -16,7 +16,7 @@ export default function LandingPage() {
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="expand-hover"
|
||||
defaultTextAnimation="background-highlight"
|
||||
borderRadius="soft"
|
||||
borderRadius="rounded"
|
||||
contentWidth="smallMedium"
|
||||
sizing="largeSmallSizeMediumTitles"
|
||||
background="noise"
|
||||
@@ -220,4 +220,4 @@ export default function LandingPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -13,12 +13,12 @@
|
||||
--background: #fffefe;
|
||||
--card: #f6f7f4;
|
||||
--foreground: #080908;
|
||||
--primary-cta: #ff8c42;
|
||||
--primary-cta: #ff5a00;
|
||||
--primary-cta-text: #f7f6f7;
|
||||
--secondary-cta: #e7eecd;
|
||||
--secondary-cta-text: #0c1325;
|
||||
--accent: #ff9d5c;
|
||||
--background-accent: #ffb380;
|
||||
--accent: #ff6b1a;
|
||||
--background-accent: #ff8533;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user