File tree Expand file tree Collapse file tree 4 files changed +4
-3
lines changed
Expand file tree Collapse file tree 4 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 11import { ArrowRight } from "lucide-react" ;
22import Image from "next/image" ;
33import Link from "next/link" ;
4+ import demo from "../../public/demo.gif" ;
45
56export default function HomePage ( ) {
67 return (
@@ -58,7 +59,7 @@ export default function HomePage() {
5859 </ div >
5960
6061 < div className = "max-md:p-12" >
61- < Image width = { 600 } height = { 300 } alt = "demo" src = "/ demo.gif" />
62+ < Image width = { 600 } height = { 300 } alt = "demo" src = { demo } />
6263 </ div >
6364 </ div >
6465 </ div >
Original file line number Diff line number Diff line change 11import type { BaseLayoutProps } from "fumadocs-ui/layouts/shared" ;
22import Image from "next/image" ;
3+ import icon from "../public/icon.png" ;
34
45export function baseOptions ( ) : BaseLayoutProps {
56 return {
67 nav : {
78 title : (
89 < >
9- < Image width = { 24 } height = { 24 } src = "/ icon.png" alt = "icon" />
10+ < Image width = { 24 } height = { 24 } src = { icon } alt = "icon" />
1011 committier
1112 </ >
1213 ) ,
Original file line number Diff line number Diff line change @@ -10,7 +10,6 @@ const config = {
1010 root : import . meta. dirname ,
1111 } ,
1212 basePath : process . env . NEXT_PUBLIC_BASE_PATH ,
13- assetPrefix : process . env . NEXT_PUBLIC_BASE_PATH ,
1413 images : { unoptimized : true } ,
1514} ;
1615
File renamed without changes.
You canβt perform that action at this time.
0 commit comments