6 Commits

Author SHA1 Message Date
e1ba89ea9d Update src/app/styles/variables.css 2026-03-06 22:27:40 +00:00
54e28784a9 Update src/app/page.tsx 2026-03-06 22:27:40 +00:00
363efd44b5 Update src/app/layout.tsx 2026-03-06 22:27:39 +00:00
66077e00b9 Merge version_2 into main
Merge version_2 into main
2026-03-06 22:25:08 +00:00
d038fb34e5 Update src/app/styles/variables.css 2026-03-06 22:25:04 +00:00
03c40dd240 Update src/app/page.tsx 2026-03-06 22:25:04 +00:00
3 changed files with 53 additions and 66 deletions

View File

@@ -1,54 +1,23 @@
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 { Figtree } from "next/font/google"; import "./styles/variables.css";
import "./globals.css"; import "./styles/base.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({ const inter = Inter({
variable: "--font-inter", subsets: ["latin"], variable: "--font-inter", subsets: ["latin"],
}); });
const figtree = Figtree({
variable: "--font-figtree", subsets: ["latin"],
});
export const metadata: Metadata = { 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: { title: "Caramella - Premium Hookah Lounge", description: "Experience authentic Lebanese hookah culture at Caramella. Premium flavors, luxurious ambiance, and exceptional hospitality."};
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"],
},
};
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.variable}>{children}
<body
className={`${halant.variable} ${inter.variable} ${figtree.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1416,7 +1385,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -16,7 +16,7 @@ export default function LandingPage() {
<ThemeProvider <ThemeProvider
defaultButtonVariant="expand-hover" defaultButtonVariant="expand-hover"
defaultTextAnimation="background-highlight" defaultTextAnimation="background-highlight"
borderRadius="soft" borderRadius="rounded"
contentWidth="smallMedium" contentWidth="smallMedium"
sizing="largeSmallSizeMediumTitles" sizing="largeSmallSizeMediumTitles"
background="noise" background="noise"
@@ -47,11 +47,14 @@ export default function LandingPage() {
background={{ variant: "downward-rays-static" }} background={{ variant: "downward-rays-static" }}
avatars={[ avatars={[
{ {
src: "http://img.b2bpic.net/free-photo/front-view-smiley-man-with-backpack_23-2149915917.jpg", alt: "Satisfied customer"}, src: "http://img.b2bpic.net/free-photo/front-view-smiley-man-with-backpack_23-2149915917.jpg", alt: "Satisfied customer"
},
{ {
src: "http://img.b2bpic.net/free-photo/smiley-athletic-woman-stretching-by-beach_23-2148781848.jpg", alt: "Happy guest"}, src: "http://img.b2bpic.net/free-photo/smiley-athletic-woman-stretching-by-beach_23-2148781848.jpg", alt: "Happy guest"
},
{ {
src: "http://img.b2bpic.net/free-photo/portrait-outdoors-business-man-smiles_23-2148763856.jpg", alt: "Returning visitor"}, src: "http://img.b2bpic.net/free-photo/portrait-outdoors-business-man-smiles_23-2148763856.jpg", alt: "Returning visitor"
},
]} ]}
avatarText="Loved by hundreds of guests" avatarText="Loved by hundreds of guests"
buttons={[ buttons={[
@@ -67,7 +70,8 @@ export default function LandingPage() {
<TextSplitAbout <TextSplitAbout
title="About Caramella" title="About Caramella"
description={[ description={[
"Caramella is more than a hookah lounge—it's a gateway to Lebanon's rich cultural heritage. Named after the Italian word for candy, we celebrate the sweet experiences of life through premium shisha, carefully curated flavors, and warm Mediterranean hospitality.", "Every detail at Caramella reflects our commitment to authenticity and excellence. From our hand-selected tobacco blends sourced directly from Lebanon to our thoughtfully designed lounge spaces, we create an atmosphere where guests can unwind, connect, and savor the moment.", "Whether you're seeking a peaceful escape or a social gathering with friends, Caramella offers the perfect setting. Our knowledgeable staff ensures every visit is memorable, making us the premier destination for hookah enthusiasts and newcomers alike."]} "Caramella is more than a hookah lounge—it's a gateway to Lebanon's rich cultural heritage. Named after the Italian word for candy, we celebrate the sweet experiences of life through premium shisha, carefully curated flavors, and warm Mediterranean hospitality.", "Every detail at Caramella reflects our commitment to authenticity and excellence. From our hand-selected tobacco blends sourced directly from Lebanon to our thoughtfully designed lounge spaces, we create an atmosphere where guests can unwind, connect, and savor the moment.", "Whether you're seeking a peaceful escape or a social gathering with friends, Caramella offers the perfect setting. Our knowledgeable staff ensures every visit is memorable, making us the premier destination for hookah enthusiasts and newcomers alike."
]}
buttons={[{ text: "Learn More", href: "#contact" }]} buttons={[{ text: "Learn More", href: "#contact" }]}
buttonAnimation="slide-up" buttonAnimation="slide-up"
showBorder={true} showBorder={true}
@@ -83,13 +87,16 @@ export default function LandingPage() {
features={[ features={[
{ {
id: "1", title: "Premium Flavor Selection", author: "Curated Collection", description: "Explore our extensive menu of hand-selected tobacco blends, featuring exclusive flavors from Lebanon and around the world. Each blend is chosen for its quality, aroma, and unique character.", tags: ["Authentic", "Premium"], id: "1", title: "Premium Flavor Selection", author: "Curated Collection", description: "Explore our extensive menu of hand-selected tobacco blends, featuring exclusive flavors from Lebanon and around the world. Each blend is chosen for its quality, aroma, and unique character.", tags: ["Authentic", "Premium"],
imageSrc: "http://img.b2bpic.net/free-photo/slice-caramel-cake-with-lemonade-wooden-platter_114579-18542.jpg", imageAlt: "Premium hookah tobacco flavor varieties"}, imageSrc: "http://img.b2bpic.net/free-photo/slice-caramel-cake-with-lemonade-wooden-platter_114579-18542.jpg", imageAlt: "Premium hookah tobacco flavor varieties"
},
{ {
id: "2", title: "Luxurious Ambiance", author: "Thoughtful Design", description: "Relax in our elegantly designed lounge featuring comfortable seating, warm ambient lighting, and décor inspired by Mediterranean aesthetics. Every corner is crafted for your comfort and enjoyment.", tags: ["Elegant", "Comfort"], id: "2", title: "Luxurious Ambiance", author: "Thoughtful Design", description: "Relax in our elegantly designed lounge featuring comfortable seating, warm ambient lighting, and décor inspired by Mediterranean aesthetics. Every corner is crafted for your comfort and enjoyment.", tags: ["Elegant", "Comfort"],
imageSrc: "http://img.b2bpic.net/free-photo/red-brown-restaurant_400718-10.jpg", imageAlt: "Luxury lounge seating area with ambient lighting"}, imageSrc: "http://img.b2bpic.net/free-photo/red-brown-restaurant_400718-10.jpg", imageAlt: "Luxury lounge seating area with ambient lighting"
},
{ {
id: "3", title: "Exceptional Hospitality", author: "Expert Staff", description: "Our knowledgeable team is passionate about providing outstanding service. Whether you need flavor recommendations or have questions about our menu, we're here to ensure your visit is perfect.", tags: ["Service", "Professional"], id: "3", title: "Exceptional Hospitality", author: "Expert Staff", description: "Our knowledgeable team is passionate about providing outstanding service. Whether you need flavor recommendations or have questions about our menu, we're here to ensure your visit is perfect.", tags: ["Service", "Professional"],
imageSrc: "http://img.b2bpic.net/free-photo/group-indian-friends-having-fun-rest-night-club-drinking-cocktails-smoke-hookah_627829-708.jpg", imageAlt: "Professional hookah lounge staff providing hospitality"}, imageSrc: "http://img.b2bpic.net/free-photo/group-indian-friends-having-fun-rest-night-club-drinking-cocktails-smoke-hookah_627829-708.jpg", imageAlt: "Professional hookah lounge staff providing hospitality"
},
]} ]}
animationType="slide-up" animationType="slide-up"
textboxLayout="default" textboxLayout="default"
@@ -102,17 +109,23 @@ export default function LandingPage() {
<TestimonialCardSix <TestimonialCardSix
testimonials={[ testimonials={[
{ {
id: "1", name: "Sarah Mitchell", handle: "@sarahmitchell_vibes", testimonial: "Caramella is my favorite place to unwind after work. The atmosphere is incredible, and the flavors are absolutely divine. Highly recommend!", imageSrc: "http://img.b2bpic.net/free-photo/front-view-smiley-man-with-backpack_23-2149915917.jpg", imageAlt: "Sarah Mitchell"}, id: "1", name: "Sarah Mitchell", handle: "@sarahmitchell_vibes", testimonial: "Caramella is my favorite place to unwind after work. The atmosphere is incredible, and the flavors are absolutely divine. Highly recommend!", imageSrc: "http://img.b2bpic.net/free-photo/front-view-smiley-man-with-backpack_23-2149915917.jpg", imageAlt: "Sarah Mitchell"
},
{ {
id: "2", name: "James Chen", handle: "@jchen_adventures", testimonial: "The hospitality here is unmatched. The staff truly cares about giving you an amazing experience. Best hookah lounge in the city!", imageSrc: "http://img.b2bpic.net/free-photo/smiley-athletic-woman-stretching-by-beach_23-2148781848.jpg", imageAlt: "James Chen"}, id: "2", name: "James Chen", handle: "@jchen_adventures", testimonial: "The hospitality here is unmatched. The staff truly cares about giving you an amazing experience. Best hookah lounge in the city!", imageSrc: "http://img.b2bpic.net/free-photo/smiley-athletic-woman-stretching-by-beach_23-2148781848.jpg", imageAlt: "James Chen"
},
{ {
id: "3", name: "Emily Rodriguez", handle: "@emilyeats_explores", testimonial: "A taste of Lebanon right in our neighborhood! The authentic flavors and warm ambiance make Caramella special. I'm bringing all my friends.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-outdoors-business-man-smiles_23-2148763856.jpg", imageAlt: "Emily Rodriguez"}, id: "3", name: "Emily Rodriguez", handle: "@emilyeats_explores", testimonial: "A taste of Lebanon right in our neighborhood! The authentic flavors and warm ambiance make Caramella special. I'm bringing all my friends.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-outdoors-business-man-smiles_23-2148763856.jpg", imageAlt: "Emily Rodriguez"
},
{ {
id: "4", name: "Marcus Johnson", handle: "@marcus_lifestyle", testimonial: "From the moment I walked in, I felt welcomed. The premium quality and attention to detail at Caramella sets it apart from other lounges.", imageSrc: "http://img.b2bpic.net/free-photo/businessman-smiling-looking-camera_23-2148112827.jpg", imageAlt: "Marcus Johnson"}, id: "4", name: "Marcus Johnson", handle: "@marcus_lifestyle", testimonial: "From the moment I walked in, I felt welcomed. The premium quality and attention to detail at Caramella sets it apart from other lounges.", imageSrc: "http://img.b2bpic.net/free-photo/businessman-smiling-looking-camera_23-2148112827.jpg", imageAlt: "Marcus Johnson"
},
{ {
id: "5", name: "Sophia Dimitriou", handle: "@sophia_travels", testimonial: "An oasis of calm and culture. Caramella captures the essence of Mediterranean hospitality beautifully. Worth every visit!", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-posing-outdoors_23-2150188348.jpg", imageAlt: "Sophia Dimitriou"}, id: "5", name: "Sophia Dimitriou", handle: "@sophia_travels", testimonial: "An oasis of calm and culture. Caramella captures the essence of Mediterranean hospitality beautifully. Worth every visit!", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-posing-outdoors_23-2150188348.jpg", imageAlt: "Sophia Dimitriou"
},
{ {
id: "6", name: "David Patel", handle: "@davidp_community", testimonial: "Brought my colleagues here for a team outing, and everyone was blown away. The setup, the flavors, the service—everything is top-notch.", imageSrc: "http://img.b2bpic.net/free-photo/positive-woman-with-short-hair-bright-lips-glasses-smiling-outside-trendy-lady-black-clothes-posing-stairs_197531-19325.jpg", imageAlt: "David Patel"}, id: "6", name: "David Patel", handle: "@davidp_community", testimonial: "Brought my colleagues here for a team outing, and everyone was blown away. The setup, the flavors, the service—everything is top-notch.", imageSrc: "http://img.b2bpic.net/free-photo/positive-woman-with-short-hair-bright-lips-glasses-smiling-outside-trendy-lady-black-clothes-posing-stairs_197531-19325.jpg", imageAlt: "David Patel"
},
]} ]}
animationType="slide-up" animationType="slide-up"
title="What Our Guests Say" title="What Our Guests Say"
@@ -131,7 +144,8 @@ export default function LandingPage() {
description="Caramella is recognized across multiple platforms for our exceptional service and premium hookah experience." description="Caramella is recognized across multiple platforms for our exceptional service and premium hookah experience."
names={["Instagram", "Facebook", "Twitter", "Yelp", "Google Reviews", "TripAdvisor", "OpenRec", "Zomato"]} names={["Instagram", "Facebook", "Twitter", "Yelp", "Google Reviews", "TripAdvisor", "OpenRec", "Zomato"]}
logos={[ logos={[
"http://img.b2bpic.net/free-vector/social-media-logotype-collection_23-2148162525.jpg", "http://img.b2bpic.net/free-vector/social-media-logo-collection_23-2148070499.jpg", "http://img.b2bpic.net/free-vector/social-media-logo-collection_23-2148089981.jpg", "http://img.b2bpic.net/free-vector/basic-rgb_53876-37668.jpg", "http://img.b2bpic.net/free-vector/star-logo-design_1017-8745.jpg", "http://img.b2bpic.net/free-vector/social-media-logo-collectio_23-2148144717.jpg", "http://img.b2bpic.net/free-vector/pack-flat-design-catering-logos_23-2149008522.jpg", "http://img.b2bpic.net/free-vector/hand-drawn-fast-food-youtube-thumbnail_23-2149195568.jpg"]} "http://img.b2bpic.net/free-vector/social-media-logotype-collection_23-2148162525.jpg", "http://img.b2bpic.net/free-vector/social-media-logo-collection_23-2148070499.jpg", "http://img.b2bpic.net/free-vector/social-media-logo-collection_23-2148089981.jpg", "http://img.b2bpic.net/free-vector/basic-rgb_53876-37668.jpg", "http://img.b2bpic.net/free-vector/star-logo-design_1017-8745.jpg", "http://img.b2bpic.net/free-vector/social-media-logo-collectio_23-2148144717.jpg", "http://img.b2bpic.net/free-vector/pack-flat-design-catering-logos_23-2149008522.jpg", "http://img.b2bpic.net/free-vector/hand-drawn-fast-food-youtube-thumbnail_23-2149195568.jpg"
]}
textboxLayout="default" textboxLayout="default"
useInvertedBackground={false} useInvertedBackground={false}
speed={40} speed={40}
@@ -148,15 +162,20 @@ export default function LandingPage() {
ctaIcon={Calendar} ctaIcon={Calendar}
faqs={[ faqs={[
{ {
id: "1", title: "What are your hours of operation?", content: "Caramella is open Tuesday through Thursday from 5 PM to 11 PM, Friday and Saturday from 4 PM to 1 AM, and Sunday from 5 PM to 10 PM. We're closed Mondays for private events and maintenance."}, id: "1", title: "What are your hours of operation?", content: "Caramella is open Tuesday through Thursday from 5 PM to 11 PM, Friday and Saturday from 4 PM to 1 AM, and Sunday from 5 PM to 10 PM. We're closed Mondays for private events and maintenance."
},
{ {
id: "2", title: "Do you accept reservations?", content: "Yes! We recommend reservations for groups of 4 or more. You can book online through our website or call us directly. Walk-ins are always welcome based on availability."}, id: "2", title: "Do you accept reservations?", content: "Yes! We recommend reservations for groups of 4 or more. You can book online through our website or call us directly. Walk-ins are always welcome based on availability."
},
{ {
id: "3", title: "What flavors do you recommend for first-time visitors?", content: "Our staff loves introducing newcomers to our signature blends like Caramella Sunrise (mango-orange blend) and Lebanese Rose (floral with subtle sweetness). Feel free to ask for a tasting before committing!"}, id: "3", title: "What flavors do you recommend for first-time visitors?", content: "Our staff loves introducing newcomers to our signature blends like Caramella Sunrise (mango-orange blend) and Lebanese Rose (floral with subtle sweetness). Feel free to ask for a tasting before committing!"
},
{ {
id: "4", title: "Do you offer private event spaces?", content: "Absolutely! We offer private lounge areas perfect for celebrations, corporate events, and gatherings. Contact us at events@caramella.local to discuss your specific needs and customized packages."}, id: "4", title: "Do you offer private event spaces?", content: "Absolutely! We offer private lounge areas perfect for celebrations, corporate events, and gatherings. Contact us at events@caramella.local to discuss your specific needs and customized packages."
},
{ {
id: "5", title: "Is there a minimum spend or cover charge?", content: "We don't have cover charges. Each hookah session includes your choice of premium tobacco and preparation. Food and beverage pricing is separate and available on our menu."}, id: "5", title: "Is there a minimum spend or cover charge?", content: "We don't have cover charges. Each hookah session includes your choice of premium tobacco and preparation. Food and beverage pricing is separate and available on our menu."
},
]} ]}
useInvertedBackground={false} useInvertedBackground={false}
animationType="slide-up" animationType="slide-up"

View File

@@ -10,15 +10,15 @@
--accent: #ffffff; --accent: #ffffff;
--background-accent: #ffffff; */ --background-accent: #ffffff; */
--background: #f7f6f7; --background: #fffefe;
--card: #ffffff; --card: #f6f7f4;
--foreground: #0c1325; --foreground: #080908;
--primary-cta: #0798ff; --primary-cta: #ff5a00;
--primary-cta-text: #f7f6f7; --primary-cta-text: #f7f6f7;
--secondary-cta: #ffffff; --secondary-cta: #e7eecd;
--secondary-cta-text: #0c1325; --secondary-cta-text: #0c1325;
--accent: #93c7ff; --accent: #ff6b1a;
--background-accent: #a8cde8; --background-accent: #ff8533;
/* text sizing - set by ThemeProvider */ /* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);