Tomas Stveracek - portfolio

Explorer

1 import React from "react"; 
2 
3 const Person = () => { 
4   const name = "Tomas Stveracek"; 
5   const role = "Frontend Developer"; 
6   const location = "Czechia"; 
7   const skills = ["HTML5", "CSS3", "SASS", "TailwindCSS", "JavaScript", "React",
8     "Node.js", "Twig", "GSAP", "Alpine.js", "Swiper.js", "WordPress",
9     "Figma", "Adobe Photoshop"]; 
10   return (
11     <div>
12       <h1>My name is {name}.</h1>
13       <p>I am a {role} based in {location}.</p>
14       <p>Skills: {skills.join(", ")}.</p>
15     </div>
16   ); 
17 }; 
18 export default Person;