8 Commits

Author SHA1 Message Date
kudinDmitriyUp
44f0e589ae Bob AI: Add floating WhatsApp button to layout 2026-06-25 10:53:10 +00:00
a38d7d378c Merge version_4_1782384561805 into main
Merge version_4_1782384561805 into main
2026-06-25 10:50:58 +00:00
kudinDmitriyUp
8ce1d66b7e Bob AI: Applied Luxury Minimalist theme with black and gold palette 2026-06-25 10:50:17 +00:00
5f8c054d89 Merge version_3_1782384088989 into main
Merge version_3_1782384088989 into main
2026-06-25 10:43:01 +00:00
kudinDmitriyUp
ca8637acb0 Bob AI: Updated hero section image to the provided photo 2026-06-25 10:42:20 +00:00
8ce33bea39 Merge version_2_1782383770662 into main
Merge version_2_1782383770662 into main
2026-06-25 10:37:31 +00:00
kudinDmitriyUp
39bc8ec222 Bob AI: Update typography to Playfair Display and Figtree 2026-06-25 10:36:50 +00:00
f8a9d1a315 Merge version_1_1782138268642 into main
Merge version_1_1782138268642 into main
2026-06-22 14:26:52 +00:00
11 changed files with 381 additions and 262 deletions

View File

