1
0
mirror of https://github.com/djkotowski/personal-website.git synced 2026-06-20 13:02:47 -05:00

Fill in initial layout and resume details

This commit is contained in:
2023-05-07 01:39:52 -05:00
parent 28a4b45a34
commit c801394771
12 changed files with 243 additions and 7 deletions
+24
View File
@@ -0,0 +1,24 @@
<script>
import Header from "./components/Header.svelte";
</script>
<section class="container mx-auto px-4">
<Header>Skills</Header>
<div class="content-center lg:text-lg">
<table class="mx-auto sm:whitespace-nowrap">
<tr>
<th class="block sm:table-cell font-bold w-auto pr-3 lg:pr-5 text-left">Backend:</th>
<td class="block pb-4 sm:pb-0 sm:table-cell text-left">Ruby, Ruby on Rails, Node.js, Sinatra</td>
</tr>
<tr>
<th class="block sm:table-cell font-bold w-auto pr-3 lg:pr-5 text-left">Frontend:</th>
<td class="block pb-4 sm:pb-0 sm:table-cell text-left">ES6, TypeScript, React, Redux, Svelte, CSS/Sass, Webpack, Vite</td>
</tr>
<tr>
<th class="block sm:table-cell font-bold w-auto pr-3 lg:pr-5 text-left">Data Stores/Indexes:</th>
<td class="block pb-4 sm:pb-0 sm:table-cell text-left">PostgreSQL, MySQL, Redis, Elasticsearch</td>
</tr>
</table>
</div>
</section>