most redacted. searching for more
All checks were successful
Rebuild signaller for deprived.dev to rebuild site / test_service (push) Successful in 16s

This commit is contained in:
BOTAlex 2025-10-09 05:51:41 +02:00
parent 4205712d32
commit 2f5aa50c84
11 changed files with 240 additions and 228 deletions

View file

@ -6,6 +6,13 @@
import EmphasysLogo from "$lib/zhen/cv-comps/EmphasysLogo.png";
import IconAndText2 from "./IconAndText2.svelte";
import re from "@src/ts/Redaction/Redactor";
import env, { initEnv } from "@src/ts/EnvHandler";
import onMount from "@src/optimizers/onMount";
onMount(() => {
initEnv();
});
</script>
<div class="container h-10">
@ -13,20 +20,22 @@
<b style="text-align:left;"> Education </b>
</div>
<div class="flex justify-center p-2 w-full">
<IconAndText2 logo={DTU_Logo}>
<b>DTU</b><br />
<IconAndText2
logo={$re?.education[0].imageId.replace("[PB]", env.POCKETBASE_URL) ?? ""}
>
<b>{$re?.education[0].name ?? ""}</b><br />
<p style="font-size: 0.5rem;">AI and data</p>
</IconAndText2>
<IconAndText2 logo={NextLogo}>
<b>Next</b><br />
<IconAndText2 logo={$re?.education[1].imageId ?? ""}>
<b>{$re?.education[0].name ?? ""}</b><br />
<p style="font-size: 0.5rem;">Computer science</p>
</IconAndText2>
<IconAndText2 logo={SasLogo}>
<b>Master class</b><br />
<p style="font-size: 0.5rem;">SAS Programming</p>
</IconAndText2>
<IconAndText2 logo={EmphasysLogo}>
<span class="font-semibold">Emphasys center</span><br />
<IconAndText2 logo={$re?.education[2].imageId ?? ""}>
<span class="font-semibold">{$re?.education[2].name ?? ""}</span><br />
<p style="font-size: 0.5rem;">VR development</p>
</IconAndText2>
</div>
@ -44,4 +53,3 @@
}
}
</style>