3 Commits

Author SHA1 Message Date
62c0edf9af Update src/app/page.tsx 2026-03-12 19:51:44 +00:00
fa408bcde9 Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx 2026-03-12 19:51:19 +00:00
89e014a9c3 Update src/app/page.tsx 2026-03-12 19:51:19 +00:00
2 changed files with 27 additions and 46 deletions

View File

@@ -7,9 +7,9 @@ import FeatureCardOne from '@/components/sections/feature/FeatureCardOne';
import FeatureCardNine from '@/components/sections/feature/FeatureCardNine'; import FeatureCardNine from '@/components/sections/feature/FeatureCardNine';
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive'; import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterMedia from '@/components/sections/footer/FooterMedia'; import FooterCard from '@/components/sections/footer/FooterCard';
import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider'; import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider';
import { Facebook, Instagram, Linkedin, Twitter, Mail, MapPin, Phone } from 'lucide-react'; import { Facebook, Instagram, Linkedin, Twitter } from 'lucide-react';
export default function LandingPage() { export default function LandingPage() {
return ( return (
@@ -190,7 +190,7 @@ export default function LandingPage() {
required: true required: true
}} }}
useInvertedBackground={false} useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/businesspeople-waiting-queue-check-counter-with-luggage_107420-95784.jpg?_wi=1" imageSrc="http://img.b2bpic.net/free-photo/businesspeople-waiting-queue-check-counter-with-luggage_107420-95784.jpg"
imageAlt="Luxury travel planning consultation" imageAlt="Luxury travel planning consultation"
mediaAnimation="slide-up" mediaAnimation="slide-up"
mediaPosition="right" mediaPosition="right"
@@ -199,38 +199,15 @@ export default function LandingPage() {
</div> </div>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterMedia <FooterCard
imageSrc="http://img.b2bpic.net/free-photo/businesspeople-waiting-queue-check-counter-with-luggage_107420-95784.jpg?_wi=2"
imageAlt="Luxe Voyage - Global travel destinations"
logoText="Luxe Voyage" logoText="Luxe Voyage"
copyrightText="© 2024 Luxe Voyage. All rights reserved. Crafting journeys, creating memories." copyrightText="© 2024 Luxe Voyage. All rights reserved. Crafting journeys, creating memories."
columns={[ socialLinks={[
{ { icon: Facebook, href: "https://facebook.com", ariaLabel: "Follow us on Facebook" },
title: "Destinations", items: [ { icon: Instagram, href: "https://instagram.com", ariaLabel: "Follow us on Instagram" },
{ label: "Africa Safari", href: "#" }, { icon: Linkedin, href: "https://linkedin.com", ariaLabel: "Connect with us on LinkedIn" },
{ label: "European Luxury", href: "#" }, { icon: Twitter, href: "https://twitter.com", ariaLabel: "Follow us on Twitter" }
{ label: "Asian Escapes", href: "#" },
{ label: "Island Retreats", href: "#" }
]
},
{
title: "Services", items: [
{ label: "Private Jet Charters", href: "#" },
{ label: "Concierge Service", href: "#" },
{ label: "Custom Itineraries", href: "#" },
{ label: "VIP Experiences", href: "#" }
]
},
{
title: "Company", items: [
{ label: "About Us", href: "#" },
{ label: "Contact", href: "#" },
{ label: "Blog", href: "#" },
{ label: "Careers", href: "#" }
]
}
]} ]}
onPrivacyClick={() => {}}
/> />
</div> </div>
</ThemeProvider> </ThemeProvider>

View File

@@ -3,32 +3,36 @@ import React from 'react';
interface SvgTextLogoProps { interface SvgTextLogoProps {
text: string; text: string;
className?: string; className?: string;
containerClassName?: string;
textClassName?: string; textClassName?: string;
dominantBaseline?: 'auto' | 'hanging' | 'mathematical' | 'central' | 'middle';
} }
const SvgTextLogo: React.FC<SvgTextLogoProps> = ({ const SvgTextLogo: React.FC<SvgTextLogoProps> = ({
text, text,
className = '', className = '',
containerClassName = 'w-full h-full',
textClassName = '', textClassName = '',
dominantBaseline = 'central',
}) => { }) => {
const characters = text.split('');
return ( return (
<svg <svg
viewBox="0 0 400 100" viewBox={`0 0 ${text.length * 100} 120`}
className={`w-full h-auto ${className}`} className={containerClassName}
preserveAspectRatio="xMidYMid meet" preserveAspectRatio="xMidYMid meet"
> >
<text {characters.map((char, index) => (
x="50%" <text
y="50%" key={index}
textAnchor="middle" x={index * 100 + 50}
dominantBaseline={dominantBaseline} y={90}
className={`text-3xl font-bold ${textClassName}`} textAnchor="middle"
fill="currentColor" className={`text-4xl font-bold fill-current ${textClassName}`}
> dominantBaseline="middle"
{text} >
</text> {char}
</text>
))}
</svg> </svg>
); );
}; };