in website/src/pages/Build-IA/LearnLive.js [110:128]
export default function LearnLive() {
const {siteConfig} = useDocusaurusContext();
const pageProps = {
title: "Learn Live",
description: "Learn to build an enterprise-grade solution on Azure by deconstructing an open-source reference sample."
};
return (
<Layout
title={pageProps.title}
description={pageProps.description} >
<SectionHeader
title={pageProps.title}
description={pageProps.description} />
<main className={styles.pageBg}>
<SectionContent/>
</main>
</Layout>
);
}