20 lines
799 B
TypeScript
20 lines
799 B
TypeScript
const protocol = typeof window !== "undefined" ? window.location.protocol : "https:"
|
|
export const baseDomain = typeof window !== "undefined" ? window.location.hostname : "kontextwerk.de"
|
|
export const baseURL = `${protocol}//${baseDomain}`
|
|
export const apiBaseURL = "/api/"
|
|
|
|
export const websiteName = "Kontextwerk"
|
|
export const companyName = "Kontextwerk"
|
|
export const email = "hello@kontextwerk.de"
|
|
export const streetAddress = "Gertrudenstraße 3"
|
|
export const localityAddress = "Hamburg"
|
|
export const regionAddress = "Hamburg"
|
|
export const zipCode = "20095"
|
|
export const countryAddress = "DE"
|
|
|
|
export const socialIcons = {
|
|
instagram: "https://www.instagram.com/kontextwerk",
|
|
linkedin: "https://www.linkedin.com/company/kontextwerk",
|
|
youtube: "https://www.youtube.com/@kontextwerk",
|
|
}
|