astro_avtourist/frontend/src/pages/index.astro

21 lines
812 B
Text
Raw Normal View History

2026-03-31 22:53:39 +05:00
---
import Layout from '@layouts/Layout.astro';
import Hero from '@components/home/Hero.astro';
import Services from "@components/home/Services.astro";
import Steps from "@components/home/Steps.astro";
2026-03-31 22:53:39 +05:00
import WhyUs from "@components/home/WhyUs.astro";
import Reviews from "@components/home/Reviews.astro";
import { SITE_URL } from '@constants';
2026-03-31 22:53:39 +05:00
---
<Layout
title="Автоюрист в Сургуте — юридическая помощь автовладельцам"
description="Профессиональная юридическая помощь автовладельцам в Сургуте. Споры со страховыми, возврат прав, ДТП, споры с автосалонами."
canonicalLink={SITE_URL}
>
<Hero />
2026-03-31 22:53:39 +05:00
<Services />
<Steps />
2026-03-31 22:53:39 +05:00
<WhyUs />
<Reviews />
2026-03-31 22:53:39 +05:00
</Layout>