Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/layouts/Layout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import SponsorBanner from '../components/SponsorBanner.astro'
import { computeOgImageType, computeOgPath } from '../og/ogImage'

interface Props {
title: string
title?: string
description?: string
metaImage?: string | null
}
Expand Down Expand Up @@ -43,7 +43,7 @@ const url = import.meta.env.SITE
const image = metaImage || url + computeOgPath(Astro.url.pathname)
const ogImageType = computeOgImageType(image)
const siteName = 'Sunny Tech'
const siteNameWithTagline = 'Sunny Tech, la conférence Tech organisée à Montpellier'
const siteNameWithTagline = 'Sunny Tech 2026, la conférence Tech organisée à Montpellier — 2 & 3 juillet'
const pageTitle = title || siteName
const fullPageTitle = title ? `${title} | ${siteName}` : siteNameWithTagline
const pageDescription =
Expand Down
2 changes: 1 addition & 1 deletion src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const openPlannerData: OpenPlannerType = await response.json()
const tickets = openPlannerData.tickets ?? []
---

<Layout title="Sunny Tech">
<Layout>
<Hero />

<HomeContentBlock />
Expand Down
Loading