From 3dedd2f1edf1f1c4ea78acdbf40ff7d9c05dda9e Mon Sep 17 00:00:00 2001 From: Serubin Date: Tue, 24 Dec 2024 00:04:34 -0500 Subject: [PATCH] Optimize image --- components/hero.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/hero.tsx b/components/hero.tsx index 65b0a52..a50bf55 100644 --- a/components/hero.tsx +++ b/components/hero.tsx @@ -1,7 +1,7 @@ "use client"; import React from 'react'; import { motion } from 'framer-motion'; -import Image from '../lib/Image'; +import Image from 'next/image'; import { fadeUp, fadeDown, fadeLeft } from '../lib/animations'; import { c } from '../lib/utils'; import styles from '../styles/Hero.module.scss';