diff --git a/config.json b/config.json index b21ecef..9255751 100644 --- a/config.json +++ b/config.json @@ -1,6 +1,7 @@ { "name": "Lee", "description": "I'm a 20-year-old software engineer from the UK, and my true passion lies in creating and exploring the endless possibilities within my homelab.", + "avatar": "https://cdn.fascinated.cc/gqL652.jpg", "metadata": { "title": "fascinated.cc", "description": "I'm a 20-year-old software engineer from the UK" diff --git a/next.config.js b/next.config.js index 767719f..76c2d5a 100644 --- a/next.config.js +++ b/next.config.js @@ -1,4 +1,15 @@ /** @type {import('next').NextConfig} */ -const nextConfig = {} +const nextConfig = { + images: { + remotePatterns: [ + { + protocol: "https", + hostname: "**", + port: "", + pathname: "/**", + }, + ], + }, +}; -module.exports = nextConfig +module.exports = nextConfig; diff --git a/src/app/page.tsx b/src/app/page.tsx index 0c30882..5e19a81 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,3 +1,4 @@ +import Image from "next/image"; import Config from "../../config.json"; export default function Home() { @@ -5,7 +6,17 @@ export default function Home() {
-

{Config.name}

+
+ Avatar +
+

{Config.name}

+

{Config.description}