import { motion } from 'framer-motion'; import '@/css/Home.css'; import Card from '@/components/Card'; const Home = () => { return (


); }; const AboutSection = () => { return (

SOBRE MÍ

Estudiante de 4º de Ingeniería de Computadores en la US. Suelo trastear con Linux, redes, electrónica y webdev.

{['C', 'Rust', 'Java', 'JS', 'React', 'Python', 'Linux', 'HDL'].map((skill) => ( {skill} ))}
); }; const ProjectsSection = () => { const projects = [ { title: 'miarma-backend', desc: 'Backend Spring que alimenta todos mis servicios', tech: 'Java/Spring' }, { title: 'riscv-ac', desc: 'Implementación HDL del procesador RISC-V. Arquitectura pura.', tech: 'Verilog/VHDL' }, { title: 'contaminus', desc: 'Proyecto Hack4Change 24/25. Fullstack + IoT.', tech: 'React/Python/IoT' }, ]; return (

MIS PROYECTOS FAVORITOS

{projects.map((project, index) => (

{project.desc}

))}
); }; const InterestsSection = () => { const interests = ['Informática', 'Electrónica', 'Videojuegos', 'Música', 'Animanga', 'Ciberseguridad']; return (

INTERESES

{interests.map((interest, i) => (
{interest}
))}
); }; export default Home;