Skip to content

Commit

Permalink
Merge pull request #103 from technologiestiftung/fix-social-image
Browse files Browse the repository at this point in the history
fix site url and social image
  • Loading branch information
Lisa-Stubert authored Nov 15, 2024
2 parents 6a7656b + c3e9df5 commit b66b326
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions src/components/Head/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { useRouter } from 'next/router'
const siteUrl =
process.env.URL ||
(process.env.VERCEL_ENV === 'preview' && process.env.VERCEL_URL) ||
'http://localhost:3000'
'https://weihnachtsmaerkte.odis-berlin.de'

const faviconPath = '/favicon.ico'
const faviconPNGPath = '/favicons/star.png'
Expand All @@ -29,7 +29,14 @@ export const Head: FC<Partial<HeadPropType>> = ({
siteTitle = 'weihnachtsmaerkte.odis-berlin.de',
pageTitle = 'Berliner Weihnachtsmarkt-Finder',
fbAppId = '',
keywords = ['Berlin', 'Weihnachtsmärkte','Weihnachtsmarkt', 'ODIS', 'Karte','Open Data'],
keywords = [
'Berlin',
'Weihnachtsmärkte',
'Weihnachtsmarkt',
'ODIS',
'Karte',
'Open Data',
],
themeColor = '#091725',
locales = ['de'],
locale = 'de',
Expand Down

0 comments on commit b66b326

Please sign in to comment.