diff --git a/README.md b/README.md index 29705af..381bbfc 100644 --- a/README.md +++ b/README.md @@ -16,4 +16,4 @@ Live at [projectsegfau.lt](https://projectsegfau.lt). 2. Change directory into the clone using `cd ./website`. 3. Install dependencies using `pnpm i` (recommended) or `npm i`. 4. Run the dev server using `pnpm dev` (recommended) or `npm run dev`. -5. Open a browser on `http://localhost:5173/` and you should see the website running locally! \ No newline at end of file +5. Open a browser on `http://localhost:5173/` and you should see the website running locally! diff --git a/package.json b/package.json index b4efa0a..a9e9eb0 100644 --- a/package.json +++ b/package.json @@ -17,6 +17,7 @@ "@iconify-json/simple-icons": "^1.1.20", "@sveltejs/adapter-static": "1.0.0-next.38", "@sveltejs/kit": "1.0.0-next.396", + "dayjs": "^1.11.4", "mdsvex": "^0.10.6", "prettier": "^2.7.1", "prettier-plugin-svelte": "^2.7.0", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 152f674..c0e6d92 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -5,6 +5,7 @@ specifiers: '@iconify-json/simple-icons': ^1.1.20 '@sveltejs/adapter-static': 1.0.0-next.38 '@sveltejs/kit': 1.0.0-next.396 + dayjs: ^1.11.4 mdsvex: ^0.10.6 prettier: ^2.7.1 prettier-plugin-svelte: ^2.7.0 @@ -24,6 +25,7 @@ devDependencies: '@iconify-json/simple-icons': 1.1.20 '@sveltejs/adapter-static': 1.0.0-next.38 '@sveltejs/kit': 1.0.0-next.396_svelte@3.49.0+vite@3.0.4 + dayjs: 1.11.4 mdsvex: 0.10.6_svelte@3.49.0 prettier: 2.7.1 prettier-plugin-svelte: 2.7.0_o3ioganyptcsrh6x4hnxvjkpqi @@ -264,6 +266,10 @@ packages: which: 2.0.2 dev: true + /dayjs/1.11.4: + resolution: {integrity: sha512-Zj/lPM5hOvQ1Bf7uAvewDaUcsJoI6JmNqmHhHl3nyumwe0XHwt8sWdOVAPACJzCebL8gQCi+K49w7iKWnGwX9g==} + dev: true + /debug/4.3.4: resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} engines: {node: '>=6.0'} diff --git a/src/lib/Footer.svelte b/src/lib/Footer.svelte index f3842ad..faf7b21 100644 --- a/src/lib/Footer.svelte +++ b/src/lib/Footer.svelte @@ -4,22 +4,27 @@ @@ -37,7 +42,7 @@ align-items: center; flex-direction: column; border-top: 1px solid var(--grey); - padding: .5rem; + padding: 0.5rem; } div.content > * { @@ -47,12 +52,12 @@ text-align: center; } - .badge { - display: flex; - flex-direction: row; - justify-content: center; - align-items: center; - } + .badge { + display: flex; + flex-direction: row; + justify-content: center; + align-items: center; + } img { width: 270px; diff --git a/src/lib/Hero.svelte b/src/lib/Hero.svelte index 5c87409..f5983a9 100644 --- a/src/lib/Hero.svelte +++ b/src/lib/Hero.svelte @@ -1,42 +1,42 @@
- {#if title} -

{title}

- {/if} - {#if description} -

{description}

- {/if} - + {#if title} +

{title}

+ {/if} + {#if description} +

{description}

+ {/if} +
\ No newline at end of file + h1 { + font-size: 50px; + font-weight: 800; + color: var(--accent-primary); + } + diff --git a/src/lib/Nav.svelte b/src/lib/Nav.svelte index 895620d..f137838 100644 --- a/src/lib/Nav.svelte +++ b/src/lib/Nav.svelte @@ -18,8 +18,7 @@