21 Commits

Author SHA1 Message Date
kudinDmitriyUp
b16f34a150 Bob AI: Update the hero section text: set the tagline/title to 'Spaces That Speak' and t 2026-06-25 11:13:02 +00:00
e6bb1b2e91 Merge version_6_1782385798592 into main
Merge version_6_1782385798592 into main
2026-06-25 11:11:55 +00:00
kudinDmitriyUp
77605c8ce2 Bob AI: Change the theme to 'Luxury Minimalist' with a black and gol 2026-06-25 11:11:09 +00:00
db8539bcb5 Switch to version 1: remove src/pages/HomePage/sections/Testimonials.tsx 2026-06-25 11:07:41 +00:00
daeb7655c7 Switch to version 1: remove src/pages/HomePage/sections/Services.tsx 2026-06-25 11:07:41 +00:00
35f3212f9b Switch to version 1: remove src/pages/HomePage/sections/Portfolio.tsx 2026-06-25 11:07:41 +00:00
eea9afa3a5 Switch to version 1: remove src/pages/HomePage/sections/Metrics.tsx 2026-06-25 11:07:40 +00:00
24346f5d50 Switch to version 1: remove src/pages/HomePage/sections/Hero.tsx 2026-06-25 11:07:40 +00:00
bb3a61d1a8 Switch to version 1: remove src/pages/HomePage/sections/Faq.tsx 2026-06-25 11:07:39 +00:00
a41bd43b10 Switch to version 1: remove src/pages/HomePage/sections/Contact.tsx 2026-06-25 11:07:39 +00:00
da9354f716 Switch to version 1: remove src/pages/HomePage/sections/About.tsx 2026-06-25 11:07:39 +00:00
e85c225f21 Switch to version 1: modified src/pages/HomePage.tsx 2026-06-25 11:07:38 +00:00
11f4b83c48 Switch to version 1: modified src/index.css 2026-06-25 11:07:38 +00:00
9086d5bbb5 Switch to version 2: modified src/pages/HomePage/sections/Hero.tsx 2026-06-25 11:07:11 +00:00
61c60164c5 Switch to version 3: modified src/index.css 2026-06-25 11:07:06 +00:00
22600dcfe8 Switch to version 4: modified src/components/Layout.tsx 2026-06-25 11:06:57 +00:00
ded5269258 Merge version_5_1782384718191 into main
Merge version_5_1782384718191 into main
2026-06-25 10:53:49 +00:00
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
2 changed files with 20 additions and 20 deletions

View File

@@ -1,19 +1,19 @@
@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 url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Inter:wght@300;400;500&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: #1a1a1a;
--card: #242424;
--foreground: #f5f5f0;
--primary-cta: #d4af37;
--primary-cta-text: #1a1a1a;
--secondary-cta: #333333;
--secondary-cta-text: #f5f5f0;
--accent: #a3a3a3;
--background-accent: #2a2a2a;
/* @layout/border-radius/rounded */
--radius: 1.5rem;
@@ -88,8 +88,8 @@
--color-background-accent: var(--background-accent);
/* Fonts */
--font-sans: 'Playfair Display', serif;
--font-tight: "Figtree", sans-serif;
--font-sans: 'Inter', sans-serif;
--font-tight: 'Playfair Display', serif;
--font-mono: monospace;
/* Border Radius */

View File

@@ -11,18 +11,18 @@ export default function HeroSection(): React.JSX.Element {
<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={{
tag="Elevating Lebanese Living"
title="Spaces That Speak"
description="MID crafts thoughtful interior spaces for residential and commercial clients across Lebanon."
primaryButton={{
text: "Book Consultation",
href: "#contact",
}}
secondaryButton={{
secondaryButton={{
text: "View Portfolio",
href: "#portfolio",
}}
items={[
items={[
{
text: "Residential",
icon: Home,
@@ -36,8 +36,8 @@ export default function HeroSection(): React.JSX.Element {
icon: Palette,
},
]}
imageSrc="https://storage.googleapis.com/webild/users/user_3E5Z1dFAelsYbTSOFAe3xKAQAFL/uploaded-1782384010780-dfmdpx6c.jpg"
/>
imageSrc="http://img.b2bpic.net/free-photo/modern-styled-small-entryway_23-2150712901.jpg"
/>
</SectionErrorBoundary>
</div>
);