Building Tanqory News
Introducing the editorial home for Tanqory's latest product and company updates.

Today marks an important milestone in Tanqory's evolution: we're launching Tanqory News, a dedicated editorial platform designed to be the authoritative source for all our product updates, research breakthroughs, company announcements, and industry perspectives. This isn't just another corporate blog—it's a thoughtfully crafted publishing platform built with the same attention to performance, accessibility, and user experience that defines all our products.
The Story Behind Tanqory News
Since Tanqory has grown from a small startup to a platform serving thousands of users worldwide, we've faced a challenge familiar to many fast-growing companies: how do we communicate effectively with our diverse community of users, developers, partners, and industry watchers?
The Communication Challenge
Previously, our updates were scattered across multiple channels—Twitter threads, Medium posts, email newsletters, and documentation updates. This fragmented approach created several problems:
- Discoverability: Important announcements were hard to find after initial publication
- Consistency: Different platforms had different formatting and presentation styles
- Performance: Third-party platforms often delivered suboptimal user experiences
- Control: We couldn't customize the reading experience to match our brand
- Analytics: Understanding what resonated with our audience was difficult
We realized we needed a centralized, purpose-built platform that could serve as the single source of truth for all Tanqory communications.
Our Design Principles
When designing Tanqory News, we established clear principles that would guide every decision:
1. Performance First In 2025, users expect instant page loads. We committed to achieving Core Web Vitals scores in the 95th percentile, with Largest Contentful Paint under 1.2 seconds and First Input Delay under 100ms.
2. Accessibility for All Every article must be fully accessible to users with disabilities, with WCAG 2.1 Level AAA compliance as our baseline standard.
3. Beautiful Typography Reading should be a pleasure. We've optimized typography for readability across all devices, with careful attention to line length, spacing, and contrast.
4. Mobile-First Design With over 60% of web traffic coming from mobile devices, we designed for small screens first and progressively enhanced for larger displays.
5. Developer-Friendly Our team loves working with modern tools. The platform needed to provide an excellent developer experience to ensure we could publish quickly and iterate rapidly.
Technical Architecture Deep Dive
We built Tanqory News using cutting-edge web technologies, each chosen deliberately for specific advantages:
Next.js 15: The Foundation
Next.js 15 remains the gold standard for building high-performance, scalable, and SEO-friendly React applications in 2025. Our implementation leverages several key features:
App Router Architecture We've fully embraced the App Router introduced in Next.js 13 and matured in v15. This gives us:
- File-system based routing with intuitive organization
- React Server Components for optimal performance
- Streaming and Suspense for progressive rendering
- Built-in loading and error states
Server-Side Rendering (SSR) Every page is server-rendered, ensuring instant First Contentful Paint and perfect SEO. Users see fully-rendered content immediately, with JavaScript enhancing the experience progressively.
Static Generation for Articles Published articles are statically generated at build time, delivering CDN-edge performance with cache-control headers optimized for long-term caching.
Incremental Static Regeneration When we update an article, ISR automatically rebuilds just that page within seconds, without requiring a full site rebuild.
MDX: Content Meets Code
MDX powers our content authoring experience, combining the simplicity of Markdown with the flexibility of React components.
Why MDX?
Traditional Markdown is great for simple content, but limiting for rich editorial experiences. MDX solves this by allowing us to:
- Embed interactive React components directly in articles
- Create reusable content blocks for consistency
- Import and use TypeScript for type-safe content
- Leverage the entire React ecosystem within our content
Our MDX Setup
We use @next/mdx with custom plugins for:
- Syntax highlighting: Prism.js with custom themes matching our brand
- Reading time calculation: Automatic estimation based on word count
- Table of contents generation: Auto-generated from article headings
- Image optimization: Automatic conversion to WebP with responsive sizing
- Link enhancement: External links open in new tabs with rel attributes
Frontmatter Management
Every article includes structured frontmatter metadata:
title: Article title
slug: url-friendly-slug
date: Publication date
updated: Last update timestamp
author: Author name
authorSlug: Author profile slug
topic: Primary category
tags: Array of tags
excerpt: SEO meta description
heroImage: Featured image path
heroAlt: Image alt text for accessibility
readingTime: Estimated minutes to read
draft: Publication status
canonicalUrl: Canonical URL for SEO
This metadata drives our archive pages, topic filters, author profiles, and SEO optimization.
Tailwind CSS: Styling at Scale

