Merge version_3 into main #4

Merged
development merged 3 commits from version_3 into main 2025-12-25 15:39:04 +00:00
3 changed files with 14 additions and 13 deletions

View File

@@ -4,13 +4,13 @@
/* Base units */
/* --vw is set by ThemeProvider */
--background: #ffffff;;
--card: #fcfcfc;;
--foreground: #000a18e6;;
--primary-cta: #409fff;;
--secondary-cta: #ffffff;;
--accent: #e2e2e2;;
--background-accent: #c4c4c4;;
--background: #faf5f1;
--card: #f5ede8;
--foreground: #3d2417;
--primary-cta: #d4704c;
--secondary-cta: #ffffff;
--accent: #e8a88f;
--background-accent: #b85a3a;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
@@ -495,7 +495,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-dm-sans), sans-serif;
font-family: var(--font-inter-tight), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -508,5 +508,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-dm-sans), sans-serif;
font-family: var(--font-inter-tight), sans-serif;
}

View File

@@ -1271,4 +1271,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -2,7 +2,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import HeroLogoBillboardSplitImage from '@/components/sections/hero/HeroLogoBillboardSplitImage';
import HeroLogo from '@/components/sections/hero/HeroLogo';
import ProductCardFour from '@/components/sections/product/ProductCardFour';
import TagAbout from '@/components/sections/about/TagAbout';
import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen';
@@ -42,7 +42,7 @@ export default function LandingPage() {
</div>
<div id="hero" data-section="hero">
<HeroLogoBillboardSplitImage
<HeroLogo
logoText="DUBAI PREMIUM"
description="Discover luxury real estate investments in Dubai's most prestigious locations. From waterfront villas to downtown penthouses, we connect discerning buyers with Dubai's finest properties."
buttons={[
@@ -51,6 +51,7 @@ export default function LandingPage() {
]}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766676114079-yjuz3xj2.jpg"
imageAlt="Panoramic view of Dubai real estate"
frameStyle="card"
/>
</div>
@@ -304,4 +305,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}