'use client' import { motion } from 'framer-motion' import { FeatureCard } from '@/components/FeatureCard' import { HeroBlobFlow } from '@/components/HeroBlobFlow' import { InteractiveTerminal } from '@/components/InteractiveTerminal' import { ExperienceTimeline } from '@/components/ExperienceTimeline' import { GitBranch, Database, BarChart3, MessageSquare, Cpu, Layers, } from 'lucide-react' const features = [ { icon: GitBranch, title: 'Infrastructure Platform', description: 'Multi-region Terraform + Argo CD GitOps on Kubernetes', href: '/infrastructure', stat: '40% CPU reduction', status: 'live' as const, }, { icon: Cpu, title: 'Distributed Systems', description: 'gRPC, Kafka, AWS Step Functions across 57+ regions', href: '/systems', stat: 'Mission-critical', status: 'live' as const, }, { icon: MessageSquare, title: 'LLM Systems', description: 'CPU-bound inference optimization, INT4/INT8 quantization', href: '/llm', stat: '60% latency cut', status: 'live' as const, }, { icon: Database, title: 'Kafka Cluster', description: 'Strimzi KRaft cluster with auto-scaling brokers', href: '/kafka', stat: '3 brokers', status: 'live' as const, }, { icon: Layers, title: 'Open Source', description: 'go-flink: distributed DataLakeHouse in Go', href: '/opensource', stat: 'Public repo', status: 'live' as const, }, { icon: BarChart3, title: 'Observability', description: 'Prometheus, Grafana, Dynatrace — live metrics', href: '/infrastructure', stat: '99.2% uptime', status: 'live' as const, }, ] export default function Home() { return (
{/* Hero */}
{/* Avatar with flowing outcomes */} {/* Description */}

Full-Stack Systems Engineer

Infrastructure × Backend × LLM Systems

Building observable, fault-tolerant systems from bare metal to cloud. Optimizing cost (infrastructure) × performance (inference) × reliability (SRE).

💡 Press Cmd+K to explore via terminal
{/* Experience Timeline */} {/* Features Grid */}

What I Build

Production systems spanning infrastructure, distributed backends, and LLM optimization. Click any domain to explore.

{features.map((feature) => ( ))}
{/* Footer */}

© 2025 Rock Liang. Deployed on homelab Kubernetes cluster (3-node Talos).

GitHub {' • '} Email

{/* Interactive Terminal */}
) }