Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#207 Add copyright notice #208

Merged
merged 9 commits into from
Jan 7, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion frontend/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

The ironoc UI built with react for personal portfolio website.

[![Node.js Package](https://github.com/conorheffron/ironoc/actions/workflows/npm-publish-github-packages.yml/badge.svg)](https://github.com/conorheffron/ironoc/actions/workflows/npm-publish-github-packages.yml)
[![Node.js Package](https://github.com/conorheffron/ironoc/actions/workflows/npm-publish-packages.yml/badge.svg)](https://github.com/conorheffron/ironoc/actions/workflows/npm-publish-packages.yml)

- See project README.md [here](https://github.com/conorheffron/ironoc/blob/main/README.md)
- See npmjs package details here [https://www.npmjs.com/package/@conorheffron/ironoc-frontend](https://www.npmjs.com/package/@conorheffron/ironoc-frontend)
Expand Down
4 changes: 2 additions & 2 deletions frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@conorheffron/ironoc-frontend",
"version": "5.5.8",
"version": "5.5.9",
"private": false,
"dependencies": {
"@testing-library/jest-dom": "^5.17.0",
Expand Down
11 changes: 11 additions & 0 deletions frontend/src/Footer.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import { Container } from 'reactstrap';

export default function Footer() {
return (
<div className="App">
<Container>
<footer><p>© 2017 by Conor Heffron</p></footer>
</Container>
</div>
);
}
2 changes: 2 additions & 0 deletions frontend/src/components/About.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import React, { Component } from 'react';
import { Container } from 'reactstrap';
import '.././App.css';
import AppNavbar from '.././AppNavbar';
import Footer from '.././Footer';

class About extends Component {

Expand Down Expand Up @@ -37,6 +38,7 @@ class About extends Component {
</a>
</header>
</Container>
<Footer/>
</div>
);
}
Expand Down
2 changes: 2 additions & 0 deletions frontend/src/components/ControlledCarousel.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import 'bootstrap/dist/css/bootstrap.css';
import '.././App.css';
import { Container } from 'reactstrap';
import AppNavbar from '.././AppNavbar';
import Footer from '.././Footer';
import navy from '.././img/darkblue-bg.png';
import teal from '.././img/teal-bg.png';
import red from '.././img/red-bg.png';
Expand Down Expand Up @@ -103,6 +104,7 @@ class ControlledCarousel extends Component {
</Carousel.Item>
</Carousel>
</Container>
<Footer/>
</div>
);
}
Expand Down
3 changes: 3 additions & 0 deletions frontend/src/components/Home.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import React, { Component } from 'react';
import { Container } from 'reactstrap';
import '.././App.css';
import AppNavbar from '.././AppNavbar';
import Footer from '.././Footer';
import logo from '.././img/robot-logo.png';

class Home extends Component {
Expand All @@ -12,6 +13,7 @@ class Home extends Component {
<AppNavbar/>
<Container>
<header className="App-header">
<br /><br />
<a href="/"><img src={logo} className="App-logo" alt="iRonoc"/></a>
<p id="my-intro"> Welcome to my personal portfolio site.<br />
Please use the navigation bar to view different features such as about me, my link tree, a carousel
Expand All @@ -28,6 +30,7 @@ class Home extends Component {
<a href="https://www.ironoc.net/get-repo-issue/conorheffron/ironoc/">Issues JSON Sample</a>.</p>
</header>
</Container>
<Footer/>
</div>
);
}
Expand Down
2 changes: 2 additions & 0 deletions frontend/src/components/NotFound.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import React, { Component } from 'react';
import { Container } from 'reactstrap';
import '.././App.css';
import AppNavbar from '.././AppNavbar';
import Footer from '.././Footer';

class NotFound extends Component {

Expand All @@ -15,6 +16,7 @@ class NotFound extends Component {
<p id="my-intro">Sorry, the page you are looking for could not be found.</p>
</header>
</Container>
<Footer/>
</div>
);
}
Expand Down
2 changes: 2 additions & 0 deletions frontend/src/components/RepoDetails.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import { Button, ButtonGroup, Container, InputGroup, Table } from 'reactstrap';
import '.././App.css';
import Form from 'react-bootstrap/Form';
import AppNavbar from '.././AppNavbar';
import Footer from '.././Footer';
import { Link } from 'react-router-dom';

class RepoDetails extends Component {
Expand Down Expand Up @@ -82,6 +83,7 @@ class RepoDetails extends Component {
<tbody>{repoList}</tbody>
</Table>
</Container>
<Footer/>
</div>
);
}
Expand Down
2 changes: 2 additions & 0 deletions frontend/src/components/RepoIssues.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import { Button, Container, InputGroup, Table } from 'reactstrap';
import '.././App.css';
import Form from 'react-bootstrap/Form';
import AppNavbar from '.././AppNavbar';
import Footer from '.././Footer';

class RepoIssues extends Component {

Expand Down Expand Up @@ -75,6 +76,7 @@ class RepoIssues extends Component {
<tbody>{repoList}</tbody>
</Table>
</Container>
<Footer/>
</div>
);
}
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>conorheffron</groupId>
<artifactId>ironoc</artifactId>
<version>5.5.8</version>
<version>5.5.9</version>
<packaging>war</packaging>

<distributionManagement>
Expand Down
Loading