~repos /website
git clone https://pyrossh.dev/repos/website.git
木 Personal website of pyrossh. Built with astrojs, shiki, vite.
47703941
—
pyrossh 1 year ago
update content
- src/lib/components/Header.svelte +3 -8
- src/routes/+layout.svelte +1 -1
- src/routes/+page.svelte +10 -10
src/lib/components/Header.svelte
CHANGED
|
@@ -1,9 +1,5 @@
|
|
|
1
|
-
<script>
|
|
2
|
-
import SocialLinks from './SocialLinks.svelte';
|
|
3
|
-
</script>
|
|
4
|
-
|
|
5
1
|
<header>
|
|
6
|
-
<nav class="flex
|
|
2
|
+
<nav class="flex w-full flex-1 flex-row justify-center bg-black font-mono text-lg">
|
|
7
3
|
<div class="flex flex-row flex-1 items-center p-3 max-w-5xl">
|
|
8
4
|
<a class="flex text-#f1fa8c pr-4 hover:no-underline ml-0 pl-0" href="/">
|
|
9
5
|
<span class="mr-1 font-logo font-bold">木</span> pyros.sh
|
|
@@ -15,9 +11,8 @@
|
|
|
15
11
|
<a href="/cv" rel="prefetch"> cv </a>
|
|
16
12
|
<div>|</div>
|
|
17
13
|
<a href="/posts" rel="prefetch"> posts </a>
|
|
18
|
-
|
|
14
|
+
<div>|</div>
|
|
19
|
-
|
|
15
|
+
<a href="https://github.com/pyrossh/pyros.sh"> code </a>
|
|
20
|
-
<SocialLinks />
|
|
21
16
|
</div>
|
|
22
17
|
</div>
|
|
23
18
|
</nav>
|
src/routes/+layout.svelte
CHANGED
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
data-code="fynEKPntFh9oUyUcIO76Tmcxzjkmwfjg"
|
|
23
23
|
></script>
|
|
24
24
|
</svelte:head>
|
|
25
|
-
<div class="leading-8 flex flex-1 flex-col
|
|
25
|
+
<div class="leading-8 flex flex-1 flex-col text-base sm:leading-7 m-0">
|
|
26
26
|
<Header />
|
|
27
27
|
<main class="w-full h-full block bg-white">
|
|
28
28
|
<div class="flex w-full flex-1 flex-row justify-center">
|
src/routes/+page.svelte
CHANGED
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
<div>
|
|
23
23
|
<h1 class="text-3xl font-bold mb-4">Hello!</h1>
|
|
24
24
|
<p>
|
|
25
|
-
I'm
|
|
25
|
+
I'm a full-stack engineer from Bengaluru, India named
|
|
26
26
|
<a
|
|
27
27
|
class="underline"
|
|
28
28
|
href="https://www.linkedin.com/in/pyrossh"
|
|
@@ -30,18 +30,18 @@
|
|
|
30
30
|
rel="noopener noreferrer"
|
|
31
31
|
>
|
|
32
32
|
<strong>Peter John</strong>
|
|
33
|
-
</a>
|
|
33
|
+
</a>. I have the good fortune to write code for a living.
|
|
34
|
-
to do this as my job.
|
|
35
34
|
</p>
|
|
36
35
|
<p>
|
|
37
|
-
|
|
36
|
+
At the moment, Equal Experts employs me. While I've experimented with functional programming
|
|
37
|
+
languages like Haskell, Idris, and Koka, I prefer to use statically typed imperative
|
|
38
|
+
programming languages like Rust, Go, and Java. I've generally worked for new businesses and
|
|
38
|
-
|
|
39
|
+
corporations that focus on products. Throughout these early years of launch, I have learned a
|
|
39
|
-
|
|
40
|
+
great deal about the healthcare and financial industries.
|
|
40
41
|
</p>
|
|
41
42
|
<p>
|
|
42
|
-
I
|
|
43
|
+
I enjoy working on open-source projects, and during the last decade, I've created a number of
|
|
43
|
-
{new Date().getFullYear() - 2014}
|
|
44
|
-
|
|
44
|
+
valuable projects that are extensively utilized by people worldwide.
|
|
45
45
|
</p>
|
|
46
46
|
<div>
|
|
47
47
|
<div class="flex items-center mt-8 mb-4">
|
|
@@ -228,7 +228,7 @@
|
|
|
228
228
|
<h2>Contact</h2>
|
|
229
229
|
</div>
|
|
230
230
|
<ul
|
|
231
|
-
class="grid gap-2 grid-cols-1 text-
|
|
231
|
+
class=" grid gap-2 grid-cols-1 text-left mt-4 children:(bg-slate-100 p-2 flex flex-col items-baseline sm:flex-row)"
|
|
232
232
|
>
|
|
233
233
|
<li>
|
|
234
234
|
<strong class="mr-2">Email:</strong>
|