diff --git a/app/components/FeatureGrid.js b/app/components/FeatureGrid.js index fe91bb3..ecda70e 100644 --- a/app/components/FeatureGrid.js +++ b/app/components/FeatureGrid.js @@ -3,6 +3,7 @@ import React from "react"; import ContentLockup from "./ContentLockup"; import MiniCard from "./MiniCard"; +import Image from "next/image"; const FeatureGrid = ({ title, subtitle, className = "" }) => { return ( diff --git a/app/components/MiniCard.js b/app/components/MiniCard.js index 9b5abf5..a1e2b3a 100644 --- a/app/components/MiniCard.js +++ b/app/components/MiniCard.js @@ -1,6 +1,7 @@ "use client"; import React from "react"; +import Image from "next/image"; const MiniCard = ({ children, @@ -23,7 +24,7 @@ const MiniCard = ({ {/* Content for the inner panel */} {panelContent && (
- {
)}