Witness protection
This commit is contained in:
@@ -2,6 +2,7 @@
|
|||||||
import { HeroLayout } from '$lib/data/constants';
|
import { HeroLayout } from '$lib/data/constants';
|
||||||
import type { Site } from '$lib/data/types';
|
import type { Site } from '$lib/data/types';
|
||||||
import IconContact from './icons/IconContact.svelte';
|
import IconContact from './icons/IconContact.svelte';
|
||||||
|
import IconMapPin from './icons/IconMapPin.svelte';
|
||||||
import IconShare from './icons/IconShare.svelte';
|
import IconShare from './icons/IconShare.svelte';
|
||||||
|
|
||||||
let {
|
let {
|
||||||
@@ -88,7 +89,8 @@
|
|||||||
<span class="hero-meta-sep" aria-hidden="true"> · </span>
|
<span class="hero-meta-sep" aria-hidden="true"> · </span>
|
||||||
{/if}
|
{/if}
|
||||||
{/if}
|
{/if}
|
||||||
{#if location}<span>{location}</span>{/if}
|
{#if location}<span class="location"><IconMapPin size={16} /> {location}</span
|
||||||
|
>{/if}
|
||||||
</p>
|
</p>
|
||||||
{/if}
|
{/if}
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -0,0 +1,18 @@
|
|||||||
|
<script lang="ts">
|
||||||
|
let { size = 24 }: { size?: number } = $props();
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
width={size}
|
||||||
|
height={size}
|
||||||
|
viewBox="0 0 24 24"
|
||||||
|
fill="none"
|
||||||
|
stroke="currentColor"
|
||||||
|
stroke-width="2"
|
||||||
|
stroke-linecap="round"
|
||||||
|
stroke-linejoin="round"
|
||||||
|
><path
|
||||||
|
d="M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0"
|
||||||
|
/><circle cx="12" cy="10" r="3" /></svg
|
||||||
|
>
|
||||||
@@ -30,7 +30,7 @@
|
|||||||
"profileImage": "tropical-mifi",
|
"profileImage": "tropical-mifi",
|
||||||
"pronunciation": "MY-fy (/ˈmaɪˌfaɪ/)",
|
"pronunciation": "MY-fy (/ˈmaɪˌfaɪ/)",
|
||||||
"pronouns": "he/him/mifi",
|
"pronouns": "he/him/mifi",
|
||||||
"location": "Vitória, ES, Brasil",
|
"location": "Boston, MA",
|
||||||
"person": {
|
"person": {
|
||||||
"name": "mifi",
|
"name": "mifi",
|
||||||
"sameAs": [
|
"sameAs": [
|
||||||
|
|||||||
@@ -44,6 +44,11 @@
|
|||||||
defer
|
defer
|
||||||
src="https://analytics.mifi.holdings/script.js"
|
src="https://analytics.mifi.holdings/script.js"
|
||||||
data-website-id={data.umamiMeasurementId}
|
data-website-id={data.umamiMeasurementId}
|
||||||
|
data-performance="true"
|
||||||
|
></script>
|
||||||
|
<script
|
||||||
|
defer src="https://analytics.mifi.holdings/recorder.js"
|
||||||
|
data-website-id={data.umamiMeasurementId}
|
||||||
></script>
|
></script>
|
||||||
|
|
||||||
<link rel="stylesheet" href="/assets/tokens-{data.variant}.css" />
|
<link rel="stylesheet" href="/assets/tokens-{data.variant}.css" />
|
||||||
|
|||||||
Reference in New Issue
Block a user