Update src/app/page.tsx

This commit is contained in:
2026-03-23 22:11:50 +00:00
parent 561333c4c6
commit 38b6e221d2

View File

@@ -11,7 +11,7 @@ import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloating
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import { Sparkles, Plane, Compass, Instagram, Facebook, Linkedin } from "lucide-react";
import BlogCardOne from '@/components/sections/blog/BlogCardOne';
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FooterCard from "@/components/sections/footer/FooterCard";
export default function LuxuryTravelAgencyTemplatePage() {
@@ -36,7 +36,7 @@ export default function LuxuryTravelAgencyTemplatePage() {
{ name: "Destinations", id: "destinations" },
{ name: "Blog", id: "blog" },
{ name: "Reviews", id: "reviews" },
{ name: "Contact", id: "/contact" },
{ name: "Contact", id: "/contact" }
]}
brandName="Maritime Solutions"
button={{ text: "Connect With Us", href: "/contact" }}
@@ -46,7 +46,7 @@ export default function LuxuryTravelAgencyTemplatePage() {
description="Navigate the complexities of global shipping with our expert insights and tailored logistics solutions."
buttons={[
{ text: "Explore Insights", href: "#blog" },
{ text: "Contact Us", href: "/contact" },
{ text: "Contact Us", href: "/contact" }
]}
slides={[
{ imageSrc: "/templates/luxury-travel-agency/hero/hero1.webp", imageAlt: "Large cargo ship at sea" },
@@ -63,10 +63,10 @@ export default function LuxuryTravelAgencyTemplatePage() {
{ type: "image", src: "/templates/luxury-travel-agency/hero/hero3.jpg", alt: "Cargo" },
{ type: "text", content: "comprehensive solutions for" },
{ type: "image", src: "/templates/luxury-travel-agency/hero/hero4.jpg", alt: "Shipping" },
{ type: "text", content: "global maritime logistics" },
{ type: "text", content: "global maritime logistics" }
]}
buttons={[
{ text: "Our Expertise", href: "#" },
{ text: "Our Expertise", href: "#" }
]}
useInvertedBackground={false}
/>
@@ -106,18 +106,18 @@ export default function LuxuryTravelAgencyTemplatePage() {
{
id: 1,
title: "Consult & Analyze", description: "Discuss your specific needs and current logistics challenges.", phoneOne: { imageSrc: "/templates/luxury-travel-agency/phone/phone5.webp", imageAlt: "Consultation session" },
phoneTwo: { imageSrc: "/templates/luxury-travel-agency/phone/phone6.webp", imageAlt: "Data analysis" },
phoneTwo: { imageSrc: "/templates/luxury-travel-agency/phone/phone6.webp", imageAlt: "Data analysis" }
},
{
id: 2,
title: "Strategize & Plan", description: "Develop a tailored maritime logistics strategy and detailed action plan.", phoneOne: { imageSrc: "/templates/luxury-travel-agency/phone/phone3.webp", imageAlt: "Strategic planning" },
phoneTwo: { imageSrc: "/templates/luxury-travel-agency/phone/phone4.webp", imageAlt: "Detailed itinerary" },
phoneTwo: { imageSrc: "/templates/luxury-travel-agency/phone/phone4.webp", imageAlt: "Detailed itinerary" }
},
{
id: 3,
title: "Execute & Monitor", description: "Implement solutions and provide continuous monitoring for optimal performance.", phoneOne: { imageSrc: "/templates/luxury-travel-agency/phone/phone1.webp", imageAlt: "Logistics execution" },
phoneTwo: { imageSrc: "/templates/luxury-travel-agency/phone/phone2.webp", imageAlt: "Monitoring dashboard" },
},
phoneTwo: { imageSrc: "/templates/luxury-travel-agency/phone/phone2.webp", imageAlt: "Monitoring dashboard" }
}
]}
/>
<FeatureCardMedia
@@ -140,7 +140,7 @@ export default function LuxuryTravelAgencyTemplatePage() {
{
id: "5", title: "Dubai", description: "A strategic Middle East hub connecting East and West.", tag: "Middle East", imageSrc: "/templates/luxury-travel-agency/destination/destination3.webp", imageAlt: "Port of Jebel Ali, Dubai"},
{
id: "6", title: "Port of Santos", description: "Latin America's busiest port, crucial for agricultural exports.", tag: "South America", imageSrc: "/templates/luxury-travel-agency/destination/destination2.webp", imageAlt: "Port of Santos, Brazil"},
id: "6", title: "Port of Santos", description: "Latin America's busiest port, crucial for agricultural exports.", tag: "South America", imageSrc: "/templates/luxury-travel-agency/destination/destination2.webp", imageAlt: "Port of Santos, Brazil"}
]}
/>
<BlogCardOne
@@ -175,27 +175,20 @@ export default function LuxuryTravelAgencyTemplatePage() {
{
id: "2", name: "EcoShip Innovations", date: "November 2024", title: "Pioneering green maritime solutions.", quote: "Their guidance on IMO 2023 compliance and green fuel adoption was invaluable. Maritime Solutions is a true partner in sustainability.", tag: "Sustainability", avatarSrc: "/templates/luxury-travel-agency/testimonial/testimonial2.webp", avatarAlt: "EcoShip Innovations Founder", imageSrc: "/templates/luxury-travel-agency/testimonial/testimonial2.webp", imageAlt: "Green cargo ship"},
{
id: "3", name: "PortLink Operators", date: "October 2024", title: "Optimized operations and reduced overhead.", quote: "From port logistics to intermodal solutions, Maritime Solutions optimized our operations, leading to significant cost savings and improved throughput.", tag: "Port Operations", avatarSrc: "/templates/luxury-travel-agency/testimonial/testimonial3.webp", avatarAlt: "PortLink Operations Director", imageSrc: "/templates/luxury-travel-agency/testimonial/testimonial3.webp", imageAlt: "Port with cranes"},
id: "3", name: "PortLink Operators", date: "October 2024", title: "Optimized operations and reduced overhead.", quote: "From port logistics to intermodal solutions, Maritime Solutions optimized our operations, leading to significant cost savings and improved throughput.", tag: "Port Operations", avatarSrc: "/templates/luxury-travel-agency/testimonial/testimonial3.webp", avatarAlt: "PortLink Operations Director", imageSrc: "/templates/luxury-travel-agency/testimonial/testimonial3.webp", imageAlt: "Port with cranes"}
]}
/>
<ContactCTA
tag="Get in Touch"
title="Connect with Our Experts"
description="Have questions about maritime logistics or need tailored solutions? Reach out to us."
buttons={[{ text: "Contact Us Now", href: "/contact" }]}
background={{ variant: "plain" }}
useInvertedBackground={false}
/>
<FooterCard
logoText="Maritime Solutions"
copyrightText="© 2025 Maritime Solutions | Global Logistics & Insights"
socialLinks={[
{ icon: Instagram, href: "#", ariaLabel: "Instagram" },
{ icon: Facebook, href: "#", ariaLabel: "Facebook" },
{ icon: Linkedin, href: "#", ariaLabel: "LinkedIn" },
{ icon: Linkedin, href: "#", ariaLabel: "LinkedIn" }
]}
/>
</ReactLenis>
</ThemeProvider>
);
}
}