17 Commits

Author SHA1 Message Date
4b521c8e92 Update src/app/styles/variables.css 2026-05-07 14:08:51 +00:00
3966287d4a Update src/app/page.tsx 2026-05-07 14:08:50 +00:00
03654e5714 Merge version_7 into main
Merge version_7 into main
2026-05-07 14:08:20 +00:00
6a1d010d22 Update theme fonts 2026-05-07 14:08:17 +00:00
229e773e5d Update theme fonts 2026-05-07 14:08:17 +00:00
216b5c60d5 Merge version_7 into main
Merge version_7 into main
2026-05-07 14:08:14 +00:00
a10d32b50b Update theme fonts 2026-05-07 14:08:11 +00:00
4878e05af8 Update theme fonts 2026-05-07 14:08:10 +00:00
1ee0f0db97 Merge version_7 into main
Merge version_7 into main
2026-05-07 14:07:25 +00:00
85ad12ae3e Update theme colors 2026-05-07 14:07:22 +00:00
e4b3a9f519 Merge version_6 into main
Merge version_6 into main
2026-05-07 14:07:18 +00:00
8ed259d982 Merge version_5 into main
Merge version_5 into main
2026-05-07 14:07:16 +00:00
c81e42ef68 Merge version_4 into main
Merge version_4 into main
2026-05-07 14:06:54 +00:00
16ae781275 Merge version_3 into main
Merge version_3 into main
2026-05-07 14:06:44 +00:00
08847a255b Merge version_2 into main
Merge version_2 into main
2026-05-07 14:05:43 +00:00
7191f703d9 Update src/app/page.tsx 2026-05-07 14:05:40 +00:00
e92292363e Merge version_1 into main
Merge version_1 into main
2026-05-07 14:04:25 +00:00
4 changed files with 30 additions and 22 deletions

View File

@@ -7,6 +7,9 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag"; import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script"; import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Lato } from "next/font/google"; import { Lato } from "next/font/google";
import { Montserrat } from "next/font/google";
import { Manrope } from "next/font/google";
import { DM_Sans } from "next/font/google";
@@ -25,10 +28,15 @@ export const metadata: Metadata = {
}, },
}; };
const lato = Lato({
variable: "--font-lato",
const manrope = Manrope({
variable: "--font-manrope",
subsets: ["latin"],
});
const dmSans = DM_Sans({
variable: "--font-dm-sans",
subsets: ["latin"], subsets: ["latin"],
weight: ["100", "300", "400", "700", "900"],
}); });
export default function RootLayout({ export default function RootLayout({
@@ -39,7 +47,7 @@ export default function RootLayout({
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en" suppressHydrationWarning>
<ServiceWrapper> <ServiceWrapper>
<body className={`${lato.variable} antialiased`}> <body className={`${manrope.variable} ${dmSans.variable} antialiased`}>
<Tag /> <Tag />
{children} {children}
<script <script

View File

@@ -5,7 +5,7 @@ import ReactLenis from "lenis/react";
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FaqBase from '@/components/sections/faq/FaqBase'; import FaqBase from '@/components/sections/faq/FaqBase';
import FeatureCardTwentyEight from '@/components/sections/feature/FeatureCardTwentyEight'; import FeatureCardTwentyEight from '@/components/sections/feature/FeatureCardTwentyEight';
import FooterBase from '@/components/sections/footer/FooterBase'; import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import HeroSplitTestimonial from '@/components/sections/hero/HeroSplitTestimonial'; import HeroSplitTestimonial from '@/components/sections/hero/HeroSplitTestimonial';
import MediaAbout from '@/components/sections/about/MediaAbout'; import MediaAbout from '@/components/sections/about/MediaAbout';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
@@ -88,7 +88,7 @@ export default function LandingPage() {
textboxLayout="default" textboxLayout="default"
useInvertedBackground={false} useInvertedBackground={false}
features={[ features={[
{ id: "f1", title: "Private Logistics", subtitle: "Luxury fleet at your disposal.", category: "Transport", value: "24/7" }, { id: "f1", title: "Private Logistics", subtitle: "Luxury fleet at your disposal.", category: "Transport", value: "Around-the-clock support" },
{ id: "f2", title: "Secret Access", subtitle: "Entry to places few ever see.", category: "Exclusivity", value: "Unlimited" }, { id: "f2", title: "Secret Access", subtitle: "Entry to places few ever see.", category: "Exclusivity", value: "Unlimited" },
{ id: "f3", title: "Expert Concierge", subtitle: "Your dedicated personal assistant.", category: "Support", value: "1:1" }, { id: "f3", title: "Expert Concierge", subtitle: "Your dedicated personal assistant.", category: "Support", value: "1:1" },
]} ]}
@@ -173,12 +173,12 @@ export default function LandingPage() {
</div> </div>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterBase <FooterLogoEmphasis
columns={[
{ title: "Navigate", items: [{ label: "Home", href: "#hero" }, { label: "Experiences", href: "#products" }] },
{ title: "Information", items: [{ label: "About Us", href: "#about" }, { label: "Privacy Policy", href: "#" }] },
]}
logoText="NISÉL TOUR" logoText="NISÉL TOUR"
columns={[
{ items: [{ label: "Home", href: "#hero" }, { label: "Experiences", href: "#products" }] },
{ items: [{ label: "About Us", href: "#about" }, { label: "Privacy Policy", href: "#" }] },
]}
/> />
</div> </div>
</ReactLenis> </ReactLenis>

View File

@@ -11,7 +11,7 @@ html {
body { body {
background-color: var(--background); background-color: var(--background);
color: var(--foreground); color: var(--foreground);
font-family: var(--font-lato), sans-serif; font-family: var(--font-dm-sans), sans-serif;
position: relative; position: relative;
min-height: 100vh; min-height: 100vh;
overscroll-behavior: none; overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4, h4,
h5, h5,
h6 { h6 {
font-family: var(--font-lato), sans-serif; font-family: var(--font-manrope), sans-serif;
} }

View File

@@ -10,15 +10,15 @@
--accent: #ffffff; --accent: #ffffff;
--background-accent: #ffffff; */ --background-accent: #ffffff; */
--background: #e3deea; --background: #020617;
--card: #ffffff; --card: #0f172a;
--foreground: #1f2027; --foreground: #e2e8f0;
--primary-cta: #1f2027; --primary-cta: #c4d8f9;
--primary-cta-text: #e3deea; --primary-cta-text: #ffffff;
--secondary-cta: #ffffff; --secondary-cta: #041633;
--secondary-cta-text: #1f2027; --secondary-cta-text: #ffffff;
--accent: #627dc6; --accent: #2d30f3;
--background-accent: #627dc6; --background-accent: #1d4ed8;
/* text sizing - set by ThemeProvider */ /* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);