FAQ/Technology

What technology do you use?

Webentity sites are built on a modern, performance-first stack. Here's what's under the hood.

Core framework: Next.js

We use Next.js with static site generation (SSG) and incremental static regeneration (ISR). This means:

  • Pages are pre-rendered as static HTML — extremely fast, no database latency
  • Dynamic content can regenerate without a full rebuild
  • Code splitting and tree shaking are automatic

Hosting: Vercel edge network

Sites deploy to Vercel's global CDN with points of presence worldwide. Sub-100ms time-to-first-byte is standard. Automatic SSL, HTTP/2, and DDoS protection are included.

Frontend: TypeScript + Tailwind

Clean TypeScript throughout. Tailwind CSS for utility-first styling — no CSS bloat, no unused styles in production. Phosphor Icons for UI elements.

Content: Markdown with frontmatter

All content lives as Markdown files in the Git repository. Structured frontmatter for metadata. Full MDX support for rich content.

SEO tooling: built in

Schema markup (JSON-LD) is generated automatically for every page. Sitemaps auto-generate and auto-submit to Google and Bing. Canonical URLs, hreflang, and Open Graph tags are handled at the framework level.

Analytics: GA4 + Google Search Console

GA4 with GDPR-compliant consent management. GSC connected via API for ranking data and indexation monitoring.

Version control: Git

Everything — code and content — lives in a private Git repository. Every change is tracked, every deploy is auditable. You can roll back anything.