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 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 FooterCard from '@/components/sections/footer/FooterCard';
|
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||||
import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider';
|
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() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
@@ -178,7 +178,7 @@ export default function LandingPage() {
|
|||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactSplitForm
|
<ContactSplitForm
|
||||||
title="Begin Your Journey"
|
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={[
|
inputs={[
|
||||||
{ name: "name", type: "text", placeholder: "Full Name", required: true },
|
{ name: "name", type: "text", placeholder: "Full Name", required: true },
|
||||||
{ name: "email", type: "email", placeholder: "Email Address", required: true },
|
{ name: "email", type: "email", placeholder: "Email Address", required: true },
|
||||||
@@ -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"
|
imageSrc="http://img.b2bpic.net/free-photo/businesspeople-waiting-queue-check-counter-with-luggage_107420-95784.jpg?_wi=1"
|
||||||
imageAlt="Luxury travel planning consultation"
|
imageAlt="Luxury travel planning consultation"
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
mediaPosition="right"
|
mediaPosition="right"
|
||||||
@@ -199,15 +199,38 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<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"
|
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."
|
||||||
socialLinks={[
|
columns={[
|
||||||
{ icon: Facebook, href: "https://facebook.com", ariaLabel: "Follow us on Facebook" },
|
{
|
||||||
{ icon: Instagram, href: "https://instagram.com", ariaLabel: "Follow us on Instagram" },
|
title: "Destinations", items: [
|
||||||
{ icon: Linkedin, href: "https://linkedin.com", ariaLabel: "Connect with us on LinkedIn" },
|
{ label: "Africa Safari", href: "#" },
|
||||||
{ icon: Twitter, href: "https://twitter.com", ariaLabel: "Follow us on Twitter" }
|
{ 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>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
|
|||||||
@@ -3,36 +3,32 @@ 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 ${text.length * 100} 120`}
|
viewBox="0 0 400 100"
|
||||||
className={containerClassName}
|
className={`w-full h-auto ${className}`}
|
||||||
preserveAspectRatio="xMidYMid meet"
|
preserveAspectRatio="xMidYMid meet"
|
||||||
>
|
>
|
||||||
{characters.map((char, index) => (
|
<text
|
||||||
<text
|
x="50%"
|
||||||
key={index}
|
y="50%"
|
||||||
x={index * 100 + 50}
|
textAnchor="middle"
|
||||||
y={90}
|
dominantBaseline={dominantBaseline}
|
||||||
textAnchor="middle"
|
className={`text-3xl font-bold ${textClassName}`}
|
||||||
className={`text-4xl font-bold fill-current ${textClassName}`}
|
fill="currentColor"
|
||||||
dominantBaseline="middle"
|
>
|
||||||
>
|
{text}
|
||||||
{char}
|
</text>
|
||||||
</text>
|
|
||||||
))}
|
|
||||||
</svg>
|
</svg>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user