"use client"; import React from "react"; import { motion } from "framer-motion"; import { cn } from "../utils/cn"; import Image from "next/image"; import LogoBlack from "../assets/logo/Logo Black Transparent.svg"; interface SignatureProps { className?: string; delay?: number; } export const Signature: React.FC = ({ className, delay = 0, }) => { return (
Marc Mintel Signature
); };