Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cleanup #4

Merged
merged 3 commits into from
Oct 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# solidity-by-example.github.io

[Solidity By Example](https://solidity-by-example.org)
[Uniswap v4 by Example](https://solidity-by-example.org)

### License

Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

<script src="https://use.fontawesome.com/ba3dde78ee.js"></script>
<link rel="manifest" href="/manifest.json" />
<title>Solidity by Example</title>
<title>Uniswap v4 by Example</title>

<!-- Global site tag (gtag.js) - Google Analytics -->
<script
Expand Down
2 changes: 1 addition & 1 deletion src/components/Example.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const Example: React.FC<Props> = ({
return (
<div className={styles.component}>
<SEO
title={`${title} | Solidity by Example | ${version}`}
title={`${title} | Uniswap v4 by Example | ${version}`}
description={description}
/>
<div className={styles.content}>
Expand Down
19 changes: 10 additions & 9 deletions src/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,13 @@ function Footer() {
return (
<div className={styles.component}>
<div className={styles.row}>
<img src={sce} alt="smart contract engineer" className={styles.sce} />
<a href="https://www.smartcontract.engineer" target="__blank">
Smart Contract Engineer
{/* <img src={sce} alt="smart contract engineer" className={styles.sce} /> */}
<span>👽&nbsp;</span>
<a href="http://saucepoint.wtf" target="__blank">
saucepoint
</a>
</div>
<div className={styles.social}>
{/* <div className={styles.social}>
<div className={styles.row}>
<img src={discord} alt="discord" className={styles.discord} />
<a href="https://discord.gg/bt8FK2wkcW" target="__blank">
Expand All @@ -39,7 +40,7 @@ function Footer() {
YouTube
</a>
</div>
</div>
</div> */}
<div className={styles.row}>
Donate
<span>🙂</span>
Expand All @@ -51,21 +52,21 @@ function Footer() {
Khan Academy
</a>
</div>
<div className={styles.row}>
{/* <div className={styles.row}>
<a href="mailto:[email protected]">
[email protected]
</a>
</div>
</div> */}
<div className={styles.row}>
<a
href="https://github.com/solidity-by-example/solidity-by-example.github.io"
href="https://github.com/saucepoint/v4-by-example"
target="__blank"
>
source
</a>
<div className={styles.bar}>|</div>
<a
href="https://github.com/solidity-by-example/solidity-by-example.github.io/blob/gh-pages/LICENSE"
href="https://github.com/saucepoint/v4-by-example/blob/gh-pages/LICENSE"
target="__blank"
>
license
Expand Down
2 changes: 1 addition & 1 deletion src/components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ function Header() {
</a>
<h3 className={styles.header}>
<a href="/" className={styles.a}>
Solidity by Example
Uniswap v4 by Example
</a>
</h3>
</div>
Expand Down
Loading
Loading