174 lines
9.4 KiB
TypeScript
174 lines
9.4 KiB
TypeScript
"use client";
|
|
|
|
import { useEffect, useState } from "react";
|
|
import ReactLenis from "lenis/react";
|
|
import BlogCardTwo from '@/components/sections/blog/BlogCardTwo';
|
|
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
|
|
|
type BlogPost = {
|
|
id: string;
|
|
category: string | string[];
|
|
title: string;
|
|
excerpt: string;
|
|
imageSrc: string;
|
|
imageAlt?: string;
|
|
authorName: string;
|
|
authorAvatar?: string;
|
|
date: string;
|
|
onBlogClick?: () => void;
|
|
};
|
|
|
|
const defaultPosts: BlogPost[] = [
|
|
{
|
|
id: "1", category: ["Design", "Culture"],
|
|
title: "UX review presentations", excerpt: "How do you create compelling presentations that wow your colleagues and impress your managers?", imageSrc: "/placeholders/placeholder3.avif", imageAlt: "Abstract design with purple and silver tones", authorName: "Olivia Rhye", authorAvatar: "/placeholders/placeholder3.avif", date: "20 Jan 2025", onBlogClick: () => console.log("Blog 1 clicked"),
|
|
},
|
|
{
|
|
id: "2", category: "Travel", title: "Building scalable applications", excerpt: "Learn the best practices for building applications that can handle millions of users.", imageSrc: "/placeholders/placeholder4.webp", imageAlt: "Development workspace", authorName: "John Smith", authorAvatar: "/placeholders/placeholder4.webp", date: "18 Jan 2025", onBlogClick: () => console.log("Blog 2 clicked"),
|
|
},
|
|
{
|
|
id: "3", category: "Culture", title: "Content strategy essentials", excerpt: "Discover how to create a content strategy that drives engagement and conversions.", imageSrc: "/placeholders/placeholder3.avif", imageAlt: "Marketing strategy board", authorName: "Sarah Johnson", authorAvatar: "/placeholders/placeholder3.avif", date: "15 Jan 2025", onBlogClick: () => console.log("Blog 3 clicked"),
|
|
},
|
|
{
|
|
id: "4", category: ["Travel", "Guide"],
|
|
title: "Product management 101", excerpt: "Everything you need to know to become an effective product manager in 2025.", imageSrc: "/placeholders/placeholder4.webp", imageAlt: "Product planning session", authorName: "Mike Davis", authorAvatar: "/placeholders/placeholder4.webp", date: "12 Jan 2025", onBlogClick: () => console.log("Blog 4 clicked"),
|
|
},
|
|
];
|
|
|
|
export default function BlogPage() {
|
|
const [posts, setPosts] = useState<BlogPost[]>(defaultPosts);
|
|
const [isLoading, setIsLoading] = useState(true);
|
|
|
|
useEffect(() => {
|
|
const fetchPosts = async () => {
|
|
try {
|
|
const apiUrl = process.env.NEXT_PUBLIC_API_URL;
|
|
const projectId = process.env.NEXT_PUBLIC_PROJECT_ID;
|
|
|
|
if (!apiUrl || !projectId) {
|
|
console.warn("NEXT_PUBLIC_API_URL or NEXT_PUBLIC_PROJECT_ID not configured, using default posts");
|
|
setIsLoading(false);
|
|
return;
|
|
}
|
|
|
|
const url = `${apiUrl}/posts/${projectId}?status=published`;
|
|
const response = await fetch(url, {
|
|
method: "GET", headers: {
|
|
"Content-Type": "application/json"},
|
|
});
|
|
|
|
if (response.ok) {
|
|
const resp = await response.json();
|
|
const data = resp.data;
|
|
if (Array.isArray(data) && data.length > 0) {
|
|
const mappedPosts = data.map((post: any) => ({
|
|
id: post.id || String(Math.random()),
|
|
category: post.category || "General", title: post.title || "Untitled", excerpt: post.excerpt || post.content.slice(0, 30) || "", imageSrc: post.imageUrl || "/placeholders/placeholder3.avif", imageAlt: post.imageAlt || post.title || "", authorName: post.author?.name || "Anonymous", authorAvatar: post.author?.avatar || "/placeholders/placeholder3.avif", date: post.date || post.createdAt || new Date().toLocaleDateString("en-GB", { day: "numeric", month: "short", year: "numeric" }),
|
|
onBlogClick: () => console.log(`Blog ${post.id} clicked`),
|
|
}));
|
|
setPosts(mappedPosts);
|
|
}
|
|
} else {
|
|
console.warn(`API request failed with status ${response.status}, using default posts`);
|
|
}
|
|
} catch (error) {
|
|
console.error("Error fetching posts:", error);
|
|
} finally {
|
|
setIsLoading(false);
|
|
}
|
|
};
|
|
|
|
fetchPosts();
|
|
}, []);
|
|
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="text-shift"
|
|
defaultTextAnimation="background-highlight"
|
|
borderRadius="soft"
|
|
contentWidth="mediumSmall"
|
|
sizing="mediumLargeSizeMediumTitles"
|
|
background="none"
|
|
cardStyle="layered-gradient"
|
|
primaryButtonStyle="double-inset"
|
|
secondaryButtonStyle="radial-glow"
|
|
headingFontWeight="medium"
|
|
>
|
|
<ReactLenis root>
|
|
<div className="min-h-screen bg-background">
|
|
<NavbarStyleFullscreen
|
|
navItems={[
|
|
{ name: "Home", id: "/home" },
|
|
{ name: "Home", id: "home" },
|
|
{ name: "Destinations", id: "destinations" },
|
|
{ name: "Culture", id: "culture" },
|
|
{ name: "Plan Your Visit", id: "contact" },
|
|
{ name: "Blog", id: "blog" }
|
|
]}
|
|
brandName="Estonia"
|
|
bottomLeftText="Discover the North"
|
|
bottomRightText="visit@estonia.com"
|
|
/>
|
|
|
|
{isLoading ? (
|
|
<div className="w-content-width mx-auto py-20 text-center">
|
|
<p className="text-foreground">Loading posts...</p>
|
|
</div>
|
|
) : (
|
|
<BlogCardTwo
|
|
blogs={posts}
|
|
title="Discover Estonia's Stories"
|
|
description="Explore the rich culture, stunning landscapes, and unique experiences that make Estonia a Nordic gem waiting to be discovered."
|
|
tag="Travel Blog"
|
|
textboxLayout="default"
|
|
useInvertedBackground="noInvert"
|
|
animationType="slide-up"
|
|
carouselMode="buttons"
|
|
/>
|
|
)}
|
|
|
|
<FooterBaseCard
|
|
logoText="Estonia"
|
|
columns={[
|
|
{
|
|
title: "Explore", items: [
|
|
{ label: "Destinations", href: "#destinations" },
|
|
{ label: "Cultural Sites", href: "#culture" },
|
|
{ label: "Islands & Nature", href: "#nature" },
|
|
{ label: "Travel Guide", href: "#guide" }
|
|
]
|
|
},
|
|
{
|
|
title: "Visit", items: [
|
|
{ label: "Plan Your Trip", href: "#contact" },
|
|
{ label: "Accommodation", href: "#" },
|
|
{ label: "Transportation", href: "#" },
|
|
{ label: "Visa Information", href: "#" }
|
|
]
|
|
},
|
|
{
|
|
title: "Discover", items: [
|
|
{ label: "Estonian Culture", href: "#culture" },
|
|
{ label: "Local Events", href: "#" },
|
|
{ label: "Food & Dining", href: "#" },
|
|
{ label: "Shopping", href: "#" }
|
|
]
|
|
},
|
|
{
|
|
title: "Connect", items: [
|
|
{ label: "Contact Us", href: "mailto:visit@estonia.com" },
|
|
{ label: "Social Media", href: "#" },
|
|
{ label: "Newsletter", href: "#contact" },
|
|
{ label: "Feedback", href: "#" }
|
|
]
|
|
}
|
|
]}
|
|
copyrightText="© 2025 Estonia Tourism. All rights reserved. Discover the North."
|
|
/>
|
|
</div>
|
|
</ReactLenis>
|
|
</ThemeProvider>
|
|
);
|
|
} |