Edit src/components/HeroSection.tsx to update your name, title, and introduction.
1
Update Your Title
Modify the job title displayed above your name:
src/components/HeroSection.tsx
<motion.p initial={{ opacity: 0, y: 20 }} animate={{ opacity: 1, y: 0 }} transition={{ delay: 0.2, duration: 0.6 }} className="text-primary font-heading text-sm tracking-[0.3em] uppercase mb-6"> Chief Technology Officer {/* Change this to your title */}</motion.p>
Keep your title concise and professional. Examples: “Full Stack Developer”, “Product Designer”, “Data Scientist”
2
Update Your Name
Change the main heading to display your name:
src/components/HeroSection.tsx
<motion.h1 initial={{ opacity: 0, y: 20 }} animate={{ opacity: 1, y: 0 }} transition={{ delay: 0.4, duration: 0.6 }} className="font-heading text-5xl md:text-7xl lg:text-8xl font-bold tracking-tight mb-6"> David{" "} {/* First name */} <span className="text-gradient">Carrascosa</span> {/* Last name with gradient */}</motion.h1>
The gradient effect is applied to the second part of your name using the text-gradient class.
3
Update Your Introduction
Modify your professional summary and current company:
src/components/HeroSection.tsx
<motion.p className="text-muted-foreground text-lg md:text-xl max-w-2xl mx-auto leading-relaxed mb-4"> +20 años liderando tecnología, consultoría y desarrollo de software. Actualmente impulsando la transformación digital desde{" "} <span className="text-primary font-medium">Grupo SADE</span>. {/* Your company */}</motion.p>
4
Update Your Location
Change your location:
src/components/HeroSection.tsx
<motion.p className="text-muted-foreground/60 text-sm tracking-wide"> Madrid, España {/* Your location */}</motion.p>
Edit the text content in src/components/AboutSection.tsx:
1
Update Section Title
src/components/AboutSection.tsx
<p className="text-primary font-heading text-sm tracking-[0.2em] uppercase mb-3"> Sobre mí {/* Section label */}</p><h2 className="font-heading text-3xl md:text-5xl font-bold mb-8"> Tecnología con visión de negocio {/* Main heading */}</h2>
2
Update Biography Paragraphs
src/components/AboutSection.tsx
<div className="md:col-span-3 space-y-5"> <p className="text-secondary-foreground leading-relaxed text-lg"> Your first paragraph - make it compelling! </p> <p className="text-muted-foreground leading-relaxed"> Second paragraph with more details about your current role. </p> <p className="text-muted-foreground leading-relaxed"> Third paragraph about your approach and values. </p></div>