From 98917f3da5156f396de85cfff394af7536a488dd Mon Sep 17 00:00:00 2001
From: Sibusiso Ngobese
Date: Tue, 17 Dec 2024 17:17:47 -0800
Subject: [PATCH] Import images so next build includes them in static export
---
src/app/page.tsx | 6 ++++--
tsconfig.json | 2 +-
2 files changed, 5 insertions(+), 3 deletions(-)
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 62f39bf..967c428 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -1,5 +1,7 @@
'use client';
import Image from 'next/image';
+import Chat from '@/images/chat.jpg';
+import RightClick from '@/images/right-click.jpg';
export default function Page() {
return (
@@ -29,7 +31,7 @@ export default function Page() {