fix(SW-96): use Image component instead of next/image directly

This commit is contained in:
Chuma McPhoy
2024-08-21 13:00:32 +02:00
parent 76e0fb5697
commit 6456be95b2
2 changed files with 2 additions and 2 deletions

View File

@@ -1,9 +1,9 @@
"use client"
import { AnimatePresence, motion } from "framer-motion"
import Image from "next/image"
import { ChevronRightIcon } from "@/components/Icons"
import ArrowRightIcon from "@/components/Icons/ArrowRight"
import Image from "@/components/Image"
import Button from "@/components/TempDesignSystem/Button"
import Body from "@/components/TempDesignSystem/Text/Body"
import Caption from "@/components/TempDesignSystem/Text/Caption"

View File

@@ -1,10 +1,10 @@
"use client"
import { AnimatePresence, motion } from "framer-motion"
import Image from "next/image"
import { ChevronRightIcon } from "@/components/Icons"
import ArrowRightIcon from "@/components/Icons/ArrowRight"
import CloseIcon from "@/components/Icons/Close"
import Image from "@/components/Image"
import Button from "@/components/TempDesignSystem/Button"
import Caption from "@/components/TempDesignSystem/Text/Caption"