diff --git a/index.html b/index.html
index 2c2fd14..2facbf0 100644
--- a/index.html
+++ b/index.html
@@ -10,10 +10,42 @@
AURA
+
-
+
+
+

+
+
diff --git a/public/leo.png b/public/leo.png
new file mode 100644
index 0000000..8dfe0c9
Binary files /dev/null and b/public/leo.png differ
diff --git a/public/site.webmanifest b/public/site.webmanifest
index b20abb7..201e316 100644
--- a/public/site.webmanifest
+++ b/public/site.webmanifest
@@ -1,6 +1,6 @@
{
- "name": "",
- "short_name": "",
+ "name": "Aura",
+ "short_name": "Aura",
"icons": [
{
"src": "/android-chrome-192x192.png",
diff --git a/src/components/Modal/close.svg b/src/components/Modal/close.svg
new file mode 100644
index 0000000..125967e
--- /dev/null
+++ b/src/components/Modal/close.svg
@@ -0,0 +1,4 @@
+
diff --git a/src/components/Modal/index.tsx b/src/components/Modal/index.tsx
index 742ab64..4d9b854 100644
--- a/src/components/Modal/index.tsx
+++ b/src/components/Modal/index.tsx
@@ -16,12 +16,7 @@ function Modal({ open, children, onClose }: ModalProps): JSX.Element {
return (
diff --git a/src/components/Modal/styles.css b/src/components/Modal/styles.css
index 683cae2..f58405d 100644
--- a/src/components/Modal/styles.css
+++ b/src/components/Modal/styles.css
@@ -30,7 +30,6 @@
position: absolute;
justify-content: center;
align-items: center;
- background: #eff2fd;
border: none;
border-radius: 20px;
height: 32px;
@@ -39,6 +38,10 @@
top: 16px;
width: 32px;
cursor: pointer;
+ background-color: #eff2fd;
+ background-image: url(./close.svg);
+ background-repeat: no-repeat;
+ background-position: center;
}
.modal .main-btn {