--- import BaseLayout from '../layouts/BaseLayout.astro'; const recentPosts = await Astro.glob('../../../content/blog/*.mdx'); const sortedPosts = recentPosts .sort((a, b) => new Date(b.frontmatter.date).valueOf() - new Date(a.frontmatter.date).valueOf()) .slice(0, 3); ---

Theater Ziefen

An Unforgettable Theatrical Experience

Coming 2029

Welcome to Theater Ziefen

We are excited to bring you an exceptional theatrical production in 2029. This website will be your hub for all updates, news, and information about our upcoming show.

Stay connected with us through our blog, where we'll share behind-the-scenes insights, production updates, and announcements about ticket sales when they become available.

{sortedPosts.length > 0 && (

Latest Updates

{sortedPosts.map((post) => ( ))}
)}