Skip to content

Commit

Permalink
fix site url
Browse files Browse the repository at this point in the history
  • Loading branch information
Lisa-Stubert committed Nov 15, 2024
1 parent 6a7656b commit 0898b97
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 0898b97

Please sign in to comment.