浏览代码

start

work-with-us
Pavle Golubovic 3 年前
父节点
当前提交
bd33820f01
共有 1 个文件被更改,包括 23 次插入2 次删除
  1. 23
    2
      frontend/src/pages/WorkWithUs.jsx

+ 23
- 2
frontend/src/pages/WorkWithUs.jsx 查看文件

@@ -126,11 +126,30 @@ const WorkWithUs = () => {
document.title = 'Work With Us';
},[]);

if (isLoading) {
return (
<div className="z-50 w-full h-screen bg-white dark:bg-dg-primary-1700 overflow-hidden dark:text-white flex items-center justify-center text-3xl font-semibold">
<video id="animation" width="540" height="540" autoPlay muted loop>
<source src={Animation_Diligent} type="video/webm" />
Loading...
</video>
</div>
);
} else {


{/* Landing Section */}
// {data && <Landing heading={data.Heading} numbers={data.HeroNumbers.number} button={data.button} paragraph={data.paragraph} />}

return (
<PageLayout>
<div className='mt-90p'>
<Wrapper padding={' py-[48px]'}>
<PageTitle heading={'Diligent at a Glance'} subheading={'work with us'} />
</Wrapper>
{data ? <PageTitle heading={'Diligent at a Glance'} subheading={'work with us'}/> : null}
</Wrapper>
<div className='flex flex-col md:flex gap-[32px] w-fit mx-auto'>
<CustomLink href={_data.downloadFilePath} downloadFile={_data.downloadFileName} context={'Company Overview'}>
<p>Company Overview</p>
@@ -242,6 +261,8 @@ const WorkWithUs = () => {
</div>
</PageLayout>
)


正在加载...
取消
保存