-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
e.g. srcset to srcSet, class to className HCO-54
- Loading branch information
Showing
1 changed file
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,22 +6,22 @@ export default function FooterLayout({style, links, logo, copyright}) { | |
className={clsx('footer', { | ||
'footer--dark': style === 'dark', | ||
})}> | ||
<img class="wetf-footer-bg wetf-footer-bg-left" src="https://wetransform.to/wp-content/uploads/2022/04/bg-footer-2.svg" alt=""></img> | ||
<img class="wetf-footer-bg wetf-footer-bg-right" src="https://wetransform.to/wp-content/uploads/2022/04/bg-footer.svg" alt=""> | ||
<img className="wetf-footer-bg wetf-footer-bg-left" src="https://wetransform.to/wp-content/uploads/2022/04/bg-footer-2.svg" alt=""></img> | ||
<img className="wetf-footer-bg wetf-footer-bg-right" src="https://wetransform.to/wp-content/uploads/2022/04/bg-footer.svg" alt=""> | ||
|
||
</img> | ||
<div className="container container-fluid"> | ||
<div className="row"> | ||
<div class="col col--3"> | ||
<a aria-label="Logo Wetransform" href="https://wetransform.to" class="wetf-footer-logo"> | ||
<img class="lazy " width="100" height="78" | ||
<div className="col col--3"> | ||
<a aria-label="Logo Wetransform" href="https://wetransform.to" className="wetf-footer-logo"> | ||
<img className="lazy " width="100" height="78" | ||
src="https://wetransform.to/wp-content/uploads/2022/04/we-logo-white-300dpi-100x78-c-default.png" | ||
srcset="https://wetransform.to/wp-content/uploads/2022/04/[email protected] 1x, https://wetransform.to/wp-content/uploads/2022/04/[email protected] 2x" | ||
srcSet="https://wetransform.to/wp-content/uploads/2022/04/[email protected] 1x, https://wetransform.to/wp-content/uploads/2022/04/[email protected] 2x" | ||
alt="Wetransform"> | ||
</img> | ||
</a> | ||
</div> | ||
<div class="col col--7 col--offset-2"> | ||
<div className="col col--7 col--offset-2"> | ||
{links} | ||
</div> | ||
</div> | ||
|