Files
spestexnika/components/pageParts/contact.tsx
Davron Chetin 9c9d5dbc2c contact
2025-10-08 19:09:54 +05:00

25 lines
893 B
TypeScript

export default function Contact() {
return (
<section dir="ltr" className="relative w-full bg-primary py-10 flex justify-center">
<div className=" bg-secondary max-w-[1200px] w-full py-10 flex flex-col items-center clip-trapezoid">
<h2 className="text-2xl md:text-3xl font-bold text-primary mb-5 text-center">
Qo'ng'iroqni buyurtma qiling
</h2>
{/* Input va Button bloki */}
<div className="flex w-full max-w-2xl">
<input
type="text"
placeholder="Your phone number"
className="flex-1 py-3 px-5 bg-white text-gray-600 placeholder-gray-400 text-lg clip-input focus:outline-none"
/>
<button className="bg-primary text-white px-6 py-3 text-lg font-medium clip-button">
Menga qo'ng'iroq qiling
</button>
</div>
</div>
</section>
);
}