diff --git a/apps/web/src/components/Signature.tsx b/apps/web/src/components/Signature.tsx index 240f176..47d59f7 100644 --- a/apps/web/src/components/Signature.tsx +++ b/apps/web/src/components/Signature.tsx @@ -3,6 +3,8 @@ 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; @@ -14,52 +16,21 @@ export const Signature: React.FC = ({ delay = 0, }) => { return ( -
- + - {/* M */} - - {/* a r c (scribble) */} - - {/* Mintel (scribble + underline) */} - - -
- Marc Mintel -
+
); };