diff --git a/src/components/About.js b/src/components/About.js index d7f36a0..837f901 100644 --- a/src/components/About.js +++ b/src/components/About.js @@ -3,6 +3,7 @@ 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 { @@ -35,13 +36,18 @@ class About extends React.Component { 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. + + +
diff --git a/src/components/Navigation.js b/src/components/Navigation.js index f5745aa..d3d4ef5 100644 --- a/src/components/Navigation.js +++ b/src/components/Navigation.js @@ -3,7 +3,7 @@ import { Link } from 'react-router-dom'; import { connect } from 'react-redux'; import {toggleContactModal} from '../actions' import './css/Navigation.css'; -import { HouseDoor, FileEarmarkPerson, Github, Envelope, Book } from 'react-bootstrap-icons'; +import { HouseDoor, FileEarmarkPerson, Lightbulb, Envelope, Book } from 'react-bootstrap-icons'; import ContactModal from './subcomponents/ContactModal'; const Navigation = (props) => { @@ -13,9 +13,9 @@ const Navigation = (props) => { Home - - Github - + + Blank AI + Articles diff --git a/src/components/css/Card.css b/src/components/css/Card.css index e2c6290..00ddbfd 100644 --- a/src/components/css/Card.css +++ b/src/components/css/Card.css @@ -12,11 +12,13 @@ color: #3D3D3D; } -.card .content { +.card .content-box { text-align:left; font-size:xx-large; margin-right: 2rem; margin-top: 2rem; + max-height: 80vh; + overflow: hidden; } .card img { @@ -30,7 +32,7 @@ border-color: #A5B2A4; border-radius: 5px; padding: 2px; - height: 10rem; + max-height: 10rem; width: 10rem; margin: auto; background-color: #FAFAFF diff --git a/src/components/subcomponents/Card.js b/src/components/subcomponents/Card.js index 20faf12..eb5c078 100644 --- a/src/components/subcomponents/Card.js +++ b/src/components/subcomponents/Card.js @@ -15,8 +15,11 @@ const Card = (props) => { return (
-
{props.title}
-
+ {props.link ? + {props.title} + :
{props.title}
+ } +
{props.children}