export default function PersonalBlogHomepage() { const topics = [ { name: "Systems", sub: "Workflows", icon: "⚙️" }, { name: "Thinking", sub: "Mental Models", icon: "🧠" }, { name: "AI", sub: "Tools & Ideas", icon: "🤖" }, { name: "Building", sub: "Projects", icon: "🧩" }, { name: "Travel", sub: "Experiences", icon: "✈️" }, { name: "Reading", sub: "Notes", icon: "📚" }, { name: "Life", sub: "Lessons", icon: "☕" }, ]; const latestPosts = [ { category: "TOOLS · AI", title: "10 AI Tools I Use Daily (That Actually Save Time)", readTime: "5 min read", bg: "from-stone-100 to-orange-50", art: "desk", }, { category: "THINKING", title: "How I Take Notes for Better Thinking", readTime: "6 min read", bg: "from-orange-50 to-stone-100", art: "notes", }, { category: "TRAVEL", title: "Lessons from My Trip to Japan", readTime: "7 min read", bg: "from-sky-50 to-stone-100", art: "mountains", }, { category: "SYSTEMS", title: "The Framework I Use for Decision Making", readTime: "4 min read", bg: "from-stone-100 to-amber-50", art: "whiteboard", }, ]; return (
JETT
Personal blog · systems, ideas, and how things work
✍️ Building · Learning · Sharing

I break down systems, ideas, and how things work.

Exploring the intersection of technology, thinking, travel, and building a meaningful life.

{Array.from({ length: 9 }).map((_, i) => (
))}
Systems Ideas Build
Thinking mode
{topics.map((topic) => (
{topic.icon}
{topic.name}
{topic.sub}
))}

Featured Post

{Array.from({ length: 12 }).map((_, i) => (
))}

Building My Productivity System (What Actually Works)

After testing 20+ tools and frameworks, here’s the simple system I use to stay focused, organize everything, and ship work.

Systems Productivity 8 min read

Latest Posts

View all →
{latestPosts.map((post) => (
{post.art === "desk" && (
)} {post.art === "notes" && (
)} {post.art === "mountains" && (
)} {post.art === "whiteboard" && (
{Array.from({ length: 6 }).map((_, i) => (
))}
)}
{post.category}

{post.title}

{post.readTime}
))}

“The best way to predict the future is to build it.”

); }