@@ -43,6 +43,23 @@ export default function Layout() {
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
<a
href="https://wa.me/96176191969"
target="_blank"
rel="noopener noreferrer"
className="fixed bottom-6 right-6 z-50 flex h-14 w-14 items-center justify-center rounded-full bg-[#25D366] text-white shadow-lg transition-transform hover:scale-110"
aria-label="Chat on WhatsApp"
>
<svg
xmlns="http://www.w3.org/2000/svg"
width="28"
height="28"
viewBox="0 0 24 24"
fill="currentColor"
>
<path d="M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z" />
</svg>
</a>
</main>
<SectionErrorBoundary name="footer">
<FooterSimpleMedia

View File

@@ -1,19 +1,19 @@
@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Figtree:wght@400;500;600;700&display=swap');
@import "tailwindcss";
@import "./styles/masks.css";
@import "./styles/animations.css";
:root {
/* @colorThemes/lightTheme/grayNavyBlue */
--background: #f6f0e9;
--card: #efe7dd;
--foreground: #2b180a;
--primary-cta: #2b180a;
--primary-cta-text: #f6f0e9;
--secondary-cta: #efe7dd;
--secondary-cta-text: #2b180a;
--accent: #94877c;
--background-accent: #afa094;
--background: #0a0a0a;
--card: #141414;
--foreground: #f5f5f5;
--primary-cta: #d4af37;
--primary-cta-text: #0a0a0a;
--secondary-cta: #1a1a1a;
--secondary-cta-text: #d4af37;
--accent: #a3a3a3;
--background-accent: #1f1f1f;
/* @layout/border-radius/rounded */
--radius: 1.5rem;
@@ -88,8 +88,8 @@
--color-background-accent: var(--background-accent);
/* Fonts */
--font-sans: 'Figtree', sans-serif;
--font-tight: "Inter Tight", sans-serif;
--font-sans: 'Playfair Display', serif;
--font-tight: "Figtree", sans-serif;
--font-mono: monospace;
/* Border Radius */

View File

@@ -1,262 +1,36 @@
import AboutText from '@/components/sections/about/AboutText';
import ContactCta from '@/components/sections/contact/ContactCta';
import FaqSimple from '@/components/sections/faq/FaqSimple';
import FeaturesArrowCards from '@/components/sections/features/FeaturesArrowCards';
import FeaturesRevealCardsBento from '@/components/sections/features/FeaturesRevealCardsBento';
import HeroOverlayMarquee from '@/components/sections/hero/HeroOverlayMarquee';
import MetricsIconCards from '@/components/sections/metrics/MetricsIconCards';
import TestimonialOverlayCards from '@/components/sections/testimonial/TestimonialOverlayCards';
import { Award, Building, Home, Layout, Palette, Star } from "lucide-react";
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
// AUTO-GENERATED shell by per-section-migrate.
// Section bodies live in ./<PageBase>/sections/<X>.tsx. Edit the section
// files directly. Non-block content (wrappers, non-inlinable sections) is
// preserved inline; extracted section blocks become <XSection/> refs.
export default function HomePage() {
import React from 'react';
import HeroSection from './HomePage/sections/Hero';
import AboutSection from './HomePage/sections/About';
import ServicesSection from './HomePage/sections/Services';
import PortfolioSection from './HomePage/sections/Portfolio';
import MetricsSection from './HomePage/sections/Metrics';
import TestimonialsSection from './HomePage/sections/Testimonials';
import FaqSection from './HomePage/sections/Faq';
import ContactSection from './HomePage/sections/Contact';
export default function HomePage(): React.JSX.Element {
return (
<>
<div id="hero" data-section="hero">
<SectionErrorBoundary name="hero">
<HeroOverlayMarquee
tag="Elevating Lebanese Living"
title="Bespoke Interior Design in Lebanon"
description="Transforming spaces into timeless experiences. We combine regional heritage with modern luxury to craft interiors that reflect your unique narrative."
primaryButton={{
text: "Book Consultation",
href: "#contact",
}}
secondaryButton={{
text: "View Portfolio",
href: "#portfolio",
}}
items={[
{
text: "Residential",
icon: Home,
},
{
text: "Commercial",
icon: Building,
},
{
text: "Bespoke",
icon: Palette,
},
]}
imageSrc="http://img.b2bpic.net/free-photo/modern-styled-small-entryway_23-2150712901.jpg"
/>
</SectionErrorBoundary>
</div>
<>
<HeroSection />
<div id="about" data-section="about">
<SectionErrorBoundary name="about">
<AboutText
title="Crafting the soul of your home. MID Design brings professional expertise to every corner of your project in Lebanon, ensuring meticulous attention to detail and curated design concepts."
/>
</SectionErrorBoundary>
</div>
<AboutSection />
<div id="services" data-section="services">
<SectionErrorBoundary name="services">
<FeaturesRevealCardsBento
tag="Our Expertise"
title="Comprehensive Design Services"
description="From concept development to final styling, we manage your interior project with precision."
items={[
{
title: "Residential Interiors",
description: "High-end homes tailored to you.",
href: "#",
imageSrc: "http://img.b2bpic.net/free-photo/view-nordic-minimalism-japanese-wabi-sabi-interior-design-blend_23-2151160185.jpg",
},
{
title: "Modern Kitchens",
description: "Functional and beautiful design.",
href: "#",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-kitchen-interior-design_23-2150976546.jpg",
},
{
title: "Home Workspaces",
description: "Productive and luxury setups.",
href: "#",
imageSrc: "http://img.b2bpic.net/free-photo/working-from-home-ergonomic-workstation_23-2149204615.jpg",
},
{
title: "Living Spaces",
description: "Elegant and timeless concepts.",
href: "#",
imageSrc: "http://img.b2bpic.net/free-photo/interior-decoration-inspired-by-mexican-folklore_23-2150711321.jpg",
},
{
title: "Bathrooms",
description: "Spas in your own residence.",
href: "#",
imageSrc: "http://img.b2bpic.net/free-photo/small-bathroom-space-with-modern-style-furniture_23-2150864624.jpg",
},
{
title: "Dining Areas",
description: "Designed for unforgettable meals.",
href: "#",
imageSrc: "http://img.b2bpic.net/free-photo/dining-room-beige-color-tones-interior-design_114579-2225.jpg",
},
{
title: "Lobby Spaces",
description: "Make a statement entry.",
href: "#",
imageSrc: "http://img.b2bpic.net/free-photo/modern-sauna-with-panoramic-windows-wooden-design_169016-70021.jpg",
},
]}
/>
</SectionErrorBoundary>
</div>
<ServicesSection />
<div id="portfolio" data-section="portfolio">
<SectionErrorBoundary name="portfolio">
<FeaturesArrowCards
tag="Portfolio"
title="Recent Projects"
description="An insight into our signature style and recent residential projects across Lebanon."
items={[
{
title: "Beirut Modern Villa",
tags: [
"Villa",
"Modern",
],
imageSrc: "http://img.b2bpic.net/free-photo/colorful-pastel-minimal-interior-design_23-2151883536.jpg",
},
{
title: "Mount Lebanon Chalet",
tags: [
"Rustic",
"Luxury",
],
imageSrc: "http://img.b2bpic.net/free-photo/indoor-modern-apartment-design-with-wooden-floor-generative-ai_188544-7689.jpg",
},
{
title: "Saida Seaside Loft",
tags: [
"Loft",
"Contemporary",
],
imageSrc: "http://img.b2bpic.net/free-photo/virtual-love-handsome-cute-guy-suit-with-wine-distance-computer-date-holding-red-flowers_140725-162524.jpg",
},
]}
/>
</SectionErrorBoundary>
</div>
<PortfolioSection />
<div id="metrics" data-section="metrics">
<SectionErrorBoundary name="metrics">
<MetricsIconCards
tag="Impact"
title="Our Design Journey"
description="Quantifiable commitment to our clients' satisfaction."
metrics={[
{
icon: Award,
title: "Projects Completed",
value: "150+",
},
{
icon: Star,
title: "Happy Clients",
value: "120+",
},
{
icon: Layout,
title: "Custom Designs",
value: "500+",
},
]}
/>
</SectionErrorBoundary>
</div>
<MetricsSection />
<div id="testimonials" data-section="testimonials">
<SectionErrorBoundary name="testimonials">
<TestimonialOverlayCards
tag="Testimonials"
title="Client Experience"
description="See why homeowners trust us with their vision."
testimonials={[
{
name: "Layla F.",
role: "Homeowner",
company: "Beirut",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/modern-kitchen-island-with-fluted-glass-cabinets-stylish-interior-with-builtin-appliances_169016-72717.jpg",
},
{
name: "Karim M.",
role: "Investor",
company: "Metn",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/neoclassical-style-interior-design-with-decor-furnishings_23-2151199410.jpg",
},
{
name: "Nour H.",
role: "Designer",
company: "Jbeil",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/people-with-paper-tablet-office_23-2147668750.jpg",
},
{
name: "Samir A.",
role: "Client",
company: "Tripoli",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/woman-working-with-ruler-close-up_23-2148966942.jpg",
},
{
name: "Rania S.",
role: "Homeowner",
company: "Baabda",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/attractive-woman-reading-magazine-near-panoramic-window_7502-9287.jpg",
},
]}
/>
</SectionErrorBoundary>
</div>
<TestimonialsSection />
<div id="faq" data-section="faq">
<SectionErrorBoundary name="faq">
<FaqSimple
tag="Knowledge"
title="Frequently Asked"
description="Common questions about our interior design workflow."
items={[
{
question: "Where do you operate?",
answer: "We serve all regions across Lebanon.",
},
{
question: "Do you handle custom furniture?",
answer: "Yes, we specialize in bespoke custom furniture and installations.",
},
{
question: "How long is a design process?",
answer: "Varies by project scale; average residential project is 3-6 months.",
},
]}
/>
</SectionErrorBoundary>
</div>
<FaqSection />
<div id="contact" data-section="contact">
<SectionErrorBoundary name="contact">
<ContactCta
tag="Get Started"
text="Ready to transform your space? Schedule a design consultation with our experts in Lebanon."
primaryButton={{
text: "Contact Us",
href: "mailto:info@middesign.com",
}}
secondaryButton={{
text: "Call Now",
href: "tel:+96100000000",
}}
/>
</SectionErrorBoundary>
</div>
<ContactSection />
</>
);
}

View File

@@ -0,0 +1,18 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "about" section.
import React from 'react';
import AboutText from '@/components/sections/about/AboutText';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function AboutSection(): React.JSX.Element {
return (
<div id="about" data-section="about">
<SectionErrorBoundary name="about">
<AboutText
title="Crafting the soul of your home. MID Design brings professional expertise to every corner of your project in Lebanon, ensuring meticulous attention to detail and curated design concepts."
/>
</SectionErrorBoundary>
</div>
);
}

View File

@@ -0,0 +1,27 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "contact" section.
import React from 'react';
import ContactCta from '@/components/sections/contact/ContactCta';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function ContactSection(): React.JSX.Element {
return (
<div id="contact" data-section="contact">
<SectionErrorBoundary name="contact">
<ContactCta
tag="Get Started"
text="Ready to transform your space? Schedule a design consultation with our experts in Lebanon."
primaryButton={{
text: "Contact Us",
href: "mailto:info@middesign.com",
}}
secondaryButton={{
text: "Call Now",
href: "tel:+96100000000",
}}
/>
</SectionErrorBoundary>
</div>
);
}

View File

@@ -0,0 +1,34 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "faq" section.
import React from 'react';
import FaqSimple from '@/components/sections/faq/FaqSimple';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function FaqSection(): React.JSX.Element {
return (
<div id="faq" data-section="faq">
<SectionErrorBoundary name="faq">
<FaqSimple
tag="Knowledge"
title="Frequently Asked"
description="Common questions about our interior design workflow."
items={[
{
question: "Where do you operate?",
answer: "We serve all regions across Lebanon.",
},
{
question: "Do you handle custom furniture?",
answer: "Yes, we specialize in bespoke custom furniture and installations.",
},
{
question: "How long is a design process?",
answer: "Varies by project scale; average residential project is 3-6 months.",
},
]}
/>
</SectionErrorBoundary>
</div>
);
}

View File

@@ -0,0 +1,44 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "hero" section.
import React from 'react';
import HeroOverlayMarquee from '@/components/sections/hero/HeroOverlayMarquee';
import { Award, Building, Home, Layout, Palette, Star } from "lucide-react";
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function HeroSection(): React.JSX.Element {
return (
<div id="hero" data-section="hero">
<SectionErrorBoundary name="hero">
<HeroOverlayMarquee
tag="Elevating Lebanese Living"
title="Bespoke Interior Design in Lebanon"
description="Transforming spaces into timeless experiences. We combine regional heritage with modern luxury to craft interiors that reflect your unique narrative."
primaryButton={{
text: "Book Consultation",
href: "#contact",
}}
secondaryButton={{
text: "View Portfolio",
href: "#portfolio",
}}
items={[
{
text: "Residential",
icon: Home,
},
{
text: "Commercial",
icon: Building,
},
{
text: "Bespoke",
icon: Palette,
},
]}
imageSrc="https://storage.googleapis.com/webild/users/user_3E5Z1dFAelsYbTSOFAe3xKAQAFL/uploaded-1782384010780-dfmdpx6c.jpg"
/>
</SectionErrorBoundary>
</div>
);
}

View File

@@ -0,0 +1,38 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "metrics" section.
import React from 'react';
import MetricsIconCards from '@/components/sections/metrics/MetricsIconCards';
import { Award, Building, Home, Layout, Palette, Star } from "lucide-react";
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function MetricsSection(): React.JSX.Element {
return (
<div id="metrics" data-section="metrics">
<SectionErrorBoundary name="metrics">
<MetricsIconCards
tag="Impact"
title="Our Design Journey"
description="Quantifiable commitment to our clients' satisfaction."
metrics={[
{
icon: Award,
title: "Projects Completed",
value: "150+",
},
{
icon: Star,
title: "Happy Clients",
value: "120+",
},
{
icon: Layout,
title: "Custom Designs",
value: "500+",
},
]}
/>
</SectionErrorBoundary>
</div>
);
}

View File

@@ -0,0 +1,46 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "portfolio" section.
import React from 'react';
import FeaturesArrowCards from '@/components/sections/features/FeaturesArrowCards';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function PortfolioSection(): React.JSX.Element {
return (
<div id="portfolio" data-section="portfolio">
<SectionErrorBoundary name="portfolio">
<FeaturesArrowCards
tag="Portfolio"
title="Recent Projects"
description="An insight into our signature style and recent residential projects across Lebanon."
items={[
{
title: "Beirut Modern Villa",
tags: [
"Villa",
"Modern",
],
imageSrc: "http://img.b2bpic.net/free-photo/colorful-pastel-minimal-interior-design_23-2151883536.jpg",
},
{
title: "Mount Lebanon Chalet",
tags: [
"Rustic",
"Luxury",
],
imageSrc: "http://img.b2bpic.net/free-photo/indoor-modern-apartment-design-with-wooden-floor-generative-ai_188544-7689.jpg",
},
{
title: "Saida Seaside Loft",
tags: [
"Loft",
"Contemporary",
],
imageSrc: "http://img.b2bpic.net/free-photo/virtual-love-handsome-cute-guy-suit-with-wine-distance-computer-date-holding-red-flowers_140725-162524.jpg",
},
]}
/>
</SectionErrorBoundary>
</div>
);
}

View File

@@ -0,0 +1,64 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "services" section.
import React from 'react';
import FeaturesRevealCardsBento from '@/components/sections/features/FeaturesRevealCardsBento';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function ServicesSection(): React.JSX.Element {
return (
<div id="services" data-section="services">
<SectionErrorBoundary name="services">
<FeaturesRevealCardsBento
tag="Our Expertise"
title="Comprehensive Design Services"
description="From concept development to final styling, we manage your interior project with precision."
items={[
{
title: "Residential Interiors",
description: "High-end homes tailored to you.",
href: "#",
imageSrc: "http://img.b2bpic.net/free-photo/view-nordic-minimalism-japanese-wabi-sabi-interior-design-blend_23-2151160185.jpg",
},
{
title: "Modern Kitchens",
description: "Functional and beautiful design.",
href: "#",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-kitchen-interior-design_23-2150976546.jpg",
},
{
title: "Home Workspaces",
description: "Productive and luxury setups.",
href: "#",
imageSrc: "http://img.b2bpic.net/free-photo/working-from-home-ergonomic-workstation_23-2149204615.jpg",
},
{
title: "Living Spaces",
description: "Elegant and timeless concepts.",
href: "#",
imageSrc: "http://img.b2bpic.net/free-photo/interior-decoration-inspired-by-mexican-folklore_23-2150711321.jpg",
},
{
title: "Bathrooms",
description: "Spas in your own residence.",
href: "#",
imageSrc: "http://img.b2bpic.net/free-photo/small-bathroom-space-with-modern-style-furniture_23-2150864624.jpg",
},
{
title: "Dining Areas",
description: "Designed for unforgettable meals.",
href: "#",
imageSrc: "http://img.b2bpic.net/free-photo/dining-room-beige-color-tones-interior-design_114579-2225.jpg",
},
{
title: "Lobby Spaces",
description: "Make a statement entry.",
href: "#",
imageSrc: "http://img.b2bpic.net/free-photo/modern-sauna-with-panoramic-windows-wooden-design_169016-70021.jpg",
},
]}
/>
</SectionErrorBoundary>
</div>
);
}

View File

@@ -0,0 +1,57 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "testimonials" section.
import React from 'react';
import TestimonialOverlayCards from '@/components/sections/testimonial/TestimonialOverlayCards';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function TestimonialsSection(): React.JSX.Element {
return (
<div id="testimonials" data-section="testimonials">
<SectionErrorBoundary name="testimonials">
<TestimonialOverlayCards
tag="Testimonials"
title="Client Experience"
description="See why homeowners trust us with their vision."
testimonials={[
{
name: "Layla F.",
role: "Homeowner",
company: "Beirut",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/modern-kitchen-island-with-fluted-glass-cabinets-stylish-interior-with-builtin-appliances_169016-72717.jpg",
},
{
name: "Karim M.",
role: "Investor",
company: "Metn",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/neoclassical-style-interior-design-with-decor-furnishings_23-2151199410.jpg",
},
{
name: "Nour H.",
role: "Designer",
company: "Jbeil",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/people-with-paper-tablet-office_23-2147668750.jpg",
},
{
name: "Samir A.",
role: "Client",
company: "Tripoli",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/woman-working-with-ruler-close-up_23-2148966942.jpg",
},
{
name: "Rania S.",
role: "Homeowner",
company: "Baabda",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/attractive-woman-reading-magazine-near-panoramic-window_7502-9287.jpg",
},
]}
/>
</SectionErrorBoundary>
</div>
);
}