From 7fd0c447bc8c438a92970965096ee83dcdfa126b Mon Sep 17 00:00:00 2001 From: Marc Mintel Date: Mon, 16 Feb 2026 21:31:53 +0100 Subject: [PATCH] feat(branding): implement hand-drawn Copic marker, strikethrough, and pen circle effects; redesign guarantee section with logo animation --- apps/web/src/components/Signature.tsx | 59 +++++++-------------------- 1 file changed, 15 insertions(+), 44 deletions(-) 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 -
+
); };