This commit is contained in:
parent
4415c7d3d3
commit
7345586831
|
|
@ -133,22 +133,26 @@ export default function BusinessCommercialGroup() {
|
|||
|
||||
{section3Data && <BottomTabsSection data={section3Data} />}
|
||||
|
||||
<section
|
||||
className={`${styles.twoColSection} ${styles.propertyServices}`}
|
||||
style={{
|
||||
backgroundImage: `url(${section4Data?.backgroundImage}), ${FALLBACK_GRADIENT}`,
|
||||
}}
|
||||
>
|
||||
<div className={styles.propertyServicesContent}>
|
||||
<div className={styles.propertyServicesTitle}>{section4Data?.title}</div>
|
||||
<p className={styles.propertyServicesSubtitle}>{section4Data?.content}</p>
|
||||
<ScrollReveal preset="slideUp" className={styles.propertyServicesBtn}>
|
||||
<Link to={section4Data?.path ?? "#"} >
|
||||
{viewDetail}
|
||||
</Link>
|
||||
</ScrollReveal>
|
||||
</div>
|
||||
</section>
|
||||
{
|
||||
section4Data.hide ? null : (
|
||||
<section
|
||||
className={`${styles.twoColSection} ${styles.propertyServices}`}
|
||||
style={{
|
||||
backgroundImage: `url(${section4Data?.backgroundImage}), ${FALLBACK_GRADIENT}`,
|
||||
}}
|
||||
>
|
||||
<div className={styles.propertyServicesContent}>
|
||||
<div className={styles.propertyServicesTitle}>{section4Data?.title}</div>
|
||||
<p className={styles.propertyServicesSubtitle}>{section4Data?.content}</p>
|
||||
<ScrollReveal preset="slideUp" className={styles.propertyServicesBtn}>
|
||||
<Link to={section4Data?.path ?? "#"} >
|
||||
{viewDetail}
|
||||
</Link>
|
||||
</ScrollReveal>
|
||||
</div>
|
||||
</section>
|
||||
)
|
||||
}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@
|
|||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: space-between;
|
||||
gap: 6.25rem;
|
||||
|
||||
.campusColLeft {
|
||||
display: flex;
|
||||
|
|
@ -34,7 +35,7 @@
|
|||
.campusColRight {
|
||||
.jobList {
|
||||
padding-bottom: 6.25rem;
|
||||
width: 60rem;
|
||||
/* width: 60rem; */
|
||||
min-height: 31.25rem;
|
||||
}
|
||||
.jobItem {
|
||||
|
|
|
|||
Loading…
Reference in New Issue