Skip to content

Commit

Permalink
Merge pull request barryclark#9 from bobbyg603/fix-typo
Browse files Browse the repository at this point in the history
chore: fix typo "Edution" should be "Education"
  • Loading branch information
1hanzla100 authored Jan 10, 2022
2 parents 0123206 + bf101ad commit 8b7916b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions components/EdutionCard.jsx → components/EducationCard.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { Card, CardBody, Badge } from "reactstrap";

import { Fade } from "react-reveal";

const EdutionCard = ({ education }) => {
const EducationCard = ({ education }) => {
return (
<Fade left duration={1000} distance="40px">
<Card className="card-lift--hover shadow mt-4">
Expand Down Expand Up @@ -33,4 +33,4 @@ const EdutionCard = ({ education }) => {
);
};

export default EdutionCard;
export default EducationCard;
8 changes: 4 additions & 4 deletions containers/Education.jsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import React from "react";
import EdutionCard from "../components/EdutionCard";
import EducationCard from "../components/EducationCard";
import { educationInfo } from "../portfolio";
import { Container, Row, Col } from "reactstrap";

const Edution = () => {
const Education = () => {
return (
<section className="section pb-0 bg-gradient-info my-5">
<Container>
Expand All @@ -25,7 +25,7 @@ const Edution = () => {
lg="6"
key={info.schoolName}
>
<EdutionCard education={info} />
<EducationCard education={info} />
</Col>
);
})}
Expand All @@ -50,4 +50,4 @@ const Edution = () => {
);
};

export default Edution;
export default Education;

0 comments on commit 8b7916b

Please sign in to comment.