astro_avtourist/frontend/src/pages/index.astro

17 lines
685 B
Text
Raw Normal View History

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