fix(front) добавлена страница контаксты

This commit is contained in:
2026-06-15 15:01:13 +03:00
parent a48b417257
commit 15efab81a4
5 changed files with 23 additions and 4 deletions
+17
View File
@@ -0,0 +1,17 @@
import PageLayout from "../components/PageLayout";
export default function Contact() {
return (
<PageLayout>
<main className="px-6 md:px-16 grow w-full mb-6">
<div className="w-full overflow-hidden rounded shadow-md ">
<iframe
src="https://yandex.ru/map-widget/v1/?um=constructor%3Aaee46827fd51e482587f99245635b92b3d473b8d2aef2b4e36f83ddfaaf77cb9&amp;source=constructor"
className="w-full h-127.5 border-0 "
title="Yandex Map"
/>
</div>
</main>
</PageLayout>
);
}