From 721f4c70b41d3af1808b17952d5710507b47eb22 Mon Sep 17 00:00:00 2001 From: Kris McGinnes Date: Sun, 4 Feb 2024 14:08:04 -0600 Subject: [PATCH] Move profile image --- src/app/page.tsx | 2 +- {public => src/app}/profile.jpg | Bin 2 files changed, 1 insertion(+), 1 deletion(-) rename {public => src/app}/profile.jpg (100%) diff --git a/src/app/page.tsx b/src/app/page.tsx index ab1b6c7..de9458d 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -17,7 +17,7 @@ import { VSCodeIcon, XcodeIcon, } from "./icons" -import profilePic from "./../../public/profile.jpg" +import profilePic from "./profile.jpg" export default function HomePage() { return ( diff --git a/public/profile.jpg b/src/app/profile.jpg similarity index 100% rename from public/profile.jpg rename to src/app/profile.jpg