astro_avtourist/frontend/src/pages/index.astro
2026-04-05 16:13:21 +05:00

23 lines
No EOL
867 B
Text
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
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";
import WhyUs from "@components/home/WhyUs.astro";
import Reviews from "@components/home/Reviews.astro";
import Faq from "@components/home/Faq.astro";
import { SITE_URL } from '@constants';
---
<Layout
title="Автоюрист в Сургуте — юридическая помощь автовладельцам"
description="Профессиональная юридическая помощь автовладельцам в Сургуте. Споры со страховыми, возврат прав, ДТП, споры с автосалонами."
canonicalLink={SITE_URL}
>
<Hero />
<Services />
<Steps />
<WhyUs />
<Reviews />
<Faq />
</Layout>