Skip to content

Commit

Permalink
Added links to Springer. (#15)
Browse files Browse the repository at this point in the history
Doc: Added missing links in README.md
Doc: Added link to Springer Paper
Change: Added link to Springer Paper in footer and header

#patch
  • Loading branch information
Luzkan committed Mar 28, 2023
1 parent 145a554 commit 4410522
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@
<h2 align="center">Bad Code Smells</h2>
<div>
<p style="font-style: italic;">A Comprehensive Online Catalog</p>
<strong><a href="https://luzkan.github.io/smells/">Visit the Website</a></strong> · <strong><a href="https://github.com/Luzkan/smells/tree/main/docs/paper.pdf">Checkout the Paper</a></strong> · <strong><a href="https://github.com/Luzkan/smells/tree/main/docs/thesis.pdf">Checkout the Thesis</a></strong>
<strong><a href="https://luzkan.github.io/smells/">Visit the Website</a></strong> · <strong><a href="https://github.com/Luzkan/smells/tree/main/docs/paper.pdf">Preprint</a></strong> · <strong><a href="https://link.springer.com/chapter/10.1007/978-3-031-25695-0_24">Springer Paper</a></strong> · <strong><a href="https://github.com/Luzkan/smells/tree/main/docs/thesis.pdf">The Thesis</a></strong>
</div>
</div>

# Table of Contents

1. [What's this?](#whats-this)
2. [How can I use this?](#how-can-i-use-this)
- Knowledge Browsing
- Data Extraction
- [Knowledge Browsing](#website)
- [Data Extraction](#data)
3. [Who is the beneficent?](#who-is-the-beneficent)
- [New Programmers](#new-programmers)
- [Developers](#developers)
Expand Down
4 changes: 4 additions & 0 deletions src/components/header/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import AlternateEmailIcon from "@mui/icons-material/AlternateEmail"
import HelpIcon from "@mui/icons-material/Help"
import HomeIcon from "@mui/icons-material/Home"
import MenuBookIcon from "@mui/icons-material/MenuBook"
import ArticleIcon from "@mui/icons-material/Article"
import { AppBar, IconButton, Toolbar, Typography } from "@mui/material"
import createStyles from "@mui/styles/createStyles"
import makeStyles from "@mui/styles/makeStyles"
Expand Down Expand Up @@ -47,6 +48,9 @@ function Header({ ButtonOpenSidebar }: Props): JSX.Element {
<IconButton href="https://www.linkedin.com/in/luzkan/" color="inherit" aria-label="contact" size="large">
<AlternateEmailIcon />
</IconButton>
<IconButton href="https://link.springer.com/chapter/10.1007/978-3-031-25695-0_24" color="inherit" aria-label="paper" size="large">
<ArticleIcon />
</IconButton>
<IconButton href="https://github.com/Luzkan/smells/tree/main/docs/paper.pdf" color="inherit" aria-label="paper" size="large">
<MenuBookIcon />
</IconButton>
Expand Down
5 changes: 4 additions & 1 deletion src/views/catalog/content/footer/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,10 @@ function CatalogFooter() {
{" On GitHub "}
</Button>
<Button className={classes.link} variant="contained" href="https://github.com/Luzkan/smells/tree/main/docs/paper.pdf">
{" Paper "}
{" Preprint "}
</Button>
<Button className={classes.link} variant="contained" href="https://link.springer.com/chapter/10.1007/978-3-031-25695-0_24">
{" Springer Paper "}
</Button>
<Button className={classes.link} variant="contained" href="https://www.linkedin.com/in/luzkan/">
{" Author "}
Expand Down

0 comments on commit 4410522

Please sign in to comment.