---
// Port of preview/pages/search-results.html (layout: default; no title in
// front matter — only page-header)
import DefaultLayout from '@shared/layouts/DefaultLayout.astro';
import NavAside from '@shared/components/parts/NavAside.astro';
import GalleryPhoto from '@shared/components/cards/GalleryPhoto.astro';
import photos from '@data/photos.json';
import people from '@data/people.json';
const resultPhotos = photos.filter((photo) => photo.horizontal).slice(0, 18);
---