8 Commits

Author SHA1 Message Date
6f76860de0 Update src/app/page.tsx 2026-01-06 14:11:48 +00:00
11f47b3f41 Update src/app/layout.tsx 2026-01-06 14:11:47 +00:00
43eb21e328 Update src/app/page.tsx 2026-01-06 14:08:35 +00:00
2ce6761fdc Update src/app/layout.tsx 2026-01-06 14:08:34 +00:00
e729c0bf31 Update src/app/page.tsx 2026-01-06 13:36:47 +00:00
d9df37a794 Update src/app/layout.tsx 2026-01-06 13:36:46 +00:00
fac1d9d293 Update src/app/globals.css 2026-01-06 13:36:45 +00:00
c8f9f7f86b Update src/app/globals.css 2026-01-06 13:34:26 +00:00
3 changed files with 11 additions and 11 deletions

View File

@@ -4,13 +4,13 @@
/* Base units */
/* --vw is set by ThemeProvider */
--background: #ffffff;;
--card: #fcfcfc;;
--foreground: #000f0fe6;;
--primary-cta: #00c9e8;;
--secondary-cta: #ffffff;;
--accent: #e2e2e2;;
--background-accent: #c4c4c4;;
--background: #000000;;
--card: #1a1a1a;;
--foreground: #ffffffe6;;
--primary-cta: #facc15;;
--secondary-cta: #1a1a1a;;
--accent: #737373;;
--background-accent: #737373;;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);

View File

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

View File

@@ -1,4 +1,4 @@
"use client"
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleMinimal from '@/components/navbar/NavbarStyleMinimal';
@@ -40,7 +40,7 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroBillboardRotatedCarousel
title="Premium Properties in Prime Locations"
title="Premium Properties in Premium Locations"
description="Carefully selected investment opportunities with verified documentation, legal support, and transparent pricing. Start your real estate journey with confidence."
tag="NEW LISTINGS ADDED THIS WEEK"
tagIcon={Sparkles}
@@ -477,4 +477,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}