Skip to content

Commit 0ad502f

Browse files
shayonsclaude
andcommitted
Style updates: gradient text and profile photo improvements
- Apply indigo-magenta gradient to "Principal Solutions Architect" text in hero section, about intro, and profile card - Replace solid border on profile photo with soft gradient glow - Adjust profile photo position to show more hair (object-position: 20%) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 15d91b4 commit 0ad502f

File tree

2 files changed

+14
-4
lines changed

2 files changed

+14
-4
lines changed

src/components/AboutSection.astro

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -120,8 +120,11 @@ const expertise: ExpertiseItem[] = [
120120
}
121121

122122
.about-intro strong {
123-
color: var(--color-accent);
124123
font-weight: 600;
124+
background: var(--gradient-text);
125+
-webkit-background-clip: text;
126+
-webkit-text-fill-color: transparent;
127+
background-clip: text;
125128
}
126129

127130
.about-text p {
@@ -218,7 +221,8 @@ const expertise: ExpertiseItem[] = [
218221
height: 100px;
219222
border-radius: 50%;
220223
object-fit: cover;
221-
border: 3px solid var(--color-accent);
224+
object-position: center 20%;
225+
box-shadow: 0 0 20px rgba(124, 58, 237, 0.3), 0 0 40px rgba(192, 38, 211, 0.15);
222226
}
223227

224228
.profile-info {
@@ -233,9 +237,12 @@ const expertise: ExpertiseItem[] = [
233237
}
234238

235239
.profile-role {
236-
color: var(--color-accent);
237240
font-weight: 500;
238241
font-size: 0.9375rem;
242+
background: var(--gradient-text);
243+
-webkit-background-clip: text;
244+
-webkit-text-fill-color: transparent;
245+
background-clip: text;
239246
}
240247

241248
.profile-company {

src/components/Hero.astro

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,10 @@ const { name, title, tagline } = Astro.props;
9898
.hero-title {
9999
font-family: var(--font-mono);
100100
font-size: clamp(1rem, 2vw, 1.25rem);
101-
color: var(--color-accent);
101+
background: var(--gradient-text);
102+
-webkit-background-clip: text;
103+
-webkit-text-fill-color: transparent;
104+
background-clip: text;
102105
margin-bottom: var(--space-lg);
103106
}
104107

0 commit comments

Comments
 (0)