import React from 'react'; import { Link } from 'react-router-dom'; import './css/About.css'; import Theater from './subcomponents/Theater'; import Card from './subcomponents/Card'; import GithubRepos from './subcomponents/GithubRepos'; class About extends React.Component { /** * About - About page * This component doesn't require any props to be passed down. * Using different components, about is a page that displays about information. */ componentDidMount () { document.title = "About"; } render() { return (
This website is created with React, a javascript library for creating user interfaces and webapps. React uses a component based design to help developers create easily re-usable code, and to help streamline the development process. JSX is a part of react which makes it easy to design websites directly in javascript code. Throughout my college experience I've been able to improve my understanding of how computers work and how to design different software. I have completed my A.S. degree from Orange County Community College in Computer Science. In the past 2 years I've been working towards my Bachelors degree in computer science at Marist College in Poughkeepsie. Throughout my college experience I've been able to work with others in teams and I am currently as of the Fall 2021 Semester been working on a team for a Capstone Project which I can hopefully list on this website at the end of this semester. You can find a few of my projects on my Github or look through a list of projects on this website at the Github Page. You can email me at cam@camscode.com. You can also find more social media below, just click the image and it'll bring you to the selected website. You can access a list of github repositories that I've created directly on this site.
Social Media:
Github LinkedIn Hacker Rank Hack The Box Udemy
); } } export default About;