improve(public): list all prices instead of slider + rewrite article

This commit is contained in:
Carl-Gerhard Lindesvärd
2025-06-26 22:41:09 +02:00
parent 77cd74816c
commit f96c9b4769
21 changed files with 803 additions and 129 deletions

View File

@@ -1,12 +1,14 @@
import { cn } from '@/lib/utils';
import Image from 'next/image';
export function Figure({
src,
alt,
caption,
}: { src: string; alt: string; caption: string }) {
className,
}: { src: string; alt: string; caption: string; className?: string }) {
return (
<figure className="-mx-4">
<figure className={cn('-mx-4', className)}>
<Image
src={src}
alt={alt || caption}