Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
@@ -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 (
Expand Down Expand Up @@ -29,7 +31,7 @@ export default function Page() {
</p>
<div className="relative w-full h-[450px] rounded-lg overflow-hidden">
<Image
src="/images/chat.jpg"
src={Chat}
alt="AI Chat"
fill
className="object-cover transition-opacity duration-200"
Expand All @@ -48,7 +50,7 @@ export default function Page() {
</p>
<div className="relative w-full h-[450px] rounded-lg overflow-hidden">
<Image
src="/images/right-click.jpg"
src={RightClick}
alt="Code Link"
fill
className="object-cover transition-opacity duration-200"
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
}
],
"paths": {
"@/*": ["./src/*"]
"@/*": ["./src/*", "./public/*"]
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
Expand Down