feat: create Partnership component and styles

This commit is contained in:
hkiett265
2026-04-13 22:15:20 +07:00
parent 8592f68918
commit ad68b7d8c4
22 changed files with 299 additions and 1510 deletions

View File

@@ -0,0 +1,16 @@
import CollaborateInfo from "./CollaborateInfo";
import PartnershipForm from "./PartnershipForm";
export default function CollaborateCTA() {
return (
<section id="collaborate-cta" className="py-14 bg-brand-blue relative overflow-hidden">
<div className="absolute top-0 right-0 w-[800px] h-[800px] bg-brand-hover rounded-full blur-3xl opacity-50 -translate-y-1/2 translate-x-1/3"></div>
<div className="max-w-[1440px] mx-auto px-6 lg:px-8 relative z-10">
<div className="grid grid-cols-1 lg:grid-cols-2 gap-16 items-center">
<CollaborateInfo />
<PartnershipForm />
</div>
</div>
</section>
);
}