Skip to content

Commit

Permalink
ci: routes
Browse files Browse the repository at this point in the history
  • Loading branch information
Ron de las Alas committed Oct 3, 2023
1 parent 127323a commit aade4cf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/carousel/carousel.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const Carousel = ({items}) => {
<Slider {...settings}>
{
items.map((item, index) => {
const i = `/junior/${item}`;
const i = `/junior${item}`;
return <div key={index}><img src={i} /></div>;
})
}
Expand Down
2 changes: 1 addition & 1 deletion src/views/index/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ const Index = () => {
<div id="content-graphic">
<img
id="content-graphic-item"
src="/images/homegraphic.png"
src="/junior/images/homegraphic.png"
/>
</div>
{/* end content-graphic */}
Expand Down

0 comments on commit aade4cf

Please sign in to comment.