Skip to content

Commit

Permalink
fix import
Browse files Browse the repository at this point in the history
  • Loading branch information
denkiwakame committed Jan 30, 2025
1 parent 83b0408 commit 129e7c3
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/header.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ export default class Header extends React.Component {
const backgroundStyle = this.state.isMobile
? null
: {
backgroundImage: `url(assets/${this.props.header.bg_curve})`,
backgroundImage: `url(${this.props.header.bg_curve})`,
backgroundSize: 'contain',
backgroundRepeat: 'no-repeat',
backgroundPosition: 'right',
Expand Down
2 changes: 1 addition & 1 deletion src/components/logo.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react';
import logoSvg from '../../public/sinicx.svg';
import logoSvg from '@/logo/sinicx.svg';

export default class CorporateLogo extends React.Component {
constructor(props) {
Expand Down
File renamed without changes

0 comments on commit 129e7c3

Please sign in to comment.