Skip to content

Commit dc1b75c

Browse files
committed
test: absolute path assets
1 parent 8a563c6 commit dc1b75c

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

app/components/Footer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ export function Footer({ showAuthor = false }: FooterProps) {
5050
<div className="flex flex-col items-center gap-6 md:flex-row md:items-center md:justify-between">
5151
<Link to="/" className="flex items-center gap-2">
5252
<img
53-
src="images/navbar_logo.svg"
53+
src="/images/navbar_logo.svg"
5454
alt="Espanso Hub"
5555
className="h-7 w-auto"
5656
/>

app/components/Header.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export function Header({
3434
{/* Logo */}
3535
<Link to="/" className="flex items-center gap-2">
3636
<img
37-
src="images/navbar_logo.svg"
37+
src="/images/navbar_logo.svg"
3838
alt="Espanso Hub"
3939
className="h-6 md:h-7 w-auto"
4040
/>

app/routes/home.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ export default function Home({
4747
};
4848

4949
return (
50-
<div style={{ backgroundImage: "url(images/landing_bg.svg)" }}>
50+
<div style={{ backgroundImage: "url(/images/landing_bg.svg)" }}>
5151
{/* {packages.packages.map((pkg) => (
5252
<li key={pkg.id}>{pkg.title}</li>
5353
))} */}

0 commit comments

Comments
 (0)