astro_avtourist/frontend/src/pages/index.astro

17 lines
No EOL
685 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 { SITE_URL } from '@constants';
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}
>
<Hero />
<Services />
<WhyUs />
</Layout>