diff --git a/.gitignore b/.gitignore
index 7b65aa4..5829fb7 100644
--- a/.gitignore
+++ b/.gitignore
@@ -3,6 +3,7 @@
node_modules
package-lock.json
+yarn.lock
.env
diff --git a/package.json b/package.json
index dda291d..040320c 100644
--- a/package.json
+++ b/package.json
@@ -11,6 +11,7 @@
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-scripts": "5.0.1",
+ "react-wavify": "^1.6.3",
"styled-components": "^5.3.5",
"web-vitals": "^2.1.4",
"wouter": "^2.8.0-alpha.2"
diff --git a/public/index.html b/public/index.html
index 5b58cf0..fd200c0 100644
--- a/public/index.html
+++ b/public/index.html
@@ -7,7 +7,7 @@
-
Telegram to Notion Bot
+ Open Telegram to Notion Bot
diff --git a/src/Pages/Index/Index.jsx b/src/Pages/Index/Index.jsx
index a060059..5621887 100644
--- a/src/Pages/Index/Index.jsx
+++ b/src/Pages/Index/Index.jsx
@@ -1,5 +1,6 @@
import background from './background.svg'
import styled from "styled-components"
+import Wave from 'react-wavify'
function Index() {
@@ -13,7 +14,6 @@ function Index() {
aspect-ratio: 960/300;
- background-image: url(${background});
background-repeat: no-repeat;
background-position: center;
background-size: cover;
@@ -92,19 +92,30 @@ function Index() {
]
return (
-
-
-
-
+ <>
+
+
+
+
+
+ >
)
}
diff --git a/src/components/Header/Header.jsx b/src/components/Header/Header.jsx
index f69bfb1..b6a2a41 100644
--- a/src/components/Header/Header.jsx
+++ b/src/components/Header/Header.jsx
@@ -5,14 +5,11 @@ import { Link } from 'wouter'
function Header() {
const HeaderStyles = styled.header`
-
- height: 15vh;
-
display: flex;
justify-content: space-between;
align-items: center;
- padding: 0px 2vw;
+ padding: 3vh 2vw;
border-bottom: 1px solid #eee;
@@ -67,7 +64,7 @@ function Header() {

-
Telegram to Notion Bot
+
Open Telegram to Notion Bot