27 Commits

Author SHA1 Message Date
d14aeed95d Update src/app/page.tsx 2026-05-07 14:29:02 +00:00
1e8944f07a Update src/app/page.tsx 2026-05-07 14:28:05 +00:00
997dbeb737 Update src/app/page.tsx 2026-05-07 14:22:38 +00:00
48adf4d5d1 Update src/app/page.tsx 2026-05-07 14:11:49 +00:00
ac6dc11843 Merge version_8 into main
Merge version_8 into main
2026-05-07 14:08:54 +00:00
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
0073e7c142 Update theme colors 2026-05-07 14:07:14 +00:00
3fd7a8b1bf Update theme colors 2026-05-07 14:07:12 +00:00
c81e42ef68 Merge version_4 into main
Merge version_4 into main
2026-05-07 14:06:54 +00:00
b7bc2eed8e Update theme colors 2026-05-07 14:06:51 +00:00
16ae781275 Merge version_3 into main
Merge version_3 into main
2026-05-07 14:06:44 +00:00
7b1a31ee46 Update theme colors 2026-05-07 14:06:41 +00:00
5c58beef81 Update theme colors 2026-05-07 14:06:32 +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 35 additions and 26 deletions

View File

@@ -7,6 +7,9 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
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"],
weight: ["100", "300", "400", "700", "900"],
});
export default function RootLayout({
@@ -39,7 +47,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${lato.variable} antialiased`}>
<body className={`${manrope.variable} ${dmSans.variable} antialiased`}>
<Tag />
{children}
<script

View File

@@ -5,7 +5,7 @@ import ReactLenis from "lenis/react";
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FaqBase from '@/components/sections/faq/FaqBase';
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 MediaAbout from '@/components/sections/about/MediaAbout';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
@@ -44,8 +44,9 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroSplitTestimonial
background={{ variant: "gradient-bars" }}
title="Discover Albanias Unseen Luxury"
description="Experience curated, bespoke journeys through the hidden gems of the Adriatic and the dramatic beauty of the Albanian Alps with NISÉL TOUR."
title="NISÉL
TOUR "
description="dfdsfssd"
testimonials={[
{ name: "Elena V.", handle: "@elena_travels", testimonial: "An unparalleled journey through Albania. Every detail was meticulously curated for maximum comfort.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/love-couple-pretty-woman-man-hats-outdoor_624325-3076.jpg" },
{ name: "Mark D.", handle: "@md_global", testimonial: "NISÉL TOUR defined luxury for us. Exceptional local knowledge combined with high-end execution.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/close-up-man-holding-photo-camera_23-2149049085.jpg" },
@@ -76,7 +77,7 @@ export default function LandingPage() {
<div id="about" data-section="about">
<MediaAbout
useInvertedBackground={false}
title="Crafting Extraordinary Moments"
title="ciao Extraordinary Moments"
description="At NISÉL TOUR, we believe luxury is found in the intersection of authenticity and excellence. We curate private, exclusive itineraries that reveal the soul of Albania without compromising on sophistication."
imageSrc="http://img.b2bpic.net/free-photo/woman-posing-breathtaking-view_23-2148347720.jpg"
/>
@@ -88,7 +89,7 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={false}
features={[
{ id: "f1", title: "Private Logistics", subtitle: "Luxury fleet at your disposal.", category: "Transport", value: "24/7" },
{ id: "f1", title: "Private dddd", 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: "f3", title: "Expert Concierge", subtitle: "Your dedicated personal assistant.", category: "Support", value: "1:1" },
]}
@@ -148,7 +149,7 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={false}
faqs={[
{ id: "q1", title: "How do I book a tour?", content: "Contact us directly via our form or email to start your consultation." },
{ id: "q1", title: "How do I book a tour?", content: "Fill out the form below or contact our concierge directly to initiate your custom consultation." },
{ id: "q2", title: "Is accommodation included?", content: "All our luxury tours include stays at hand-picked boutique hotels or villas." },
{ id: "q3", title: "Can I customize my trip?", content: "Yes, all itineraries are fully bespoke to your preferences." },
]}
@@ -173,12 +174,12 @@ export default function LandingPage() {
</div>
<div id="footer" data-section="footer">
<FooterBase
columns={[
{ title: "Navigate", items: [{ label: "Home", href: "#hero" }, { label: "Experiences", href: "#products" }] },
{ title: "Information", items: [{ label: "About Us", href: "#about" }, { label: "Privacy Policy", href: "#" }] },
]}
<FooterLogoEmphasis
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>
</ReactLenis>

View File

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

View File

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