aboutsummaryrefslogtreecommitdiffstats
path: root/src/i18n/en/index.ts
blob: c358cc151fc8cbb14cb4050353b3798855b76e4c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import type { BaseTranslation } from "../i18n-types";

const en = {
	contact: {
		title: "Contact us",
		addressTitle: "Address",
		emailTitle: "Email",
		phoneTitle: "Phone",
	},
	meta: {
		description: "Auroraklinikken provides cetamine treatment for depression in Oslo"
	},
	goToBookingPage: "Go to booking",
	ourServices: "Our services",
	homeTitle: "Home",
} satisfies BaseTranslation;

export default en;