Skip to content

Commit 89241b1

Browse files
committed
docs: refine "About Me" and "Home" page content
1 parent b2a6739 commit 89241b1

4 files changed

Lines changed: 20 additions & 33 deletions

File tree

site/src/config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ export const SITE = {
22
website: "https://lufftw.github.io/",
33
author: "Luff",
44
profile: "https://github.com/lufftw",
5-
desc: "Engineering, algorithms, systems, and research-oriented notes.",
6-
title: "Technical Notes",
5+
desc: "Notes on systems, algorithms, applied engineering, and human–AI collaboration.",
6+
title: "Luff's Technical Notes",
77
ogImage: "og.jpg",
88
lightAndDarkMode: true,
99
postPerIndex: 6,

site/src/constants.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ interface Social {
1919
export const SOCIALS: Social[] = [
2020
{
2121
name: "GitHub",
22-
href: "https://github.com/satnaing/astro-paper",
22+
href: "https://github.com/lufftw",
2323
linkTitle: `${SITE.title} on GitHub`,
2424
icon: IconGitHub,
2525
},
2626
{
2727
name: "X",
28-
href: "https://x.com/username",
28+
href: "https://x.com/luffresearch",
2929
linkTitle: `${SITE.title} on X`,
3030
icon: IconBrandX,
3131
},
@@ -37,7 +37,7 @@ export const SOCIALS: Social[] = [
3737
},
3838
{
3939
name: "Mail",
40-
href: "mailto:yourmail@gmail.com",
40+
href: "mailto:luff543tw@gmail.com",
4141
linkTitle: `Send an email to ${SITE.title}`,
4242
icon: IconMail,
4343
},

site/src/pages/about.md

Lines changed: 12 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -3,35 +3,22 @@ layout: ../layouts/AboutLayout.astro
33
title: "About"
44
---
55

6-
AstroPaper is a minimal, accessible and SEO-friendly blog theme built with [Astro](https://astro.build/) and [Tailwind CSS](https://tailwindcss.com/).
76

8-
![Astro Paper](public/astropaper-og.jpg)
7+
I am a researcher and engineer working at the intersection of **algorithms, information extraction, and Human–AI collaboration**.
98

10-
AstroPaper provides a solid foundation for blogs, or even portfolios\_ with full markdown support, built-in dark mode, and a clean layout that works out-of-the-box.
9+
This site is a **personal knowledge system** — a place where I document structured thinking, technical explorations, and research-driven implementations that go beyond short tutorials or fragmented notes.
1110

12-
The blog posts in this theme also serve as guides, docs or example articles\_ making AstroPaper a flexible starting point for your next content-driven site.
11+
My work focuses on:
1312

14-
## Features
13+
* Algorithmic patterns and problem decomposition
14+
* Event extraction, information retrieval, and NLP systems
15+
* Agent-based and learning-driven approaches to web and data understanding
16+
* Designing human-centered AI systems that augment reasoning rather than replace it
1517

16-
AstroPaper comes with a set of useful features that make content publishing easy and effective:
18+
Most articles here are written with **clarity, rigor, and reuse** in mind.
19+
Concepts are broken down into stable abstractions, patterns, or systems that can be revisited, extended, or applied across domains.
1720

18-
- SEO-friendly
19-
- Fast performance
20-
- Light & dark mode
21-
- Highly customizable
22-
- Organizable blog posts
23-
- Responsive & accessible
24-
- Static search with [PageFind](https://pagefind.app/)
25-
- Automatic social image generation
21+
This site is not optimized for trends or quick consumption.
22+
Instead, it serves as a **long-term archive of ideas**, experiments, and evolving frameworks — for myself, and for readers who value depth, structure, and technical precision.
2623

27-
and so much more.
28-
29-
## Show your support
30-
31-
If you like [AstroPaper](https://github.com/satnaing/astro-paper), consider giving it a star ⭐️.
32-
33-
Found a bug 🐛 or have an improvement ✨ in mind? Feel free to open an [issue](https://github.com/satnaing/astro-paper/issues), submit a [pull request](https://github.com/satnaing/astro-paper/pulls) or start a [discussion](https://github.com/satnaing/astro-paper/discussions).
34-
35-
If you find this theme helpful, you can also [sponsor me on GitHub](https://github.com/sponsors/satnaing) or [buy me a coffee](https://buymeacoffee.com/satnaing) to show your support — every penny counts.
36-
37-
Kyay zuu! 🙏🏼
24+
If you find something useful here, feel free to explore, reference, or build upon it.

site/src/pages/index.astro

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ const listItems = sortedPosts
7676
<!-- Page title and RSS -->
7777
<section class="pt-8 pb-4 !mx-0 !max-w-none !px-0">
7878
<div class="flex items-center gap-3">
79-
<h1 class="text-4xl font-bold sm:text-5xl">Mingalaba</h1>
79+
<h1 class="text-4xl font-bold sm:text-5xl">Technical Notes</h1>
8080

8181
<a
8282
href="/rss.xml"
@@ -93,8 +93,8 @@ const listItems = sortedPosts
9393
</a>
9494
</div>
9595

96-
<p class="mt-4 max-w-2xl text-slate-600">
97-
A long-term log of systems, algorithms, and engineering practice.
96+
<p class="mt-4 text-slate-600">
97+
Long-term work on systems, algorithms, applied engineering, and human–AI collaboration.
9898
</p>
9999
</section>
100100

0 commit comments

Comments
 (0)