Merge version_1 into main

Merge version_1 into main
This commit was merged in pull request #3.
This commit is contained in:
2026-03-25 14:40:50 +00:00
3 changed files with 187 additions and 419 deletions

View File

@@ -2,13 +2,11 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactFaq from '@/components/sections/contact/ContactFaq';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterBase from '@/components/sections/footer/FooterBase';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import { Phone } from "lucide-react";
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
export default function LandingPage() {
export default function ContactPage() {
return (
<ThemeProvider
defaultButtonVariant="expand-hover"
@@ -23,187 +21,93 @@ export default function LandingPage() {
headingFontWeight="light"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{
name: "Home",
id: "home",
href: "/",
},
{
name: "About",
id: "about",
href: "/about",
},
{
name: "Services",
id: "services",
href: "/services",
},
{
name: "Gallery",
id: "gallery",
href: "/gallery",
},
{
name: "Testimonials",
id: "testimonials",
href: "/testimonials",
},
{
name: "Contact",
id: "contact",
href: "/contact",
},
]}
brandName="DESI MAJLIS"
/>
</div>
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{
name: "Home", id: "/"
},
{
name: "About", id: "/about"
},
{
name: "Services", id: "/services"
},
{
name: "Gallery", id: "/gallery"
},
{
name: "Testimonials", id: "/testimonials"
},
{
name: "Contact", id: "/contact"
}
]}
brandName="DESI MAJLIS"
/>
</div>
<div id="contact" data-section="contact">
<ContactSplitForm
useInvertedBackground={false}
title="Get in Touch with Desi Majlis"
description="We'd love to hear from you! Fill out the form below to inquire about our catering services or to schedule a consultation."
inputs={[
{
name: "firstName",
type: "text",
placeholder: "First Name",
required: true,
},
{
name: "lastName",
type: "text",
placeholder: "Last Name",
required: true,
},
{
name: "email",
type: "email",
placeholder: "Your Email",
required: true,
},
{
name: "phone",
type: "tel",
placeholder: "Phone Number (Optional)",
required: false,
},
{
name: "eventType",
type: "text",
placeholder: "Type of Event (e.g., Wedding, Corporate)",
required: false,
},
{
name: "eventDate",
type: "date",
placeholder: "Preferred Event Date",
required: false,
},
]}
textarea={{
name: "message",
placeholder: "Tell us about your event...",
rows: 5,
required: true,
}}
imageSrc="http://img.b2bpic.net/free-photo/close-up-appetizing-ramadan-meal_23-2151182524.jpg?_wi=4"
imageAlt="Luxurious Desi catering spread"
mediaAnimation="slide-up"
mediaPosition="right"
buttonText="Send Message"
/>
</div>
<div id="contact" data-section="contact">
<ContactCenter
useInvertedBackground={true}
background={{
variant: "plain"
}}
tag="Connect With Us"
title="Plan Your Exquisite Event"
description="Ready to transform your vision into a culinary masterpiece? Contact us to discuss your luxury catering and event needs. Our team is dedicated to crafting an unforgettable experience."
inputPlaceholder="Your Email"
buttonText="Send Inquiry"
termsText="By sending an inquiry, you agree to our privacy policy and terms of service."
/>
</div>
<div id="contact-faq" data-section="contact-faq">
<ContactFaq
animationType="slide-up"
useInvertedBackground={true}
faqs={[
{
id: "1",
title: "What areas do you serve?",
content: "Desi Majlis proudly serves New York, New Jersey, and surrounding areas. For events outside this region, please contact us to discuss possibilities.",
},
{
id: "2",
title: "Do you offer custom menu development?",
content: "Yes, bespoke menu creation is at the heart of our service. We collaborate closely with you to design a menu that perfectly reflects your taste and event theme.",
},
{
id: "3",
title: "What is your cancellation policy?",
content: "Our cancellation policy varies based on the event size and lead time. Detailed terms will be provided in your service agreement.",
},
]}
ctaTitle="Have an Urgent Question?"
ctaDescription="Our team is ready to assist you. Reach out to us directly for immediate inquiries or detailed discussions."
ctaButton={{
text: "Call Us Now",
href: "tel:+1234567890",
}}
ctaIcon={Phone}
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
columns={[
{
title: "Services",
items: [
{
label: "Weddings",
href: "/services#weddings",
},
{
label: "Private Events",
href: "/services#private",
},
{
label: "Corporate Events",
href: "/services#corporate",
},
],
},
{
title: "About Us",
items: [
{
label: "Our Story",
href: "/about",
},
{
label: "Our Team",
href: "/about#team",
},
{
label: "Testimonials",
href: "/about#testimonials",
},
],
},
{
title: "Legal",
items: [
{
label: "Privacy Policy",
href: "/privacy",
},
{
label: "Terms of Service",
href: "/terms",
},
],
},
]}
logoText="Desi Majlis"
copyrightText="© 2024 Desi Majlis. All rights reserved."
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{
items: [
{
label: "Weddings", href: "/services#weddings"
},
{
label: "Private Events", href: "/services#private"
},
{
label: "Corporate Events", href: "/services#corporate"
}
]
},
{
items: [
{
label: "About Us", href: "/about"
},
{
label: "Our Story", href: "/about#story"
},
{
label: "Testimonials", href: "/testimonials"
}
]
},
{
items: [
{
label: "Contact Us", href: "/contact"
},
{
label: "Instagram", href: "https://instagram.com/desimajlis"
},
{
label: "Facebook", href: "https://facebook.com/desimajlis"
}
]
}
]}
logoText="DESI MAJLIS"
/>
</div>
</ReactLenis>
</ThemeProvider>
);

