This commit is contained in:
Tomas Dvorak
2025-11-11 10:29:30 +01:00
parent d5b4faea61
commit 8762bde4bf
139 changed files with 7240 additions and 2870 deletions
+6 -1
View File
@@ -23,6 +23,7 @@ import MainLayout from '../components/layout/MainLayout';
import { API_URL } from '../services/api';
import PhotoModal from '../components/gallery/PhotoModal';
import CommentsSection from '../components/comments/CommentsSection';
import { Helmet } from 'react-helmet-async';
interface Photo {
id: string;
@@ -160,6 +161,10 @@ const AlbumDetailPage: React.FC = () => {
return (
<MainLayout>
<Helmet>
<title>{album.title} | Fotogalerie</title>
<meta name="description" content={`Fotogalerie: ${album.title}.`} />
</Helmet>
<Box bg={bgColor} minH="100vh" py={8}>
<Container maxW="7xl">
{/* Breadcrumbs */}
@@ -233,7 +238,7 @@ const AlbumDetailPage: React.FC = () => {
📸 Všechny fotografie jsou z platformy{' '}
<Text
as="a"
href="https://zonerama.com"
href={album.url || 'https://zonerama.com'}
target="_blank"
rel="noopener noreferrer"
fontWeight="600"