forked from UKSOURCE/hailearning.edu.vn
feat: create Partnership component and styles
This commit is contained in:
16
app/components/partnership/CollaborateCTA.tsx
Normal file
16
app/components/partnership/CollaborateCTA.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user