auto-claude: subtask-4-1 - Wrap PortfolioCard with React.memo to prevent unne

This commit is contained in:
2026-01-25 06:38:09 +01:00
parent 200c204692
commit f527201b8b
+2 -1
View File
@@ -1,5 +1,6 @@
'use client'; 'use client';
import React from 'react';
import Link from 'next/link'; import Link from 'next/link';
import Image from 'next/image'; import Image from 'next/image';
import { motion } from 'framer-motion'; import { motion } from 'framer-motion';
@@ -122,4 +123,4 @@ const PortfolioCard = ({ project }: PortfolioCardProps) => {
); );
}; };
export default PortfolioCard; export default React.memo(PortfolioCard);