Skip to content

Commit

Permalink
better photography links, thanks Jonas!
Browse files Browse the repository at this point in the history
  • Loading branch information
christopher-besch committed Jul 23, 2023
1 parent 12387fb commit c01a981
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 9 deletions.
9 changes: 3 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,9 @@
- [Production Deployment](https://chris-besch.com)
- [Debug Build](https://dev.chris-besch.com)

This is the homepage of a backend dev, who doesn't particularly care about looks.
Why does the author not mind some barebone styling?
Read [this](https://motherfuckingwebsite.com).

This homepage is not under any open-source license!
If you intend to use any of the code or content from it, you have to ask the copyright holder, Christopher Besch, for permission.
This homepage is under Christopher Besch's copyright!
Even though it is on GitHub it is not under an open-source license!
If you intend to use any of the code or content from it, you have to ask the copyright holder for permission.

## How to Build?
Install dependencies:
Expand Down
6 changes: 3 additions & 3 deletions src/pages/photography/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ const Photography = ({ data }: PageProps<Queries.PhotographyQuery>) => {
return (
<Layout heading="Photography">
<Link to="/photography/to_vanish"><GatsbyImage className={photography_styles.slim_photo} image={getImage(data.to_vanish as ImageDataLike)!} alt="alpha_mike" /></Link>
<Link className={`${util_styles.block} ${util_styles.link}`} to="/photography/to_vanish">To Vanish</Link>
<Link className={`${util_styles.block} ${util_styles.link}`} to="/photography/to_vanish">To Vanish</Link>

<Link to="/photography/leaving_home"><GatsbyImage className={photography_styles.slim_photo} image={getImage(data.leaving_home as ImageDataLike)!} alt="alpha_mike" /></Link>
<Link className={`${util_styles.block} ${util_styles.link}`} to="/photography/leaving_home">Leaving Home</Link>
<Link className={`${util_styles.block} ${util_styles.link}`} to="/photography/leaving_home">Leaving Home</Link>

<Link to="/photography/transient"><GatsbyImage className={photography_styles.slim_photo} image={getImage(data.transient as ImageDataLike)!} alt="alpha_mike" /></Link>
<Link className={`${util_styles.block} ${util_styles.link}`} to="/photography/transient">Transient</Link>
<Link className={`${util_styles.block} ${util_styles.link}`} to="/photography/transient">Transient</Link>
</Layout >
);
};
Expand Down

0 comments on commit c01a981

Please sign in to comment.