Skip to content

Commit f88dc84

Browse files
committed
deploy(asterdex): update landing
1 parent ba4abab commit f88dc84

File tree

1 file changed

+16
-6
lines changed

1 file changed

+16
-6
lines changed

app/asterdex/page.tsx

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ export default function AsterdexLanding() {
4848
max-width: 100%;
4949
margin: 0 auto;
5050
padding: 32px 0 96px;
51+
width: 100%;
5152
}
5253
5354
.hero {
@@ -106,18 +107,27 @@ export default function AsterdexLanding() {
106107
padding: 14px 28px;
107108
font-weight: 600;
108109
border-radius: 999px;
109-
border: 1px solid rgba(209,191,168,0.5);
110-
background: linear-gradient(135deg, rgba(209,191,168,0.15), rgba(209,191,168,0.05));
111-
color: var(--text);
112-
box-shadow: 0 14px 40px rgba(209,191,168,0.22);
110+
border: 1px solid #e8c08d;
111+
background: #e8c08d;
112+
color: #000000;
113+
box-shadow: 0 14px 40px rgba(232,192,141,0.35);
113114
transition: transform 120ms ease, box-shadow 120ms ease, border-color 120ms ease;
114115
min-width: 180px;
115116
}
116117
117118
.cta:hover {
118119
transform: translateY(-1px);
119-
box-shadow: 0 18px 48px rgba(209,191,168,0.32);
120-
border-color: rgba(209,191,168,0.85);
120+
box-shadow: 0 18px 48px rgba(232,192,141,0.45);
121+
border-color: #e8c08d;
122+
}
123+
124+
.cta:active {
125+
transform: translateY(1px);
126+
box-shadow: 0 10px 28px rgba(232,192,141,0.35);
127+
}
128+
129+
.cta:visited {
130+
color: #000000;
121131
}
122132
123133
.features {

0 commit comments

Comments
 (0)