Giter Site home page Giter Site logo
import React from 'react';
import Knowledge from '../components/Knowledge'

const SoftwareDeveloper = () => {
  const userData = {
    name: "Neyan Montes",
    username: "XNeyMo",
    location: "Cartagena de Indias, Colombia",
    web: "https://xneymo.netlify.app",
    technicalKnowledge: {
      frontend: ["AstroBuild", "ReactJS", "React Native", "TailwindCSS", "HTML", "CSS", "JavaScript"],
      backend: ["FastAPI", "Python", "Rust", "NodeJS"],
      database: ["MongoDB", "JSON"]
    }
  };

  return (
    <div>
      <h1>{userData.name}</h1>
      <p>Username: {userData.username}</p>
      <p>Location: {userData.location}</p>
      <p>Web: <a href={userData.web}>{userData.username}'s Website</a></p>

      {Object.keys(userData.technicalKnowledge).map((category, index) => (
        <Knowledge
          key={index}
          title={`${category.charAt(0).toUpperCase()}${category.slice(1)} Technologies`}
          information={userData.technicalKnowledge[category]}
        />
      ))}
    </div>
  );
}

export default SoftwareDeveloper;

Contact

Neyan Montes's Projects

liav icon liav

API = https://liavback.onrender.com/docs

portfolio icon portfolio

This repository contains my personal portfolio which is made with the basic web technologies that are HTML, CSS and JavaScript, in addition to having a responsive design so that it adapts to any screen.

shopify-plus-clon icon shopify-plus-clon

This repository contains a Shopify Plus clone built with the ReactJS library and the Tailwind framework. The first part of the development, which consisted of creating the clone without responsive design, has already been completed. In the future, I plan to add responsive design.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.