Compare commits
11 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 4b4b5b98dc | |||
| c666fc439b | |||
| 0c010c23d1 | |||
| 1a1856e11c | |||
| 8954f328a3 | |||
| a7818c1194 | |||
| 0e8f32624c | |||
| 2726439c2b | |||
| 878f214ac0 | |||
| 316473d574 | |||
| 3aebece356 |
@@ -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 FooterCard from '@/components/sections/footer/FooterCard';
|
||||
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||
import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider';
|
||||
import { Facebook, Instagram, Linkedin, Twitter } from 'lucide-react';
|
||||
import { Facebook, Instagram, Linkedin, Twitter, Mail, MapPin, Phone } from 'lucide-react';
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -178,7 +178,7 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplitForm
|
||||
title="Begin Your Journey"
|
||||
description="Our expert travel consultants are ready to craft your perfect itinerary. Share your vision, and let us make it reality."
|
||||
description="Our expert travel consultants will respond within 24 hours to craft your perfect itinerary. Share your vision, and let us make it reality."
|
||||
inputs={[
|
||||
{ name: "name", type: "text", placeholder: "Full Name", required: true },
|
||||
{ name: "email", type: "email", placeholder: "Email Address", required: true },
|
||||
@@ -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"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/businesspeople-waiting-queue-check-counter-with-luggage_107420-95784.jpg?_wi=1"
|
||||
imageAlt="Luxury travel planning consultation"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
@@ -199,15 +199,38 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterCard
|
||||
<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"
|
||||
logoText="Luxe Voyage"
|
||||
copyrightText="© 2024 Luxe Voyage. All rights reserved. Crafting journeys, creating memories."
|
||||
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" }
|
||||
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: "#" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
onPrivacyClick={() => {}}
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
|
||||
@@ -3,36 +3,32 @@ 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 ${text.length * 100} 120`}
|
||||
className={containerClassName}
|
||||
viewBox="0 0 400 100"
|
||||
className={`w-full h-auto ${className}`}
|
||||
preserveAspectRatio="xMidYMid meet"
|
||||
>
|
||||
{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>
|
||||
))}
|
||||
<text
|
||||
x="50%"
|
||||
y="50%"
|
||||
textAnchor="middle"
|
||||
dominantBaseline={dominantBaseline}
|
||||
className={`text-3xl font-bold ${textClassName}`}
|
||||
fill="currentColor"
|
||||
>
|
||||
{text}
|
||||
</text>
|
||||
</svg>
|
||||
);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user