Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added public/gadsl_bw_logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/gadsl_hd_logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 6 additions & 3 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,13 @@ function App() {
return (
<div className="App" style={{ minHeight: "100vh", display: "flex", flexDirection: "column" }}>
<Layout>
<Header style={{ position: "fixed", top: 0, zIndex: 1000, width: "100%" }}>
<div className="ntulogo">
<Header style={{ position: "fixed", top: 0, zIndex: 1000, width: "100%", paddingLeft: '1rem' }}>
<div className="gadsl-logo" style={{ display: "flex", justifyContent: "space-between", alignItems: "center" }}>
<a href="/lab" style={{ height: '3rem' }}>
<img src="gadsl_hd_logo.png" style={{ height: '3rem' }} />
</a>
<Menu theme="dark" mode="horizontal" selectable={false} items={items} style={{justifyContent: "right", fontSize: "18px", width: "90%" }} />
</div>
<Menu theme="dark" mode="horizontal" selectable={false} items={items} style={{justifyContent: "right", fontSize: "18px", width: "90%" }} />
</Header>
<Content>
<BrowserRouter>
Expand Down
5 changes: 4 additions & 1 deletion src/components/Banner/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,10 @@ const LogoFill = () => {
});
return (
<animated.div style={{ display: 'flex', justifyContent: 'center', marginTop: '2rem', ...props }}>
<img src="ntu_logo_white.png" style={{ width: '10rem' }} />
<div style={{ display: 'flex', justifyContent: 'left' }}>
<img src="gadsl_bw_logo.png" style={{ height: '4rem', marginLeft: '1rem' }} />
<img src="ntu_logo_white.png" style={{ height: '4rem' }} />
</div>
<div style={{ height: '4rem', width: '1px', backgroundColor: 'white', marginLeft: '1rem', marginRight: '1rem' }}/>
<div style={{ color: 'white', fontSize: '1rem', textAlign: 'left' }}>
College of Computing <br/> and Data Science
Expand Down
44 changes: 23 additions & 21 deletions src/components/self/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,30 +11,32 @@ export class SelfIntro extends React.Component {
<Content style={{ marginBottom: "10px" }}>
<div style={{ height: "64px" }}></div>
<div style={{ backgroundColor: "#EBF4F6", paddingTop: "20px", paddingBottom: "0.5rem", display: "flex", justifyContent: "center" }}>
<Row justify="center" style={{ width: "70%"}}>
<Col style={{ textAlign: "center" }}>
<img src="avatar/SiqiangLuo.jpg" style={{ width: "8rem", height: "8rem", borderRadius: "50%" }}/>
<div style={{ display: "flex", justifyContent: "center"}}>
<a href="mailto:siqiang.luo@ntu.edu.sg"><img style={{ width: "1.2rem", height: "1.2rem", margin: "0.5rem" }} src="email.svg"/></a>
<a href="https://dblp.org/pid/117/5965.html"><img style={{ width: "1.2rem", height: "1.2rem", margin: "0.5rem" }} src="dblp.svg"/></a>
<a href="https://scholar.google.com/citations?user=ZDwbMg4AAAAJ"><img style={{ width: "1.2rem", height: "1.2rem", margin: "0.5rem" }} src="googlescholar.svg"/></a>
<div style={{ width: "70%", display: "flex", justifyContent: "space-between" }}>
<div style={{ display: "flex", justifyContent: "left" }}>
<div style={{ textAlign: "center" }}>
<img src="avatar/SiqiangLuo.jpg" style={{ width: "8rem", height: "8rem", borderRadius: "50%" }}/>
<div style={{ display: "flex", justifyContent: "center"}}>
<a href="mailto:siqiang.luo@ntu.edu.sg"><img style={{ width: "1.2rem", height: "1.2rem", margin: "0.5rem" }} src="email.svg"/></a>
<a href="https://dblp.org/pid/117/5965.html"><img style={{ width: "1.2rem", height: "1.2rem", margin: "0.5rem" }} src="dblp.svg"/></a>
<a href="https://scholar.google.com/citations?user=ZDwbMg4AAAAJ"><img style={{ width: "1.2rem", height: "1.2rem", margin: "0.5rem" }} src="googlescholar.svg"/></a>
</div>
</div>
</Col>
<Col style={{ marginLeft: '3rem' , fontFamily: "'Cardo'" }}>
<div style={{ fontSize: "30px", textAlign: "left", lineHeight: "1.5" }}>
Siqiang Luo
<div style={{ marginLeft: '3rem' , fontFamily: "'Cardo'" }}>
<div style={{ fontSize: "30px", textAlign: "left", lineHeight: "1.5" }}>
Siqiang Luo
</div>
<div style={{ fontSize: "20px", textAlign: "left", lineHeight: "2.5" }}>
Nanyang Assistant Professor
</div>
<div style={{ fontSize: "15px", textAlign: "left", lineHeight: "1.7" }}>
College of Computing and Data Science, Nanyang Technological University
</div>
</div>
<div style={{ fontSize: "20px", textAlign: "left", lineHeight: "2.5" }}>
Nanyang Assistant Professor
</div>
<div style={{ fontSize: "15px", textAlign: "left", lineHeight: "1.7" }}>
College of Computing and Data Science, Nanyang Technological University
</div>
</Col>
<Col style={{ display: "flex", alignItems: "center", flex: "1", justifyContent: "right" }}>
</div>
<div style={{ display: "flex", alignItems: "center", justifyContent: "right" }}>
<img src="ntu_logo.webp" style={{ width: "250px" }}/>
</Col>
</Row>
</div>
</div>
</div>
<div style={{ display: "flex", justifyContent: "center", fontFamily: "'Cardo'", textAlign: "left", fontSize: "16px", lineHeight: "2" }}>
<div style={{ width: "70%" }}>
Expand Down