Skip to content

Commit

Permalink
add link to biscuits in blog
Browse files Browse the repository at this point in the history
  • Loading branch information
a-type committed May 23, 2024
1 parent 9fb918e commit 857e09a
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 5 deletions.
17 changes: 13 additions & 4 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,22 +25,22 @@
"type": "npm",
"script": "app-dev",
"path": "apps/gnocchi/web",
"problemMatcher": [],
"problemMatcher": ["$tsc-watch"],
"label": "Run Gnocchi",
"detail": "vite --host --mode development"
},
{
"type": "npm",
"script": "app-dev",
"path": "apps/trip-tick/web",
"problemMatcher": [],
"problemMatcher": ["$tsc-watch"],
"label": "Run Trip Tick",
"detail": "vite --host --mode development"
},
{
"type": "npm",
"script": "dev",
"problemMatcher": [],
"problemMatcher": ["$tsc-watch"],
"label": "Main Dev",
"detail": "turbo run dev",
"runOptions": {
Expand All @@ -58,9 +58,18 @@
"type": "npm",
"script": "app-dev",
"path": "apps/shopping/web",
"problemMatcher": [],
"problemMatcher": ["$tsc-watch"],
"label": "Run Shopping",
"detail": "vite"
},
{
"type": "npm",
"script": "dev",
"path": "blog",
"problemMatcher": ["$tsc-watch"],
"label": "Blog",
"detail": "astro",
"isBackground": true
}
]
}
6 changes: 5 additions & 1 deletion blog/src/components/Header.astro
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,12 @@ import { SITE_TITLE } from '../consts';

<header>
<nav
class="row py-1 px-4 bg-primary-wash border-b border-b-solid border-b-black mb-2"
class="row py-1 px-4 bg-primary-wash border-b border-b-solid border-b-black mb-2 justify-between"
>
<h2 class="font-fancy"><a href="/">{SITE_TITLE}</a></h2>
<a
class="flex gap-2 px-4 py-1 rounded-full bg-primary border-default color-black font-bold"
href="https://biscuits.club">Try Biscuits Apps</a
>
</nav>
</header>

0 comments on commit 857e09a

Please sign in to comment.