Skip to content

Commit

Permalink
Update public path for svg
Browse files Browse the repository at this point in the history
  • Loading branch information
elmeister committed Aug 26, 2023
1 parent 3208a1a commit b8dc63b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/AboutBanner.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Image from "next/image";

import AboutGitaBanner from "../../../public/quotes-bg.png";
import AboutGitaBanner from "../../public/quotes-bg.png";
export default function AboutBanner() {
return (
<>
Expand Down
2 changes: 1 addition & 1 deletion src/components/PrivacyTermsBanner.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Image from "next/image";

import PrivacyTermsBannerImage from "../../../public/quotes-bg.png";
import PrivacyTermsBannerImage from "../../public/quotes-bg.png";

interface PrivacyTermsBannerProps {
title: string;
Expand Down
2 changes: 1 addition & 1 deletion src/components/QuotesBanner.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Image from "next/image";

import QuotesBannerBG from "../../../public/quotes-bg.png";
import QuotesBannerBG from "../../public/quotes-bg.png";
export default function QuotesBanner() {
return (
<div className="relative z-10 mx-auto max-w-full xl:mx-24">
Expand Down

0 comments on commit b8dc63b

Please sign in to comment.