fixed fade and added nextjs project to portfolio.
All checks were successful
Node.js CI / build_app (push) Successful in 16s
Node.js CI / build_image (push) Successful in 48s

This commit is contained in:
ChrQR 2024-05-12 14:21:10 +02:00
parent ba774354b8
commit 282422e8f8
4 changed files with 28 additions and 4 deletions

View File

@ -13,11 +13,11 @@
}, },
{ {
name: "whoami", name: "whoami",
subPages: ["about", "resume", "homelab"], subPages: ["about", "resume"],
}, },
{ {
name: "portfolio", name: "portfolio",
subPages: ["learnings", "portfolio_project"], subPages: ["learnings", "portfolio_project", "next.js_weather", "homelab"],
}, },
{ {
name: "contact", name: "contact",

View File

@ -1 +1,6 @@
<h1>Blog style learnings description.</h1> <script>
import { fade } from "svelte/transition";
</script>
<h1 in:fade >Still learning how to cms.</h1>

View File

@ -0,0 +1,11 @@
<script>
import { fade } from "svelte/transition";
</script>
<div in:fade>
<h1 class="text-2xl font-normal">Weather application</h1>
<p>this is a simple application to fetch a weekly weather forecast.</p>
<p>It's built in <span class="font-normal">react/nextjs</span> using <span class="font-normal">typescript</span> and <span class="font-normal">Tailwind CSS</span>. It queries <span class="font-normal">Google Places API</span> for geo location and then queries <span class="font-normal">open-meteo API</span> for the weather forecast.</p>
<p>While it's still under development you can try it out at <a class="underline" href="https://weather.rannes.dev">weather.rannes.dev</a></p>
</div>

View File

@ -1 +1,9 @@
<h1>this is the page describing my portfolio project in juuuuuust a second.</h1> <script>
import { fade } from "svelte/transition";
</script>
<div in:fade>
<h1 class="text-2xl font-normal">Svelte Portfolio Page</h1>
<p>This portfolio is built using <span class="font-normal">Svelte & Svelte kit</span> and <span class="font-normal">Tailwind CSS</span> as a simple static page.</p>
</div>