Skip to content

Commit 209f5e2

Browse files
committed
(v0.4.1-alpha) Lucide Icons
Added lucide icons, It is in the hero buttons as of now
1 parent 9cb3155 commit 209f5e2

4 files changed

Lines changed: 22 additions & 2 deletions

File tree

package-lock.json

Lines changed: 10 additions & 0 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
@@ -12,6 +12,7 @@
1212
"dependencies": {
1313
"@vercel/analytics": "^2.0.1",
1414
"@vercel/speed-insights": "^2.0.0",
15+
"lucide-react": "^0.577.0",
1516
"react": "^19.2.4",
1617
"react-dom": "^19.2.4"
1718
},

src/routes/landing.jsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import "../styles/routes/landing.css";
2+
import {ArrowDown, ArrowUpRight} from "lucide-react";
23
// import {useState} from "react";
34

45

@@ -22,10 +23,10 @@ function Landing() {
2223

2324
<div className={"buttons"}>
2425
<div className={"button-container"}>
25-
Learn More
26+
Learn More <ArrowDown size={16} strokeWidth={2} />
2627
</div>
2728
<div className={"button-container-important"}>
28-
RSVP
29+
RSVP <ArrowUpRight size={16} strokeWidth={3}/>
2930
</div>
3031
</div>
3132

src/styles/routes/landing.css

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,10 @@
5555
}
5656

5757
.landing .hero .buttons .button-container {
58+
display: flex;
59+
align-items: center;
60+
gap: 0.5rem;
61+
5862
padding: 0.75rem 1.5rem;
5963

6064
/*background-color: var(--clr-surface-a0);*/
@@ -70,6 +74,10 @@
7074
}
7175

7276
.landing .hero .buttons .button-container-important {
77+
display: flex;
78+
align-items: center;
79+
gap: 0.5rem;
80+
7381
padding: 0.75rem 1.5rem;
7482

7583
background-color: var(--clr-primary-a0);

0 commit comments

Comments
 (0)