Building a Modern Web Presence
How we built the Zendeus site with SvelteKit, Tailwind CSS, and Cloudflare Pages.
When building a modern web presence, the choices you make about your tech stack matter. At Zendeus, we chose tools that align with our values: simplicity, performance, and reliability.
Why SvelteKit?
SvelteKit offers the best of both worlds — a component framework that compiles away at build time, and a full-stack application framework with routing, server-side rendering, and static generation built in.
// A SvelteKit load function — clean and simple
export function load({ params }) {
return {
slug: params.slug
};
} The result is fast, lightweight pages that ship minimal JavaScript to the browser.
Tailwind CSS for Design
Tailwind CSS lets us build consistent, responsive designs without fighting a CSS framework. Combined with a carefully chosen color palette and design tokens, it keeps our styling maintainable and coherent across every page.
Deployed to the Edge
Cloudflare Pages puts our site on a global CDN with automatic deployments from Git. Every push to main triggers a build and deploy — no CI/CD pipeline to maintain.
The combination of static generation and edge deployment means our pages load in milliseconds, anywhere in the world.
What’s Next
We’ll be sharing more about our engineering approach, cloud architecture patterns, and lessons learned from real projects. Stay tuned.