diff --git a/components/ProjectCard.tsx b/components/ProjectCard.tsx index 6820f6e..1db1d5c 100644 --- a/components/ProjectCard.tsx +++ b/components/ProjectCard.tsx @@ -17,12 +17,16 @@ const ProjectCard: React.FC = ({ return (
- Project Image -
+
+ Project Image +
+

{name}

{date}

diff --git a/next.config.js b/next.config.js index 658404a..4b5dee6 100644 --- a/next.config.js +++ b/next.config.js @@ -1,4 +1,8 @@ /** @type {import('next').NextConfig} */ -const nextConfig = {}; +const nextConfig = { + images: { + domains: ['i.redd.it', 'github.com'], + }, +}; module.exports = nextConfig;