summaryrefslogtreecommitdiff
path: root/src/pages/tech.astro
diff options
context:
space:
mode:
authorMatt Kosarek <matt.kosarek@canonical.com>2026-04-28 19:50:26 -0400
committerMatt Kosarek <matt.kosarek@canonical.com>2026-04-28 19:50:26 -0400
commitcae601b0fe048add790fa3b4341d76c973f14b2b (patch)
tree99313f7be181adcf1604e7fa8d6c583f487b1842 /src/pages/tech.astro
parent5df5ae2fc3f3bcbd53a9e34ba6b8ddaf4b00036a (diff)
Publish new blog post + style changes
Diffstat (limited to 'src/pages/tech.astro')
-rw-r--r--src/pages/tech.astro25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/pages/tech.astro b/src/pages/tech.astro
new file mode 100644
index 0000000..1f554aa
--- /dev/null
+++ b/src/pages/tech.astro
@@ -0,0 +1,25 @@
+---
+import BaseLayout from '../layouts/BaseLayout.astro';
+---
+
+<BaseLayout title="Tech I Like - Matthew Kosarek" description="Tech that Matthew Kosarek likes and uses">
+ <div class="index-layout">
+ <div class="index-main">
+ <section>
+ <h2>Things I Use</h2>
+ <h3>For Development</h3>
+ <ul>
+ <li><b>My dotfiles</b>: I use everything in my dotfiles every day, which you can find <a href="https://github.com/mattkae/dotfiles">here</a></li>
+ <li><a href="https://www.gnu.org/software/emacs/">Emacs</a>: I am a long-time Emacs user. You can find my config <a href="https://git.matthewkosarek.xyz/emacs_config/">here</a></li>
+ <li><a href="https://www.jetbrains.com/clion/">Clion</a>: I use this for my coproate life, although it is quite heavy</li>
+ <li><a href="https://astro.build/">astro</a>: super simple SSG that I use constantly</li>
+ </ul>
+ <h3>For Lifestyle</h3>
+ <ul>
+ <li><a href="https://orgmode.org/">Org Mode</a>: for calendar, todo lists, notes, and more!</li>
+ <li><a href="https://newsboat.org/">Newsboat</a>: RSS reader</li>
+ </ul>
+ </section>
+ </div>
+ </div>
+</BaseLayout>