Skip to content

Commit

Permalink
fix logo path
Browse files Browse the repository at this point in the history
  • Loading branch information
Syuparn committed Nov 25, 2023
1 parent 2b771fb commit a3b68b9
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import { CommandContext } from './contexts/CommandContext'
import { runnerCommands, wasiRunners } from './wasm/handler'
import CopyButton from './components/CopyButton'
import UndoButton from './components/UndoButton'
import Logo from './components/Logo'

function App() {
const [text, setText] = useState('')
Expand Down Expand Up @@ -59,10 +60,7 @@ function App() {
<Box
paddingBottom='3rem'
>
<Image
src='/images/linerduper.png'
alt='linerduper'
/>
<Logo />
</Box>


Expand Down
Empty file removed src/assets/.gitkeep
Empty file.
File renamed without changes
14 changes: 14 additions & 0 deletions src/components/Logo.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import { Image } from "@chakra-ui/react"
import logo from '../assets/images/logo.png'


function Logo() {
return (
<Image
src={logo}
alt='linerduper'
/>
)
}

export default Logo

0 comments on commit a3b68b9

Please sign in to comment.