build
All checks were successful
Build & Deploy KLZ Cables / build-and-deploy (push) Successful in 4m45s

This commit is contained in:
2026-01-25 23:20:39 +01:00
parent 69141175cf
commit defde86fc9
2 changed files with 8 additions and 8 deletions

View File

@@ -3,8 +3,8 @@ export const SITE_URL = 'https://klz-cables.com';
export const LOGO_URL = `${SITE_URL}/logo.png`;
export const getOrganizationSchema = () => ({
'@context': 'https://schema.org',
'@type': 'Organization',
'@context': 'https://schema.org' as const,
'@type': 'Organization' as const,
name: 'KLZ Cables',
url: SITE_URL,
logo: LOGO_URL,
@@ -12,19 +12,19 @@ export const getOrganizationSchema = () => ({
'https://www.linkedin.com/company/klz-cables',
],
contactPoint: {
'@type': 'ContactPoint',
'@type': 'ContactPoint' as const,
telephone: '+49-881-92537298',
contactType: 'customer service',
contactType: 'customer service' as const,
email: 'info@klz-cables.com',
availableLanguage: ['German', 'English']
}
});
export const getBreadcrumbSchema = (items: { name: string; item: string }[]) => ({
'@context': 'https://schema.org',
'@type': 'BreadcrumbList',
'@context': 'https://schema.org' as const,
'@type': 'BreadcrumbList' as const,
itemListElement: items.map((item, index) => ({
'@type': 'ListItem',
'@type': 'ListItem' as const,
position: index + 1,
name: item.name,
item: item.item.startsWith('http') ? item.item : `${SITE_URL}${item.item}`,

File diff suppressed because one or more lines are too long