Software Engineering Student

In a deep study of software engineering

Focused on self-improvement and continuous learning. With care about code quality, structure and maintainability.

function PortfolioCard() {
    const stack = ["HTML", "CSS", "JavaScript", "React"];

    return (
        <section className="developer-card">
            <p className="status">learning by building</p>
            <h2>Nikolay Todorov</h2>
            <ul>
                {stack.map((technology) => (
                    <li key={technology}>{technology}</li>
                ))}
            </ul>
        </section>
    );
}

export default PortfolioCard;

Current web studying architecture:

HTML CSS JavaScript JQuery React Bootstrap ThreeJS