import { useEffect, useState } from 'react'; import image from '../assets/sketch.png'; const taglines = [ "Amateur Writer", "Bookworm", "Star Gazer", "Physics Enthusiast", "Lifelong Learner", "Tea Enthusiast", "Cosmic Explorer", "Knowledge Seeker", ]; export default function About({ theme }) { const [tagline, setTagline] = useState(''); useEffect(() => { const randomTagline = taglines[Math.floor(Math.random() * taglines.length)]; setTagline(randomTagline); }, []); return (

Alejandro Laguna

Software Engineer & {tagline}

Crafting digital projects that inspire me, while exploring everything from books and tea to space and science. First-year computer science student.

Alex Clark's Sketch
); }