in website/src/pages/Build-IA/30-days-of-ia-2024.js [20:41]
function CampaignHeader() {
return (
<header
className={clsx("hero hero--primary heroAzureHome")}
style={{ backgroundImage: 'url(/Cloud-Native/img/cloud-native-hero-bg.webp)', padding: '8rem 0rem', backgroundPosition: 'bottom left' }}
>
<div className="container">
<div className="row padding-top--lg padding-bottom--lg" style={{ alignItems: 'center' }}>
<div className="col col--6">
<h1 className="hero__title">#30Days of IA Blogs</h1>
<p>
Join us for a sample-based blog series on how to build and deploy AI apps using Azure App, Data and AI Platform
</p>
</div>
<div className="col col--6 hide-mobile">
</div>
</div>
</div>
</header>
);
}