Skip to content

Commit b3887cc

Browse files
committed
save
1 parent 3c9cf62 commit b3887cc

28 files changed

+11143
-18
lines changed

package-lock.json

Lines changed: 26 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838
"preact": "^10.11.3",
3939
"query-string": "^7.1.1",
4040
"react-instantsearch-hooks-web": "^6.38.1",
41+
"react-mailchimp-subscribe": "^2.1.3",
4142
"rehype-katex": "^6.0.2",
4243
"remark-gfm": "^3.0.1",
4344
"remark-math": "^5.1.1",
Lines changed: 3 additions & 0 deletions
Loading

public/images/footer/arrow.svg

Lines changed: 13 additions & 0 deletions
Loading

public/images/footer/discord.svg

Lines changed: 3 additions & 0 deletions
Loading

public/images/footer/github.svg

Lines changed: 5 additions & 0 deletions
Loading

public/images/footer/subscribe.svg

Lines changed: 4 additions & 0 deletions
Loading

public/images/footer/twitter.svg

Lines changed: 3 additions & 0 deletions
Loading

public/images/footer/youtube.svg

Lines changed: 3 additions & 0 deletions
Loading

src/components/Footer/Footer.tsx

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
// import PureFooter from "./PureFooter"
2+
import React, { useState, useCallback } from "react"
3+
import Subscribe from "./Subscribe/Subscribe.tsx"
4+
5+
const Footer = () => {
6+
return (
7+
<>
8+
<Subscribe />
9+
{/* <PureFooter></PureFooter> */}
10+
</>
11+
)
12+
}
13+
14+
export default Footer

0 commit comments

Comments
 (0)