diff --git a/src/components/About.astro b/src/components/About.astro index 0785734..de6d2bc 100644 --- a/src/components/About.astro +++ b/src/components/About.astro @@ -1,18 +1,15 @@ --- -import { sanityClient } from "sanity:client"; - -const about = await sanityClient.fetch(`*[_type == "about"][0]{ - title, - paragraph1, - paragraph2, - paragraph3, - paragraph4, - paragraph5, - paragraph6, - paragraph7, - paragraph8, - "imageUrls": images[].asset->url -}`); +// Статичные данные для раздела О НАС +const about = { + title: "О НАС", + paragraph1: "Наша компания занимается производством продукции из драгоценных металлов.", + imageUrls: [ + "/images/hero.webp", + "/images/hero.webp", + "/images/hero.webp", + "/images/hero.webp" + ] +}; ---

{about.paragraph1}

-

{about.paragraph2}

-

{about.paragraph3}

-

{about.paragraph4}

-

{about.paragraph5}

-

{about.paragraph6}

-

{about.paragraph7}

-

{about.paragraph8}