blob: 1f8260f960e41362eaab2e3810d90dd61fb56e99 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import type { BaseTranslation } from "../i18n-types";
const en = {
contact: {
title: "Contact us",
addressTitle: "Address",
emailTitle: "Email",
phoneTitle: "Phone",
},
goToBookingPage: "Go to booking",
ourServices: "Our services",
homeTitle: "Home",
} satisfies BaseTranslation;
export default en;
|