Skip to content

Commit

Permalink
Merge pull request #67 from ngblaylock/61-update-smallsat
Browse files Browse the repository at this point in the history
61 update smallsat
  • Loading branch information
ngblaylock authored Jul 4, 2024
2 parents 1aa1553 + 20c0e39 commit 710f5da
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 26 deletions.
13 changes: 6 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
# nathanblaylock.com

Develop:

## Develop:
1. Create a new branch for what you are working on
2. `npm run dev`

Deploy:

1. Commit files to new branch
2. Merge in to `master` branch. This triggers a GitHub action
3. Check the actions status at https://github.com/ngblaylock/nathanblaylock.com/actions
## Deploy:
1. Update package.json version
2. Commit files to new branch
3. Merge in to `master` branch. This triggers a GitHub action
4. Check the actions status at https://github.com/ngblaylock/nathanblaylock.com/actions
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nathanblaylock.com",
"version": "2.0.0",
"version": "2.0.1",
"private": true,
"scripts": {
"blunt": "node ./node_modules/@ngblaylock/blunt-images ./blunt.config.cjs",
Expand Down
4 changes: 2 additions & 2 deletions src/components/Footer.svelte
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<div class="container">
<footer class="border-top d-flex flex-wrap gap-3 justify-content-center align-items-center py-3">
<div class="d-flex justify-content-center">© Nathan Blaylock 2023</div>
<div class="d-flex justify-content-center">© Nathan Blaylock {new Date().getFullYear()}</div>

<div class="d-flex flex-wrap gap-3 justify-content-center">
<a href="https://docs.nathanblaylock.com/" target="_blank">Documentation</a>
Expand All @@ -9,7 +9,7 @@
<a href="/privacy">Privacy</a>
</div>

<div class="d-flex align-items-center justify-content-center ms-lg-auto">
<div class="hstack gap-2 ms-lg-auto">
<a href="https://www.nngroup.com/ux-certification/verify/" target="_blank"
><img
src="https://media.nngroup.com/nng-uxc-badge.png"
Expand Down
35 changes: 19 additions & 16 deletions src/components/ProjectSmallSatArchive.svelte
Original file line number Diff line number Diff line change
@@ -1,22 +1,25 @@
<script lang="ts">
import ProjectBtnLink from './ProjectBtnLink.svelte';
import ProjectIcons from './ProjectIcons.svelte';
import ProjectBtnLink from './ProjectBtnLink.svelte';
import ProjectIcons from './ProjectIcons.svelte';
</script>

<div class="bg-light rounded p-5 pb-3 mb-4">
<img src="/images/optimized/projects/smallsat/lg_smallsat-posters.png" alt="SmallSat Posters" />
<img src="/images/optimized/projects/smallsat/lg_smallsat-posters.png" alt="SmallSat Posters" />

<div class="text-center mb-3"><strong>Archived Sites</strong></div>
<div class="d-flex justify-content-center gap-2">
<ProjectBtnLink href="https://web.archive.org/web/20200722050834/https://smallsat.org/"
>2020</ProjectBtnLink
>
<ProjectBtnLink href="https://web.archive.org/web/20210616142210/https://smallsat.org/"
>2021</ProjectBtnLink
>
<ProjectBtnLink href="https://web.archive.org/web/20220602214552/https://smallsat.org/"
>2022</ProjectBtnLink
>
<ProjectBtnLink href="https://smallsat.org/">2023</ProjectBtnLink>
</div>
<div class="text-center mb-3"><strong>Archived Sites</strong></div>
<div class="d-flex justify-content-center gap-2">
<ProjectBtnLink href="https://web.archive.org/web/20200722050834/https://smallsat.org/"
>2020</ProjectBtnLink
>
<ProjectBtnLink href="https://web.archive.org/web/20210616142210/https://smallsat.org/"
>2021</ProjectBtnLink
>
<ProjectBtnLink href="https://web.archive.org/web/20220602214552/https://smallsat.org/"
>2022</ProjectBtnLink
>
<ProjectBtnLink href="https://web.archive.org/web/20230627174913/https://smallsat.org/"
>2024</ProjectBtnLink
>
<ProjectBtnLink href="https://smallsat.org/">2024</ProjectBtnLink>
</div>
</div>
Binary file modified src/raw-images/projects/smallsat/smallsat-posters.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/raw-images/projects/smallsat/smallsat-screenshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 710f5da

Please sign in to comment.