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 TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
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 { Facebook, Instagram, Linkedin, Twitter, Mail, MapPin, Phone } from 'lucide-react';
import { Facebook, Instagram, Linkedin, Twitter } from 'lucide-react';
export default function LandingPage() {
return (
@@ -190,7 +190,7 @@ export default function LandingPage() {
required: true
}}
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"
mediaAnimation="slide-up"
mediaPosition="right"
@@ -199,38 +199,15 @@ export default function LandingPage() {
</div>
<div id="footer" data-section="footer">
<FooterMedia
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"
<FooterCard
logoText="Luxe Voyage"
copyrightText="© 2024 Luxe Voyage. All rights reserved. Crafting journeys, creating memories."
columns={[
{
title: "Destinations", items: [
{ label: "Africa Safari", href: "#" },
{ label: "European Luxury", href: "#" },
{ 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: "#" }
]
}
socialLinks={[
{ icon: Facebook, href: "https://facebook.com", ariaLabel: "Follow us on Facebook" },
{ icon: Instagram, href: "https://instagram.com", ariaLabel: "Follow us on Instagram" },
{ icon: Linkedin, href: "https://linkedin.com", ariaLabel: "Connect with us on LinkedIn" },
{ icon: Twitter, href: "https://twitter.com", ariaLabel: "Follow us on Twitter" }
]}
onPrivacyClick={() => {}}
/>
</div>
</ThemeProvider>

View File

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