"use client"; import { motion } from "framer-motion"; import Image from "next/image"; export default function About({ dict }: { dict: any }) { const stats = [ { value: "5+", label: dict.about.stats.years }, { value: "10K+", label: dict.about.stats.guests }, { value: "4.8★", label: dict.about.stats.rating }, ]; return (
{/* Text side */} {/* Label with decorative lines */}

{dict.about.title}

{dict.about.p1}

{dict.about.p2}

{/* Stats row */}
{stats.map((stat) => (
{stat.value}
{stat.label}
))}
{/* Image side */} {/* Shadow shape behind */}
{/* Image clipped to shape */}
Moy Beach Atmosphere
); }