forked from UKSOURCE/hailearning.edu.vn
17 lines
661 B
TypeScript
17 lines
661 B
TypeScript
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>
|
|
);
|
|
}
|