diff --git a/src/layouts/BaseLayout.astro b/src/layouts/BaseLayout.astro index 1f115d0..a6c622a 100644 --- a/src/layouts/BaseLayout.astro +++ b/src/layouts/BaseLayout.astro @@ -19,7 +19,7 @@ const { title, description = "Theater Ziefen - Coming 2029" } = Astro.props; - + {title} | Theater Ziefen diff --git a/src/pages/index.astro b/src/pages/index.astro index 11254cd..ccb8a24 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -40,7 +40,7 @@ const content = await sanityClient.fetch(theaterHomepageQuery) ?? {}; title={content.projekt?.title || 'Das Projekt'} variant="light" > -
+
@@ -49,7 +49,7 @@ const content = await sanityClient.fetch(theaterHomepageQuery) ?? {}; title={content.team?.title || 'Wer steckt dahinter'} variant="dark" > -
+
{content.team?.organizations && content.team.organizations.length > 0 && (
@@ -91,7 +91,7 @@ const content = await sanityClient.fetch(theaterHomepageQuery) ?? {}; title={content.stueck?.title || 'Das Stück'} variant="light" > -
+
@@ -100,7 +100,7 @@ const content = await sanityClient.fetch(theaterHomepageQuery) ?? {}; title={content.mitwirkung?.title || 'Mitwirkung im Schauspiel'} variant="dark" > -
+
{content.mitwirkung?.director_name && (
@@ -163,7 +163,7 @@ const content = await sanityClient.fetch(theaterHomepageQuery) ?? {}; title={content.presse?.title || 'Presse'} variant="dark" > -
+
@@ -181,7 +181,7 @@ const content = await sanityClient.fetch(theaterHomepageQuery) ?? {}; title={content.tickets?.title || 'Tickets'} variant="dark" > -
+
{content.tickets?.ticket_url && (
diff --git a/src/styles/global.css b/src/styles/global.css index 75d542a..1bd6ab9 100644 --- a/src/styles/global.css +++ b/src/styles/global.css @@ -11,7 +11,7 @@ --breakpoint-md: 50rem; - --font-heading: 'Great Vibes', cursive; + --font-heading: 'Kaushan Script', cursive; --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif; } @@ -50,4 +50,12 @@ font-size: 1.8rem; margin: 1.5rem 0 1rem; } + + /* Keep flowing prose to a comfortable reading measure so lines + don't stretch across the full section width. */ + .prose-measure { + max-width: 42rem; + margin-left: auto; + margin-right: auto; + } } \ No newline at end of file