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