Skip to content

Commit 39c7094

Browse files
committed
2 parents c0fcb98 + 4893174 commit 39c7094

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
{
22
"name": "portfolio-astro",
33
"type": "module",
4-
"version": "0.0.1",
4+
"private": true,
5+
"version": "0.0.0",
56
"scripts": {
67
"dev": "astro dev --open",
78
"start": "astro dev",

src/pages/work/[...slug].astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,14 +66,14 @@ const nextEntry = projects[(currentIndex + 1) % projects.length];
6666
}
6767
</div>
6868

69-
<h1 class="mb-1 text-4xl font-medium dark:text-white">{title}</h1>
69+
<h1 class="mb-1 text-3xl dark:text-white">{title}</h1>
7070
<p class="opacity-60">
7171
<FormattedDate date={pubDate} />
7272
</p>
7373
{description && <p class="mb-12 text-pretty">{description}</p>}
7474

7575
<!-- badges -->
76-
<div class="mb-4 text-lg dark:text-white">Tools used</div>
76+
<h2 class="mb-4 text-lg dark:text-white">Tools used</h2>
7777
<ul class="mb-6 flex list-none flex-wrap gap-2.5">
7878
{
7979
tags.map((tag) => (

0 commit comments

Comments
 (0)