diff --git a/src/icons.svg b/src/icons.svg
index 19232df..7d5007e 100644
--- a/src/icons.svg
+++ b/src/icons.svg
@@ -15,6 +15,9 @@
+
+
+
\ No newline at end of file
diff --git a/src/index.css b/src/index.css
index 4dab5db..fa42c31 100644
--- a/src/index.css
+++ b/src/index.css
@@ -44,6 +44,17 @@ a {
gap: 24px;
}
+.btn {
+ border: none;
+ outline: none;
+ cursor: pointer;
+ font-weight: 700;
+ font-size: 16px;
+ line-height: 20px;
+ padding: 8px 16px;
+ border-radius: 16px;
+}
+
.btn-border {
border: 1px solid transparent;
color: inherit;
@@ -51,11 +62,7 @@ a {
linear-gradient(94.73deg, #2BD9FF 0%, #F838D9 100%) border-box;
}
-.btn {
- cursor: pointer;
- font-weight: 700;
- font-size: 16px;
- line-height: 20px;
- padding: 8px 16px;
- border-radius: 16px;
+.btn-primary {
+ background: linear-gradient(94.73deg, #2BD9FF 0%, #8C8DED 47.4%, #F838D9 100%);
+ color: white;
}
\ No newline at end of file
diff --git a/src/pages/layout.css b/src/pages/layout.css
index 515bbb3..1de7348 100644
--- a/src/pages/layout.css
+++ b/src/pages/layout.css
@@ -31,6 +31,8 @@ header>div:nth-child(2) {
header>div:nth-child(3) {
justify-self: end;
+ display: flex;
+ gap: 24px;
}
header input[type="text"] {
diff --git a/src/pages/layout.tsx b/src/pages/layout.tsx
index 2aae4eb..659445d 100644
--- a/src/pages/layout.tsx
+++ b/src/pages/layout.tsx
@@ -14,6 +14,10 @@ export function LayoutPage() {
+