From ca616cf3fb364508b738fd2554aa81c50efdbd06 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 23 Mar 2026 21:59:59 +0000 Subject: [PATCH] Add src/app/blog/page.tsx --- src/app/blog/page.tsx | 70 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 70 insertions(+) create mode 100644 src/app/blog/page.tsx diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx new file mode 100644 index 0000000..6d9afd6 --- /dev/null +++ b/src/app/blog/page.tsx @@ -0,0 +1,70 @@ +"use client"; + +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import FooterCard from "@/components/sections/footer/FooterCard"; +import BlogCardTwo from "@/components/sections/blog/BlogCardTwo"; +import { Globe, Instagram, Facebook, Linkedin } from "lucide-react"; + +export default function BlogPage() { + return ( + + + + console.log('Read more about freight trends') + }, + { + id: "2", category: "Regulations", title: "IMO 2023: Key Changes and Their Impact on Shipping", excerpt: "Explore the significant regulatory updates from IMO 2023, focusing on environmental compliance, safety standards, and operational implications for maritime operators worldwide.", imageSrc: "https://assets.website-files.com/657416973167123924f35835/65b16076b1f28b76ce8f0148_article_placeholder_02.webp", imageAlt: "IMO 2023 regulation documents", authorName: "Luxuria Team", authorAvatar: "/templates/luxury-travel-agency/contact/contact1.webp", date: "February 1, 2024", onBlogClick: () => console.log('Read more about IMO 2023 regulations') + }, + { + id: "3", category: "Sustainability", title: "The Rise of Green Fuels in the Maritime Industry", excerpt: "A comprehensive look at the emerging market for sustainable marine fuels, including advancements in LNG, methanol, and ammonia, and their role in decarbonizing shipping.", imageSrc: "https://assets.website-files.com/657416973167123924f35835/65b160762c2f6d231e3b2e54_article_placeholder_03.webp", imageAlt: "Green fuel ship concept", authorName: "Luxuria Team", authorAvatar: "/templates/luxury-travel-agency/contact/contact1.webp", date: "February 15, 2024", onBlogClick: () => console.log('Read more about green fuel market') + } + ]} + /> + + + + ); +} \ No newline at end of file