---
export const prerender = true;
import Layout from '~/layouts/PageLayout.astro';
import Hero from '~/components/widgets/Hero2.astro';
import BrandMarquee from '~/components/widgets/BrandMarquee.astro';
import Features from '~/components/widgets/Features.astro';
import Content from '~/components/widgets/Content.astro';
import CallToAction from '~/components/widgets/CallToAction.astro';
import Contact from '~/components/widgets/Contact.astro';
import { getTranslation, supportedLanguages } from '~/i18n/translations';
import { getExplosiveHomepageTranslation } from '~/i18n/translations.homepage.ts';
import OurCommitmentImage from '~/assets/images/OurCommitment.webp';
import HomepageIntroImage from '~/assets/images/HomepageIntroImage.webp';
export async function getStaticPaths() {
return supportedLanguages.map((lang) => ({
params: { lang },
}));
}
const { lang } = Astro.params;
if (!supportedLanguages.includes(lang)) {
return Astro.redirect('/en/');
}
const t = getTranslation(lang);
const explosive = getExplosiveHomepageTranslation(lang);
const metadata = {
title: 'IT Systems & Automation for Businesses | Power Automate & Microsoft 365 Expert',
description: 'Transform your business with expert IT automation solutions. Specializing in Power Automate, Microsoft 365, SharePoint, and custom API integrations for enhanced productivity and efficiency.'
};
---