Compare commits

..

10 Commits

Author SHA1 Message Date
b11c414130 Merge pull request 'add markdown formatting with code support' (#14) from dev into staging
All checks were successful
build / build (push) Successful in 1m16s
build / deploy (push) Successful in 13s
Reviewed-on: #14
2026-09-01 11:20:27 +00:00
4328d81408 Merge pull request 'add blog editor' (#11) from dev into staging
All checks were successful
build / build (push) Successful in 43s
build / deploy (push) Successful in 13s
Reviewed-on: #11
2026-08-31 16:40:31 +00:00
62ae672630 Merge pull request 'update api key imprts and change URLs' (#9) from dev into staging
All checks were successful
build / build (push) Successful in 43s
build / deploy (push) Successful in 3s
Reviewed-on: #9
2026-08-31 14:41:25 +00:00
f94d68f539 Merge pull request 'dynamically import the maptiler api key' (#8) from dev into staging
All checks were successful
build / build (push) Successful in 46s
build / deploy (push) Successful in 13s
Reviewed-on: #8
2026-08-31 14:38:24 +00:00
3c2b626ea2 Merge pull request 'update dockerfile' (#7) from dev into staging
All checks were successful
build / build (push) Successful in 1m17s
build / deploy (push) Successful in 3s
Reviewed-on: #7
2026-08-31 14:24:48 +00:00
eba89011aa Merge pull request 'smaller docker image' (#6) from dev into staging
All checks were successful
build / build (push) Successful in 38s
build / deploy (push) Successful in 4s
Reviewed-on: #6
2026-08-30 22:25:18 +00:00
c76a137090 Merge pull request 'removed auth dependency at build time' (#5) from dev into staging
Some checks failed
build / build (push) Failing after 1m19s
build / deploy (push) Has been skipped
Reviewed-on: #5
2026-08-30 22:07:07 +00:00
99e97ce750 Merge pull request 'fix dockerfile with docker lockfile' (#4) from dev into staging
Some checks failed
build / build (push) Failing after 38s
build / deploy (push) Has been skipped
Reviewed-on: #4
2026-08-30 21:43:01 +00:00
b005a39f7c Merge pull request 'fix: build errors and merging projects and homepage' (#3) from dev into staging
Some checks failed
build / build (push) Failing after 16s
build / deploy (push) Has been skipped
Reviewed-on: #3
2026-08-30 21:39:46 +00:00
95514c8eea Merge pull request 'dev' (#2) from dev into staging
Some checks failed
build / build (push) Failing after 23s
build / deploy (push) Has been skipped
Reviewed-on: #2
2026-08-29 11:39:42 +00:00
3 changed files with 16 additions and 31 deletions

View File

@@ -48,31 +48,18 @@
]; ];
</script> </script>
<div class="flex flex-col min-h-screen"> <header class="flex justify-between items-center gap-4 py-4 px-4">
<header class="flex justify-between items-center gap-4 py-4 px-4"> <a href={resolve('/')} class="text-2xl font-bold">Stan Runge</a>
<a href={resolve('/')} class="text-2xl font-bold">Stan Runge</a> <nav class="flex flex-wrap justify-center gap-4" aria-label="Social links">
<nav class="flex flex-wrap justify-center gap-4" aria-label="Social links"> {#each copies as c (c.label)}
{#each copies as c (c.label)} <CopyButton {...c} />
<CopyButton {...c} /> {/each}
{/each} {#each links as { icon: Icon, label, href } (label)}
{#each links as { icon: Icon, label, href } (label)} <a {href} aria-label={label} class="text-2xl transition hover:opacity-60">
<a {href} aria-label={label} class="text-2xl transition hover:opacity-60"> <Icon />
<Icon /> </a>
</a> {/each}
{/each} </nav>
</nav> </header>
</header>
<main class="flex-1"> {@render children()}
{@render children()}
</main>
<footer class="flex justify-center py-8 bg-gray-200">
<p>
Hosted on <a
class="underline text-blue-500"
href="https://git.stanrunge.dev/stan/personal-website">my git server :)</a
>
</p>
</footer>
</div>

View File

@@ -63,8 +63,7 @@
const initMap = (center: [number, number], zoom: number) => { const initMap = (center: [number, number], zoom: number) => {
map = new Map({ map = new Map({
container: mapContainer, container: mapContainer,
style: style: 'https://api.maptiler.com/maps/satellite/style.json?key=' + env.PUBLIC_MAPTILER_API_KEY,
'https://api.maptiler.com/maps/satellite/style.json?key=' + env.PUBLIC_MAPTILER_API_KEY,
center, center,
zoom zoom
}); });

View File

@@ -73,8 +73,7 @@
map = new Map({ map = new Map({
container: mapContainer, container: mapContainer,
style: style: 'https://api.maptiler.com/maps/satellite/style.json?key=' + env.PUBLIC_MAPTILER_API_KEY,
'https://api.maptiler.com/maps/satellite/style.json?key=' + env.PUBLIC_MAPTILER_API_KEY,
center: [lng!, lat!], center: [lng!, lat!],
zoom: 15 zoom: 15
}); });