diff --git a/frontend/src/app/(i18n)/[locale]/layout.tsx b/frontend/src/app/(i18n)/[locale]/layout.tsx index 6e09e0c..d0a3431 100644 --- a/frontend/src/app/(i18n)/[locale]/layout.tsx +++ b/frontend/src/app/(i18n)/[locale]/layout.tsx @@ -1,4 +1,4 @@ -import { Inter, Space_Grotesk } from "next/font/google"; +import { Inter } from "next/font/google"; import Header from "@/app/components/Header"; import Footer from "@/app/components/Footer"; import "@/app/globals.css"; diff --git a/frontend/src/app/(i18n)/[locale]/project/[id]/page.tsx b/frontend/src/app/(i18n)/[locale]/project/[id]/page.tsx index 0f7508a..7484fd7 100644 --- a/frontend/src/app/(i18n)/[locale]/project/[id]/page.tsx +++ b/frontend/src/app/(i18n)/[locale]/project/[id]/page.tsx @@ -4,6 +4,7 @@ import { useTranslations } from 'next-intl'; import { useParams } from 'next/navigation'; import { FaArrowLeft } from 'react-icons/fa6'; import Link from 'next/link'; +import Image from 'next/image'; const projectsData = [ { id: 1, tech: ["Next.js", "Tailwind CSS", "TypeScript", "Framer Motion"], imageUrl: "/project1.jpg", repoUrl: "https://github.com/joaoloureiro/portfolio-app" }, @@ -31,7 +32,7 @@ export default function ProjectPage() {