From 87c674309c4ca640d7a8769d32cb0b4f27107b1e Mon Sep 17 00:00:00 2001 From: mouad bouras Date: Mon, 16 Mar 2026 01:05:55 -0400 Subject: [PATCH] fix routing issue --- src/pages/index.astro | 31 +++++++++++++++++++++++++++---- 1 file changed, 27 insertions(+), 4 deletions(-) diff --git a/src/pages/index.astro b/src/pages/index.astro index b3e6339..dc87620 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -1,7 +1,30 @@ --- -return Astro.redirect('/landing-1'); +import Hero from '../components/Hero.astro'; +import ServicesPreview from '../components/ServicesPreview.astro'; +import WhyUs from '../components/WhyUs.astro'; +import CTABanner from '../components/CTABanner.astro'; +import { getLangFromUrl, t } from '../i18n/utils'; +import general from '../content/settings/general.json'; +import BaseLayout from '@/layouts/BaseLayout.astro'; +import Header from '../components/Header.astro'; +import Testimonials from '../components/ui/testimonials/Grid'; +import Footer from '../components/Footer.astro'; +const lang = getLangFromUrl(Astro.url); --- - + + +
+ + + + + +