-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path+page.svelte
More file actions
57 lines (48 loc) · 2.02 KB
/
+page.svelte
File metadata and controls
57 lines (48 loc) · 2.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<script>
import { Row } from "@sveltestrap/sveltestrap";
import ProjectCard from "$components/ProjectCard.svelte";
import SectionHeader from "$components/SectionHeader.svelte";
import { meta_description, meta_image, meta_title, meta_url } from "$lib/config";
</script>
<svelte:head>
<meta name="og:type" content="website" />
<meta name="og:title" content={meta_title} />
<meta name="twitter:title" content={meta_title} />
<meta name="description" content={meta_description} />
<meta name="og:description" content={meta_description} />
<meta name="twitter:description" content={meta_description} />
<meta name="og:url" content={meta_url} />
<meta name="twitter:url" content={meta_url} />
{#if meta_image}
<meta name="og:image" content={meta_image} />
<meta name="twitter:image" content={meta_image} />
{/if}
</svelte:head>
<div class="d-flex bg-light p-4 fs-5 rounded-3 border border-2 border-primary-subtle">
<div class="align-middle pe-3">
<img height="60" src="/assets/headshot.jpg" alt="That's me :)" />
</div>
<div>
Bioinformatics Scientist at <a href="https://google.com" target="_blank">ABC Bio</a>
<p class="small text-muted mb-0">A short summary of what you specialize in.</p>
</div>
</div>
<SectionHeader title="What's New" />
<Row cols={{ xl: 3, lg: 3, md: 2, sm: 1, xs: 1 }}>
<!-- Photo by <a href="https://unsplash.com/@xteemu">Teemu Paananen</a> on <a href="https://unsplash.com/photos/pic-bzdhc5b3Bxs">Unsplash</a> -->
<ProjectCard
name="📝 Installing XYZ on Apple M1"
date="April 2025"
url="/articles/install-xyz"
img="/assets/talk.jpg"
description="How to install the XYZ tool on the M1 chips and avoid the error..."
/>
<!-- Photo by <a href="https://unsplash.com/@chuttersnap">CHUTTERSNAP</a> on <a href="https://unsplash.com/photos/pic-UmncJq4KPcA">Unsplash</a> -->
<ProjectCard
name="🗞️ Our XYZ paper is published"
date="December 2024"
url="https://google.com"
img="/assets/plants.jpg"
description="We assembled the Rainbow eucalyptus genome and identified a novel..."
/>
</Row>