From 9c9d5dbc2c257885f59b1a089262f7977550517c Mon Sep 17 00:00:00 2001 From: Davron Chetin Date: Wed, 8 Oct 2025 19:09:54 +0500 Subject: [PATCH] contact --- app/globals.css | 15 ++++++++ app/page.tsx | 6 ++++ components/nav_foot/footer.tsx | 59 ++++++++++++++++++++++++++++++++ components/pageParts/contact.tsx | 24 +++++++++++++ 4 files changed, 104 insertions(+) create mode 100644 components/nav_foot/footer.tsx create mode 100644 components/pageParts/contact.tsx diff --git a/app/globals.css b/app/globals.css index 6018852..33f2de3 100644 --- a/app/globals.css +++ b/app/globals.css @@ -32,3 +32,18 @@ body { transition: 0.1s ease-in-out all; font-family: "Roboto", sans-serif; } + +/* 🟠 Sariq blok trapezoid shakl */ +.clip-trapezoid { + clip-path: polygon(16% 0, 100% 0, 84% 100%, 0% 100%); +} + +/* Input blokining shakli */ +.clip-input { + clip-path: polygon(16% 0, 100% 0, 84% 100%, 0% 100%); +} + +/* Tugma blokining shakli */ +.clip-button { + clip-path: polygon(16% 0, 100% 0, 84% 100%, 0% 100%); +} diff --git a/app/page.tsx b/app/page.tsx index 3571fd1..e8b8c34 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -7,6 +7,8 @@ import Offer from "@/components/pageParts/offer"; import Faq from "@/components/pageParts/faq"; import Partners from "@/components/pageParts/partners"; import Map from "@/components/pageParts/map"; +import Contact from "@/components/pageParts/contact/contact"; +import Footer from "@/components/nav_foot/footer"; export default function Home() { return ( @@ -21,6 +23,10 @@ export default function Home() { +
+ +
+