From ad032faab749b283cb09e5f2aa1c2ef08b00fff9 Mon Sep 17 00:00:00 2001 From: mialsong Date: Mon, 1 Dec 2025 15:52:51 -0800 Subject: [PATCH] added animation to partners image --- src/components/home/Partners.tsx | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/src/components/home/Partners.tsx b/src/components/home/Partners.tsx index 479f0d4..0bdb562 100644 --- a/src/components/home/Partners.tsx +++ b/src/components/home/Partners.tsx @@ -1,8 +1,10 @@ +"use client"; import Carousel from "@/components/Carousel"; import partners from "@/data/partners"; import Heading from "../Heading"; import Image from "next/image"; import groupPhoto2 from "@/public/home/group2withdots.webp"; +import { motion } from "motion/react"; const Partners = () => { return ( @@ -10,7 +12,15 @@ const Partners = () => { {/* TODO: Change this to subheading after its done */} - Group Photo 2 + + Group Photo 2 + ); };