import React from 'react'; import { Head, Link, usePage } from '@inertiajs/react'; import MarketingLayout from '@/layouts/marketing/MarketingLayout'; interface Props { post: { id: number; title: string; excerpt?: string; content: string; featured_image?: string; published_at: string; author?: { name: string }; slug: string; }; } const BlogShow: React.FC = ({ post }) => { return ( {/* Hero Section */}

{post.title}

Von {post.author?.name || 'Dem Fotospiel Team'} | {new Date(post.published_at).toLocaleDateString('de-DE')}

{post.featured_image && ( {post.title} )}
{/* Post Content */}
{/* Back to Blog */}
Zurück zum Blog
); }; export default BlogShow;