Skip to content

Commit

Permalink
feat: update member, publications and news
Browse files Browse the repository at this point in the history
  • Loading branch information
lucky9-cyou committed Aug 30, 2024
1 parent a9df1fc commit 981d99a
Show file tree
Hide file tree
Showing 9 changed files with 9,405 additions and 4,086 deletions.
22 changes: 11 additions & 11 deletions app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,23 @@

a,
p {
line-height: 1.75rem;
/* 28px */
word-wrap: break-word;
line-height: 1.75rem;
/* 28px */
word-wrap: break-word;
}

a[href^="http"] {
color: #3f83f8;
text-decoration: underline;
color: #3f83f8;
text-decoration: underline;
}

html {
font-family: 'Lato', sans-serif;
font-weight: 400;
font-family: "Lato", sans-serif;
font-weight: 400;
}

@layer components {
.card {
@apply max-w-sm rounded-lg border border-gray-200 bg-white shadow dark:border-gray-700 dark:bg-gray-800;
}
}
.card {
@apply max-w-sm rounded-lg border border-gray-200 bg-white shadow dark:border-gray-700 dark:bg-gray-800;
}
}
41 changes: 41 additions & 0 deletions app/group/member/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,47 @@ export const metadata: Metadata = {
function Page(): JSX.Element {
return (
<div className="mx-auto mb-20 max-w-5xl items-start justify-center p-4 md:mt-20">
<h2 className="mb-4 text-2xl font-semibold">
Research Assistant Professor
</h2>
<div className="[&>*]:card grid grid-cols-1 items-stretch gap-3 sm:grid-cols-3">
<div>
<Image
src="/images/ziyang_hong.jpg"
alt="photo"
className="mx-auto pt-5"
width={200}
height={200}
/>
<div className="p-5">
<h4 className="mb-2 text-lg">Ziyang Hong</h4>
<span className="font-normal text-gray-700 dark:text-gray-400">
Research Assistant Professor,2024/08 - Present
<br />
Ph.D., Heriot-Watt University, UK
<br />
MSc in Vision and Robotics, Heriot-Watt University, UK
<br />
BSc in Electronic and Information Engineering. Shantou University,
China
<br />
Research Field: Mobile Robotics, State Estimation, Simultaneous
Localization and Mapping, Autonomous Driving, Robot Learning,
Computer Vision, Radar-based Perception, Underwater Robotics
<br />
Personal website:{" "}
<a
target="_blank"
href="https://sites.google.com/view/ziyanghong/home"
rel="noreferrer"
>
https://sites.google.com/view/ziyanghong/home
</a>
</span>
</div>
</div>
</div>

<h2 className="mb-4 text-2xl font-semibold">Postdoc</h2>
<div className="[&>*]:card grid grid-cols-1 items-stretch gap-3 sm:grid-cols-3">
<div>
Expand Down
13 changes: 13 additions & 0 deletions app/news/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,19 @@ function Page(): JSX.Element {
<div className="mx-auto mb-20 max-w-5xl items-start justify-center p-4 md:mt-20">
<h2 className="mb-4 text-2xl font-semibold">News</h2>
<div>
<p>● A paper was accepted by CCS(2024.08.27)</p>
<p>
Bokang Zhang, Yanglin Zhang, Zhikun Zhang, Jinglan Yang, Lingying
Huang, Junfeng Wu, S^2NeRF: Privacy-preserving Training Framework
for NeRF, ACM Conference on Computer and Communications Security,
accepted.
</p>
<p>● A paper was accepted by TCNS(2024.08.24)</p>
<p>
Ke Fang, Jianqi Chen, Junfeng Wu, Clock Synchronization with Unknown
and Unmodeled Disturbances over Distributed Networks, IEEE
Transactions on Control of Network Systems, conditionally accept.
</p>
<p>● A paper was accepted by TAC(2024.06.12).</p>
<p>
Xinghan Li, Jianqi Chen, Han Zhang, Jieqiang Wei, Junfeng Wu, Errors
Expand Down
11 changes: 11 additions & 0 deletions app/publications/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,17 @@ function Page(): JSX.Element {
<div className="mx-auto mb-20 max-w-5xl items-start justify-center p-4 md:mt-20">
<h2 className="mb-4 text-2xl font-semibold">JOURNAL PAPERS</h2>
<div>
<p>
[51] Bokang Zhang, Yanglin Zhang, Zhikun Zhang, Jinglan Yang,
Lingying Huang, Junfeng Wu, S^2NeRF: Privacy-preserving Training
Framework for NeRF, ACM Conference on Computer and Communications
Security, accepted.
</p>
<p>
[50] Ke Fang, Jianqi Chen, Junfeng Wu, Clock Synchronization with
Unknown and Unmodeled Disturbances over Distributed Networks, IEEE
Transactions on Control of Network Systems, conditionally accept.
</p>
<p>
[49] Xinghan Li, Jianqi Chen, Han Zhang, Jieqiang Wei, Junfeng Wu,
Errors Dynamics in Affine Group Systems, IEEE Transactions on
Expand Down
2 changes: 1 addition & 1 deletion next.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'export',
output: "export",
experimental: {
// appDir: true,
},
Expand Down
Loading

0 comments on commit 981d99a

Please sign in to comment.