View File

@@ -2,14 +2,11 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import FeatureCardOne from '@/components/sections/feature/FeatureCardOne';
import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwentyThree';
import FooterBase from '@/components/sections/footer/FooterBase';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
import { Feather, Image } from "lucide-react";
import FeatureCardTwentySeven from '@/components/sections/feature/FeatureCardTwentySeven';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
export default function LandingPage() {
export default function GalleryPage() {
return (
<ThemeProvider
defaultButtonVariant="expand-hover"
@@ -24,237 +21,101 @@ export default function LandingPage() {
headingFontWeight="light"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{
name: "Home",
id: "home",
href: "/",
},
{
name: "About",
id: "about",
href: "/about",
},
{
name: "Services",
id: "services",
href: "/services",
},
{
name: "Gallery",
id: "gallery",
href: "/gallery",
},
{
name: "Testimonials",
id: "testimonials",
href: "/testimonials",
},
{
name: "Contact",
id: "contact",
href: "/contact",
},
]}
brandName="DESI MAJLIS"
/>
</div>
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{
name: "Home", id: "/"
},
{
name: "About", id: "/about"
},
{
name: "Services", id: "/services"
},
{
name: "Gallery", id: "/gallery"
},
{
name: "Testimonials", id: "/testimonials"
},
{
name: "Contact", id: "/contact"
}
]}
brandName="DESI MAJLIS"
/>
</div>
<div id="feature" data-section="feature">
<FeatureCardTwentyThree
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
features={[
{
id: "1",
title: "Grand Wedding Receptions",
tags: [
"Weddings",
"Luxury",
"Décor",
],
imageSrc: "http://img.b2bpic.net/free-photo/restaurant-dinner-table-with-plates-cutlery-yellow-blue-glasses_140725-8444.jpg?_wi=4",
imageAlt: "luxury wedding dining table setting",
},
{
id: "2",
title: "Elegant Private Dinners",
tags: [
"Private",
"Intimate",
"Gourmet",
],
imageSrc: "http://img.b2bpic.net/free-photo/wedding-table-arrangement-with-plants-high-angle_23-2149436433.jpg?_wi=4",
imageAlt: "intimate private dinner party setting",
},
{
id: "3",
title: "Corporate Gala Events",
tags: [
"Corporate",
"Professional",
"Refined",
],
imageSrc: "http://img.b2bpic.net/free-photo/front-view-friends-having-lunch_23-2150598401.jpg?_wi=4",
imageAlt: "corporate event catering buffet",
},
{
id: "4",
title: "Vibrant Festival Celebrations",
tags: [
"Festivals",
"Culture",
"Family",
],
imageSrc: "http://img.b2bpic.net/free-photo/close-up-appetizing-ramadan-meal_23-2151182524.jpg?_wi=3",
imageAlt: "luxury Indian wedding catering setup",
},
]}
title="A Glimpse into Desi Majlis Events"
description="Explore our visual showcase of breathtaking events, stunning culinary presentations, and joyful celebrations we've had the honor to cater."
tag="Our Portfolio"
tagIcon={Image}
/>
</div>
<div id="features" data-section="features">
<FeatureCardTwentySeven
animationType="slide-up"
textboxLayout="default"
gridVariant="three-columns-all-equal-width"
useInvertedBackground={true}
features={[
{
id: "1", title: "Timeless Wedding Feasts", description: "Celebrate your love with a culinary experience as unique as your story. Our bespoke wedding menus blend tradition with contemporary flair, ensuring every dish is a masterpiece.", imageSrc: "http://img.b2bpic.net/free-photo/restaurant-dinner-table-with-plates-cutlery-yellow-blue-glasses_140725-8444.jpg"
},
{
id: "2", title: "Intimate Gatherings, Grand Flavors", description: "Elevate your private celebrations with exclusive menus designed to delight. From anniversaries to bespoke dinner parties, we bring culinary excellence to your doorstep.", imageSrc: "http://img.b2bpic.net/free-photo/wedding-table-arrangement-with-plants-high-angle_23-2149436433.jpg"
},
{
id: "3", title: "Refined Corporate Impressions", description: "Impress clients and partners with sophisticated catering that reflects your brand's prestige. Our professional team ensures flawless execution for conferences, galas, and corporate retreats.", imageSrc: "http://img.b2bpic.net/free-photo/front-view-friends-having-lunch_23-2150598401.jpg"
}
]}
title="Exquisite Experiences for Every Occasion"
description="From grand weddings to intimate private gatherings and prestigious corporate functions, Desi Majlis curates bespoke culinary journeys that leave a lasting impression."
tag="Culinary Journeys"
/>
</div>
<div id="feature-ambiance" data-section="feature-ambiance">
<FeatureCardOne
textboxLayout="default"
gridVariant="three-columns-all-equal-width"
useInvertedBackground={true}
features={[
{
title: "Lavish Banquet Setups",
description: "Ornate decorations, luxurious table settings, and grand culinary displays for a truly regal experience.",
imageSrc: "http://img.b2bpic.net/free-photo/restaurant-dinner-table-with-plates-cutlery-yellow-blue-glasses_140725-8444.jpg?_wi=5",
imageAlt: "Lavish banquet setup",
},
{
title: "Modern Fusion Presentations",
description: "Innovative plating techniques and contemporary aesthetics that blend seamlessly with traditional flavors.",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-chef-preparing-food-plate_23-2148934662.jpg?_wi=3",
imageAlt: "Modern food presentation",
},
{
title: "Outdoor Garden Affairs",
description: "Charming garden setups with delectable catering, perfect for spring and summer events.",
imageSrc: "http://img.b2bpic.net/free-photo/wedding-table-arrangement-with-plants-high-angle_23-2149436433.jpg?_wi=5",
imageAlt: "Outdoor garden event",
},
]}
title="Crafting Ambiance with Culinary Art"
description="Beyond exquisite food, we curate immersive experiences. Our gallery showcases the diverse styles and themes we bring to life."
tag="Event Styles"
/>
</div>
<div id="testimonial" data-section="testimonial">
<TestimonialCardSix
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
testimonials={[
{
id: "1",
name: "Aisha R.",
handle: "@aishas_cuisine",
testimonial: "Every dish was a work of art! Desi Majlis brought our dream wedding feast to life with incredible taste and presentation.",
imageSrc: "http://img.b2bpic.net/free-photo/thoughtful-woman-sitting-cafe-with-closed-laptop_1262-1205.jpg?_wi=4",
imageAlt: "professional Indian woman smiling headshot",
icon: Feather,
},
{
id: "2",
name: "Vikram S.",
handle: "@vikram.events",
testimonial: "Unparalleled service and truly authentic flavors. Our corporate event was a massive success thanks to Desi Majlis.",
imageSrc: "http://img.b2bpic.net/free-photo/confident-african-american-businessman-brown-classic-jacket-thinking-about-business-while-holding-hand-chin-isolated-dark-background_613910-6593.jpg?_wi=3",
imageAlt: "professional Middle Eastern man smiling headshot",
icon: Feather,
},
{
id: "3",
name: "Priya K.",
handle: "@priyakapoor_life",
testimonial: "From planning to execution, everything was flawless. The food was the highlight of our family gathering. Highly recommend!",
imageSrc: "http://img.b2bpic.net/free-photo/business-man-curly-cute-handsome-guy-black-suit-red-tie-excitingly-holding-fist-up_140725-162612.jpg?_wi=4",
imageAlt: "professional South Asian woman smiling headshot",
icon: Feather,
},
{
id: "4",
name: "Ahmed B.",
handle: "@ahmed_hospitality",
testimonial: "Desi Majlis consistently delivers excellence. Their team is professional, innovative, and deeply passionate about food.",
imageSrc: "http://img.b2bpic.net/free-photo/businessman-dress-code_114579-15926.jpg?_wi=4",
imageAlt: "professional Indian man smiling headshot",
icon: Feather,
},
]}
title="Moments Captured, Memories Cherished"
description="Hear directly from our happy clients while viewing the beauty we create. Their words echo the visual splendor."
topMarqueeDirection="right"
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
columns={[
{
title: "Services",
items: [
{
label: "Weddings",
href: "/services#weddings",
},
{
label: "Private Events",
href: "/services#private",
},
{
label: "Corporate Events",
href: "/services#corporate",
},
],
},
{
title: "About Us",
items: [
{
label: "Our Story",
href: "/about",
},
{
label: "Our Team",
href: "/about#team",
},
{
label: "Testimonials",
href: "/about#testimonials",
},
],
},
{
title: "Legal",
items: [
{
label: "Privacy Policy",
href: "/privacy",
},
{
label: "Terms of Service",
href: "/terms",
},
],
},
]}
logoText="Desi Majlis"
copyrightText="© 2024 Desi Majlis. All rights reserved."
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{
items: [
{
label: "Weddings", href: "/services#weddings"
},
{
label: "Private Events", href: "/services#private"
},
{
label: "Corporate Events", href: "/services#corporate"
}
]
},
{
items: [
{
label: "About Us", href: "/about"
},
{
label: "Our Story", href: "/about#story"
},
{
label: "Testimonials", href: "/testimonials"
}
]
},
{
items: [
{
label: "Contact Us", href: "/contact"
},
{
label: "Instagram", href: "https://instagram.com/desimajlis"
},
{
label: "Facebook", href: "https://facebook.com/desimajlis"
}
]
}
]}
logoText="DESI MAJLIS"
/>
</div>
</ReactLenis>
</ThemeProvider>
);

View File

@@ -115,6 +115,9 @@ export default function LandingPage() {
logos={[
"http://img.b2bpic.net/free-vector/beach-logo-template_23-2149396480.jpg", "http://img.b2bpic.net/free-vector/elegant-wedding-monograms_23-2148467362.jpg", "http://img.b2bpic.net/free-vector/gradient-gold-crown-logo-template_23-2150970168.jpg", "http://img.b2bpic.net/free-photo/palace-culture-iasi-romania_1268-14916.jpg", "http://img.b2bpic.net/free-vector/bridal-shower-invitation_23-2147974115.jpg", "http://img.b2bpic.net/free-photo/female-product-photographer-studio_23-2148970221.jpg", "http://img.b2bpic.net/free-vector/cooking-landing-page-template-with-photo_23-2148368952.jpg"
]}
names={[
"Grand Palace Events", "Opulent Weddings", "Elite Tour Events", "Heritage Hall", "Regal Events Co", "Majestic Moments", "Culinary Crown"
]}
title="Trusted by Discerning Clients & Prestigious Venues"
description="Our commitment to excellence has made us the preferred luxury catering partner for high-profile events and exclusive collaborations."
/>