mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-06-02 15:10:16 +00:00
starter 合作伙伴模块上移
This commit is contained in:
@@ -11,7 +11,7 @@ export const Brand = () => {
|
|||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
{/* <!-- ====== Brands Section Start --> */}
|
{/* <!-- ====== Brands Section Start --> */}
|
||||||
<section className='pb-20 dark:bg-dark'>
|
<section className='py-20 dark:bg-dark'>
|
||||||
<div className='container px-4'>
|
<div className='container px-4'>
|
||||||
<div className='-mx-4 flex flex-wrap items-center justify-center gap-8 xl:gap-11'>
|
<div className='-mx-4 flex flex-wrap items-center justify-center gap-8 xl:gap-11'>
|
||||||
{brands?.map((item, index) => {
|
{brands?.map((item, index) => {
|
||||||
|
|||||||
@@ -85,6 +85,16 @@ const LayoutIndex = props => {
|
|||||||
<>
|
<>
|
||||||
{/* 英雄区 */}
|
{/* 英雄区 */}
|
||||||
{siteConfig('STARTER_HERO_ENABLE') && <Hero />}
|
{siteConfig('STARTER_HERO_ENABLE') && <Hero />}
|
||||||
|
{/* 横幅图片 */}
|
||||||
|
{siteConfig('STARTER_HERO_BANNER_IMAGE') && (
|
||||||
|
<div className='w-full'>
|
||||||
|
<LazyImage
|
||||||
|
className='w-full'
|
||||||
|
src={siteConfig('STARTER_HERO_BANNER_IMAGE')}></LazyImage>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
{/* 合作伙伴 */}
|
||||||
|
{siteConfig('STARTER_BRANDS_ENABLE') && <Brand />}
|
||||||
{/* 产品特性 */}
|
{/* 产品特性 */}
|
||||||
{siteConfig('STARTER_FEATURE_ENABLE') && <Features />}
|
{siteConfig('STARTER_FEATURE_ENABLE') && <Features />}
|
||||||
{/* 关于 */}
|
{/* 关于 */}
|
||||||
@@ -111,8 +121,7 @@ const LayoutIndex = props => {
|
|||||||
)}
|
)}
|
||||||
{/* 联系方式 */}
|
{/* 联系方式 */}
|
||||||
{siteConfig('STARTER_CONTACT_ENABLE') && <Contact />}
|
{siteConfig('STARTER_CONTACT_ENABLE') && <Contact />}
|
||||||
{/* 合作伙伴 */}
|
|
||||||
{siteConfig('STARTER_BRANDS_ENABLE') && <Brand />}
|
|
||||||
{/* 行动呼吁 */}
|
{/* 行动呼吁 */}
|
||||||
{siteConfig('STARTER_CTA_ENABLE') && <CTA />}
|
{siteConfig('STARTER_CTA_ENABLE') && <CTA />}
|
||||||
</>
|
</>
|
||||||
|
|||||||
Reference in New Issue
Block a user