forked from UKSOURCE/hailearning.edu.vn
23 lines
1.2 KiB
TypeScript
23 lines
1.2 KiB
TypeScript
export default function AccreditationHero() {
|
|
return (
|
|
<section id="accreditation-hero" className="relative w-full py-20 lg:py-24 bg-white overflow-hidden mesh-bg border-b border-ui-border">
|
|
<div className="max-w-[1440px] mx-auto px-6 lg:px-8">
|
|
<div className="text-center max-w-4xl mx-auto">
|
|
<div className="inline-flex items-center gap-2 mb-6">
|
|
<span className="w-8 h-[2px] bg-brand-accent"></span>
|
|
<span className="text-sm font-semibold text-brand-blue uppercase tracking-wider">Global Standards </span>
|
|
<span className="w-8 h-[2px] bg-brand-accent"></span>
|
|
</div>
|
|
<div className="acc-heading font-bold text-brand-blue leading-tight mb-6">
|
|
Accreditations <br />
|
|
<span className="text-ui-text">& Compliance</span>
|
|
</div>
|
|
<p className="text-lg text-ui-muted leading-relaxed mb-8">
|
|
Our commitment to excellence is validated by leading national and international accrediting bodies. We uphold the highest standards of academic rigor, research ethics, and institutional quality.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
);
|
|
}
|