|
| 1 | +import { FiArrowUpRight } from 'react-icons/fi' |
| 2 | +import styles from './page.module.css' |
| 3 | + |
| 4 | +export const metadata = { |
| 5 | + title: 'Blog', |
| 6 | + description: 'Articles about Oxia and distributed metadata systems.', |
| 7 | +} |
| 8 | + |
| 9 | +const posts = [ |
| 10 | + { |
| 11 | + title: 'Designing a Distributed Metadata System - Foundation', |
| 12 | + date: '2026-07-05', |
| 13 | + displayDate: 'Jul 5, 2026', |
| 14 | + author: 'Qiang Zhao', |
| 15 | + href: 'https://www.linkedin.com/pulse/designing-distributed-metadata-system-foundation-qiang-zhao-qlvlc/', |
| 16 | + summary: |
| 17 | + 'A walkthrough of the standalone server semantics that distributed metadata systems need before adding replication, sharding, and cluster management.', |
| 18 | + tags: ['Metadata systems', 'Distributed systems', 'Design'], |
| 19 | + }, |
| 20 | + { |
| 21 | + title: 'From Metadata Store to Metadata Plane', |
| 22 | + date: '2026-06-20', |
| 23 | + displayDate: 'Jun 20, 2026', |
| 24 | + author: 'Qiang Zhao', |
| 25 | + href: 'https://www.linkedin.com/pulse/from-metadata-store-plane-qiang-zhao-gysuc/', |
| 26 | + summary: |
| 27 | + 'How coordination metadata grows into a runtime metadata plane with storage, notification, sharding, and federation requirements.', |
| 28 | + tags: ['Metadata plane', 'Coordination', 'Scalability'], |
| 29 | + }, |
| 30 | +] |
| 31 | + |
| 32 | +export default function BlogPage() { |
| 33 | + return ( |
| 34 | + <main className={styles.page}> |
| 35 | + <section className={styles.header}> |
| 36 | + <p className={styles.kicker}>Oxia Blog</p> |
| 37 | + <h1>Articles on distributed metadata systems</h1> |
| 38 | + <p className={styles.intro}> |
| 39 | + Technical posts about Oxia, metadata stores, coordination, and the |
| 40 | + architecture patterns behind scalable infrastructure. |
| 41 | + </p> |
| 42 | + </section> |
| 43 | + |
| 44 | + <section className={styles.posts} aria-label="Blog posts"> |
| 45 | + {posts.map((post) => ( |
| 46 | + <article className={styles.post} key={post.href}> |
| 47 | + <div className={styles.meta}> |
| 48 | + <time dateTime={post.date}>{post.displayDate}</time> |
| 49 | + <span>{post.author}</span> |
| 50 | + </div> |
| 51 | + <h2> |
| 52 | + <a href={post.href} target="_blank" rel="noreferrer"> |
| 53 | + {post.title} |
| 54 | + </a> |
| 55 | + </h2> |
| 56 | + <p>{post.summary}</p> |
| 57 | + <div className={styles.footer}> |
| 58 | + <ul className={styles.tags} aria-label={`${post.title} topics`}> |
| 59 | + {post.tags.map((tag) => ( |
| 60 | + <li key={tag}>{tag}</li> |
| 61 | + ))} |
| 62 | + </ul> |
| 63 | + <a className={styles.readLink} href={post.href} target="_blank" rel="noreferrer"> |
| 64 | + Read on LinkedIn |
| 65 | + <FiArrowUpRight aria-hidden="true" /> |
| 66 | + </a> |
| 67 | + </div> |
| 68 | + </article> |
| 69 | + ))} |
| 70 | + </section> |
| 71 | + </main> |
| 72 | + ) |
| 73 | +} |
0 commit comments