This commit is contained in:
cdricms
2025-02-28 20:14:30 +01:00
parent 3e53c67a4d
commit 3c6038bce1
5 changed files with 6 additions and 6 deletions

View File

@@ -77,7 +77,7 @@ export default function PhotoGallery({ user }: { user: IUser }) {
return ( return (
<div className="container mx-auto px-4 py-8"> <div className="container mx-auto px-4 py-8">
<div className="flex justify-between items-center mb-8"> <div className="flex justify-between items-center mb-8">
<h1 className="text-3xl font-bold">Gallerie Photo</h1> <h1 className="text-3xl font-bold">Galerie Photo</h1>
<Button <Button
disabled={isLoading} disabled={isLoading}
onClick={() => setIsAddDialogOpen(true)} onClick={() => setIsAddDialogOpen(true)}

View File

@@ -32,7 +32,7 @@ export default function PhotoGallery() {
return ( return (
<div className="container mx-auto px-4 py-8"> <div className="container mx-auto px-4 py-8">
<div className="flex justify-between items-center mb-8"> <div className="flex justify-between items-center mb-8">
<h1 className="text-3xl font-bold">Gallerie Photo</h1> <h1 className="text-3xl font-bold">Galerie Photo</h1>
</div> </div>
{isLoading ? ( {isLoading ? (
<div className="flex w-full h-full justify-center"> <div className="flex w-full h-full justify-center">

View File

@@ -156,7 +156,7 @@ export default async function Home() {
tagLine="" tagLine=""
cta="Voir toutes les photos" cta="Voir toutes les photos"
ctaHref="/gallery" ctaHref="/gallery"
title="Gallerie" title="Galerie"
> >
<HomepageGalleryItems /> <HomepageGalleryItems />
</Gallery> </Gallery>

View File

@@ -61,7 +61,7 @@ const Navbar = () => {
<Href href="/">Accueil</Href> <Href href="/">Accueil</Href>
<Href href="/planning">Planning</Href> <Href href="/planning">Planning</Href>
<Href href="/about">À propos</Href> <Href href="/about">À propos</Href>
<Href href="/gallery">Gallerie</Href> <Href href="/gallery">Galerie</Href>
<Href href="/blogs">Blog</Href> <Href href="/blogs">Blog</Href>
</div> </div>
</div> </div>
@@ -156,7 +156,7 @@ const Navbar = () => {
href="/gallery" href="/gallery"
className="font-semibold" className="font-semibold"
> >
Gallerie Galerie
</Link> </Link>
<Link <Link
href="/blogs" href="/blogs"

View File

@@ -196,7 +196,7 @@ const PhotoGrid: React.FC<{ onSelect: (photo: Media) => void }> = ({
return ( return (
<div className="container mx-auto p-4"> <div className="container mx-auto p-4">
<h1 className="text-2xl font-bold mb-4">Gallerie Photo</h1> <h1 className="text-2xl font-bold mb-4">Galerie Photo</h1>
{selectedPhoto ? ( {selectedPhoto ? (
<div className="flex flex-col items-center"> <div className="flex flex-col items-center">
<Image <Image