4 Commits

Author SHA1 Message Date
796e46afbe Update src/app/page.tsx 2026-05-09 16:11:52 +00:00
abaaa8fb31 Merge version_2 into main
Merge version_2 into main
2026-05-09 16:11:02 +00:00
29d3a19dfa Update src/app/page.tsx 2026-05-09 16:10:59 +00:00
ce9539920f Merge version_1 into main
Merge version_1 into main
2026-05-09 16:09:38 +00:00

View File

@@ -2,16 +2,16 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactCTA from '@/components/sections/contact/ContactCTA';
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FeatureCardTwentyEight from '@/components/sections/feature/FeatureCardTwentyEight';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import FooterBase from '@/components/sections/footer/FooterBase';
import HeroBillboard from '@/components/sections/hero/HeroBillboard';
import MetricCardThree from '@/components/sections/metrics/MetricCardThree';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import ProductCardThree from '@/components/sections/product/ProductCardThree';
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
import TextAbout from '@/components/sections/about/TextAbout';
import { Award, Star, Zap } from "lucide-react";
import { Award, Star, Zap, Mail, Phone, MapPin } from "lucide-react";
export default function LandingPage() {
return (
@@ -44,7 +44,7 @@ export default function LandingPage() {
background={{ variant: "gradient-bars" }}
title="VISUAL LUXURY"
description="Redefining visual excellence through refined aesthetics and strategic brand clarity. Where sophistication meets digital presence."
buttons={[{ text: "Inquire Now", href: "#contact" }]}
buttons={[{ text: "Start Your Project", href: "#contact" }]}
imageSrc="http://img.b2bpic.net/free-photo/young-beautiful-woman-nature-with-camera-close-up_23-2148877544.jpg"
mediaAnimation="slide-up"
avatars={[
@@ -129,23 +129,22 @@ export default function LandingPage() {
/>
</div>
<div id="contact" data-section="contact">
<ContactCTA
useInvertedBackground={false}
background={{ variant: "plain" }}
tag="Inquiries"
title="Ready to redefine your presence?"
description="Start a conversation with our studio today."
buttons={[{ text: "Contact Us", href: "mailto:inquiries@visualluxury.com" }]}
<ContactCenter
tag="Get in Touch"
title="Let's Create Something Extraordinary"
description="Premium consultation for brands seeking aesthetic distinction."
background={{ variant: "sparkles-gradient" }}
useInvertedBackground={true}
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
<FooterBase
logoText="VISUAL LUXURY"
columns={[
{ title: "Company", items: [{ label: "About", href: "#about" }, { label: "Careers", href: "#" }] },
{ title: "Legal", items: [{ label: "Privacy", href: "#" }, { label: "Terms", href: "#" }] }
{ title: "Navigation", items: [{ label: "Home", href: "#hero" }, { label: "Our Services", href: "#services" }] },
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] },
{ title: "Contact", items: [{ label: "hello@visualluxury.studio", href: "mailto:hello@visualluxury.studio" }, { label: "London, UK", href: "#" }] }
]}
bottomLeftText="© 2024 Visual Luxury"
bottomRightText="Crafted with excellence"
/>
</div>
</ReactLenis>