Skip to content

Commit 494e8c1

Browse files
author
MahalakshmiPFW
committed
Add gradient text effect with subtle glow to hero section
1 parent 127efdd commit 494e8c1

2 files changed

Lines changed: 13 additions & 3 deletions

File tree

src/components/Hero.jsx

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,17 @@ const Hero = () => {
1717
Hi <span className="text-primary"><FaSmileBeam /></span>,<br />
1818
I'm <span className="text-primary">Mahalakshmi</span>
1919
</h1>
20-
<span className="fs-5 mb-3 d-block text-primary">
20+
<span
21+
className="fs-5 mb-3 d-block fw-semibold"
22+
style={{
23+
background: 'linear-gradient(to right, var(--primary-color), var(--secondary-color))',
24+
WebkitBackgroundClip: 'text',
25+
WebkitTextFillColor: 'transparent',
26+
backgroundClip: 'text',
27+
filter: 'drop-shadow(0 0 4px rgba(138, 104, 213, 0.2)) drop-shadow(0 0 8px rgba(74, 178, 128, 0.15))',
28+
textShadow: '0 0 3px rgba(138, 104, 213, 0.25)'
29+
}}
30+
>
2131
<Typewriter
2232
words={[
2333
'Full-Stack Developer',

src/components/Projects.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ const Projects = () => {
3434
date: 'Jan. 2025 – Apr. 2025',
3535
image: 'assets/images/MastodonHub.png',
3636
technologies: ['React', 'Django', 'SQLite', 'Cypress', 'Jest', 'EmailJS', 'Jira', 'Bitbucket'],
37-
demo: 'https://mastodonhub.vercel.app'
37+
demo: 'https://mastodonhub-1-mdvy.onrender.com'
3838
},
3939
{
4040
id: 3,
@@ -43,7 +43,7 @@ const Projects = () => {
4343
date: 'Aug. 2024 – Dec. 2024',
4444
image: 'assets/images/CampusMart-logo.png',
4545
technologies: ['MongoDB', 'Express', 'React', 'Node.js', 'Vercel'],
46-
demo: 'https://campusmart.vercel.app'
46+
demo: 'https://campusmart-purdue.vercel.app'
4747
},
4848
{
4949
id: 2,

0 commit comments

Comments
 (0)