- Next.js 16 App Router site with the ANOUMA design system - Payload CMS (PostgreSQL) for offers, events, posts and page content - WebRTC video-call system with custom signaling server - SMTP email reminders and booking-request notifications - Customer accounts, calendar-based availability, and booking workflow
45 lines
1.8 KiB
TypeScript
45 lines
1.8 KiB
TypeScript
import type { Metadata } from "next";
|
|
import { PageHeader } from "@/components/PageHeader";
|
|
import { Section } from "@/components/Section";
|
|
import { ImagePlaceholder } from "@/components/ImagePlaceholder";
|
|
import { Reveal } from "@/components/Reveal";
|
|
import type { ImageMood } from "@/lib/angebote";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Impressionen",
|
|
description: "Bildeindrücke aus der Arbeit von Anouma — Natur, Gemeinschaft und gemeinsame Räume.",
|
|
};
|
|
|
|
const gallery: { mood: ImageMood; label: string; span?: string }[] = [
|
|
{ mood: "moss", label: "Wald und Naturverbundenheit", span: "sm:row-span-2" },
|
|
{ mood: "rose", label: "Gemeinschaft und Begegnung" },
|
|
{ mood: "peach", label: "Schwangerschaft und Wachsen" },
|
|
{ mood: "sand", label: "Singen und Klang" },
|
|
{ mood: "caramel", label: "Kreativität und Hände", span: "sm:row-span-2" },
|
|
{ mood: "dustyrose", label: "Mutter und Kind" },
|
|
{ mood: "plum", label: "Stille und Innehalten" },
|
|
{ mood: "mauve", label: "Räume der Verbindung" },
|
|
];
|
|
|
|
export default function ImpressionenPage() {
|
|
return (
|
|
<>
|
|
<PageHeader
|
|
eyebrow="Impressionen"
|
|
title="Einblicke in gemeinsame Räume"
|
|
lead="Diese Galerie ist als Platzhalter-System angelegt — echte Fotografien lassen sich hier später direkt einsetzen, ohne das Layout zu verändern."
|
|
crumbs={[{ title: "Impressionen" }]}
|
|
/>
|
|
<Section tone="plain">
|
|
<div className="grid auto-rows-[14rem] grid-cols-2 gap-4 sm:grid-cols-4">
|
|
{gallery.map((item, i) => (
|
|
<Reveal key={item.label} delay={Math.min(i * 0.04, 0.3)} className={item.span}>
|
|
<ImagePlaceholder mood={item.mood} label={item.label} shape="soft" className="h-full w-full" />
|
|
</Reveal>
|
|
))}
|
|
</div>
|
|
</Section>
|
|
</>
|
|
);
|
|
}
|