Tailwind CSS powers our design system with utility-first styling that scales beautifully.
Custom Design Tokens
We've extended Tailwind's default configuration with our brand-specific design tokens:
- Colors: Black primary (#000000) and lime accent (#CCFF00) with carefully calibrated shades
- Typography: Custom font sizes and line heights optimized for readability
- Spacing: Consistent 8-point grid system for visual harmony
- Breakpoints: Custom responsive breakpoints based on actual usage patterns
Dark Mode Support
Our black and lime aesthetic works beautifully, but we've also implemented automatic dark mode detection using Tailwind's dark: variant system and the prefers-color-scheme media query.
Performance Optimization
Tailwind's JIT (Just-In-Time) compiler ensures we ship only the CSS actually used in our application. Our production CSS bundle is under 15KB gzipped.
TypeScript: Type Safety Throughout
TypeScript provides end-to-end type safety from content authoring to rendering:
Content Types
We've defined strict TypeScript interfaces for all content structures:
interface Article {
title: string
slug: string
date: string
author: Author
topic: Topic
tags: string[]
excerpt: string
content: MDXContent
// ... additional fields
}
Compile-Time Validation
TypeScript catches errors during development, not in production. Missing required fields, typos in property names, and type mismatches are caught immediately.
Enhanced Developer Experience
IDE autocomplete, inline documentation, and refactoring support make content creation and maintenance significantly more efficient.
Content Organization System
We've organized content into four primary categories, each serving a distinct purpose:
1. Product Updates
Announcements about new features, improvements, and product releases. These articles help users discover new capabilities and understand how to take advantage of them.
Recent examples:
- API v2 release with performance improvements
- Real-time collaboration features launch
- AI-powered features introduction
2. Research & Innovation
Deep technical content exploring our research initiatives, engineering challenges, and innovative solutions. This content targets developers and technical decision-makers.
Topics we cover:
- Distributed systems architecture
- Computer vision and accessibility
- Edge computing frameworks
- Performance optimization techniques
3. Company News
Updates about our team, culture, partnerships, and business milestones. These stories humanize our brand and build connection with our community.
What you'll find:
- Leadership appointments
- Funding announcements
- Partnership launches
- Culture and values discussions
4. Global Affairs
Our perspective on industry trends, policy discussions, and global technology initiatives. These articles position Tanqory as a thought leader in our space.
Coverage areas:
- Climate tech and sustainability
- Digital divide and access
- Privacy and security trends
- International expansion stories
Performance Metrics
We obsess over performance. Here's how Tanqory News performs:
Core Web Vitals



Measured via Chrome User Experience Report (CrUX):
- Largest Contentful Paint (LCP): 0.9s (target: <2.5s)
- First Input Delay (FID): 12ms (target: <100ms)
- Cumulative Layout Shift (CLS): 0.02 (target: <0.1)
Lighthouse Scores
Consistent 100/100 scores across all categories:
- Performance: 100
- Accessibility: 100
- Best Practices: 100
- SEO: 100
Page Weight
- Initial page load: 180KB (including fonts and images)
- JavaScript bundle: 85KB gzipped
- CSS: 14KB gzipped
- Images: WebP format, lazily loaded
Time to Interactive
Average time to interactive: 1.2 seconds on 3G networks
Accessibility Features
Accessibility isn't an afterthought—it's foundational to Tanqory News:
Technical Implementation
- Semantic HTML: Proper heading hierarchy, landmark regions, and ARIA labels
- Keyboard Navigation: Full keyboard accessibility with visible focus indicators
- Screen Reader Support: Tested with NVDA, JAWS, and VoiceOver
- Color Contrast: WCAG AAA compliance with 7:1+ contrast ratios
- Responsive Text: Text scales appropriately with user font size preferences
Reading Experience
- Readable Line Length: 45-75 characters per line for optimal reading
- Generous Line Height: 1.6 ratio for comfortable reading
- Skip Links: Quick navigation to main content
- Alt Text: Descriptive alternative text for all images
- Captions: Closed captions for all video content
RSS and Newsletter Integration
We support multiple consumption methods to meet you where you are:
RSS Feed
Full-text RSS feed available at /feed.xml with:
- Complete article content
- Proper metadata and categorization
- Image optimization for feed readers
- Automatic updates within 5 minutes of publication
Email Newsletter
Optional email subscription for article notifications:
- Weekly digest of new articles
- No spam, no ads, unsubscribe anytime
- Plain text and HTML versions
- Accessible email design
Open Source Contributions
Building Tanqory News helped us identify opportunities to give back to the open source community:
MDX Improvements We contributed performance optimizations to the MDX ecosystem that reduce compilation time by 40%.
Next.js Feedback Our production usage of Next.js 15 helped identify edge cases that the Next.js team addressed in subsequent releases.
Accessibility Testing We open-sourced our automated accessibility testing suite for MDX content platforms.
Behind the Scenes: Content Workflow
Our editorial workflow balances quality with velocity:
1. Drafting
Authors write in MDX using their preferred editor (VS Code, Cursor, etc.) with real-time preview via local dev server.
2. Review
Pull request-based workflow with automated checks:
- Spell checking and grammar validation
- Accessibility compliance scanning
- Image optimization verification
- Broken link detection
- SEO metadata completeness
3. Staging
Preview deployments via Vercel for stakeholder review before publication.
4. Publication
Merge to main branch triggers automatic build and deployment to production edge network.
5. Analytics
Post-publication monitoring via custom analytics dashboard showing:
- Page views and unique visitors
- Reading completion rates
- Engagement metrics (scroll depth, time on page)
- Referral sources
- Geographic distribution
What's Next for Tanqory News
This launch is just the beginning. We have ambitious plans for the platform:
Q1 2025
- Commenting System: Native, privacy-respecting comments without third-party tracking
- Multi-language Support: Articles in Spanish, French, German, and Japanese
- Podcast Integration: Audio versions of selected articles
- Interactive Components: Enhanced interactivity for technical tutorials
Q2 2025
- Personalization: Recommended articles based on reading history
- Advanced Search: Full-text search with filtering and faceting
- Series Support: Multi-part article series with navigation
- Author Profiles: Expanded author pages with portfolios
Long-term Vision
- Community Contributions: Guest posts from our community
- Live Events: Virtual events streamed on the platform
- Educational Content: Structured learning paths and courses
- API Access: Programmatic access to our content for developers
Technical Resources
For developers interested in our technical implementation:
- Open Source Template: Coming soon - we'll release a starter template based on our architecture
- Case Study: Detailed technical writeup of our Next.js 15 + MDX implementation
- Performance Guide: Our optimization techniques and tooling
- Accessibility Checklist: Our testing methodology for accessible content
Join the Conversation
We want Tanqory News to be a two-way conversation, not a broadcast channel:
Share Your Feedback
- Email: news@tanqory.com for editorial feedback
- Twitter: Tag @TanqoryNews to discuss articles
- GitHub: Open issues for technical problems or suggestions
Subscribe to Updates
- RSS: Add news.tanqory.com/feed.xml to your reader
- Newsletter: Subscribe for weekly email digests
- Twitter: Follow @TanqoryNews for instant updates
Contribute
Interested in contributing to Tanqory News?
- Guest Posts: Pitch article ideas to editorial@tanqory.com
- Technical Contributions: Submit improvements via GitHub
- Translations: Help translate articles into other languages
Celebrating Our Launch
To celebrate the launch of Tanqory News, we're publishing a series of flagship articles throughout the week:
- Monday: Building Tanqory News (this article)
- Tuesday: Our Company Vision for 2025
- Wednesday: AI Ethics Framework Deep Dive
- Thursday: Analytics Dashboard Launch
- Friday: Looking Ahead to 2026
Each article represents the quality and depth you can expect from Tanqory News going forward.
Acknowledgments
Tanqory News wouldn't exist without contributions from our talented team:
- Engineering: Sarah Chen, David Park, and the entire platform team
- Design: Emma Rodriguez and the design systems team
- Editorial: Mithun Marshal, Rachel Kim, and our content team
- Accessibility: Dr. James Williams, our accessibility consultant
Thank you to everyone who made this possible.
Looking Forward
We're incredibly excited about Tanqory News and the conversations it will enable. This platform represents our commitment to transparency, education, and community engagement.
We have dozens of articles in our editorial queue covering everything from technical deep dives to company culture stories. The journey is just beginning, and we're thrilled to have you along for the ride.
Stay tuned for more updates—we publish new content every week. Welcome to Tanqory News.
For press inquiries or partnership opportunities, contact press@tanqory.com


