134 lines
7.4 KiB
Vue
134 lines
7.4 KiB
Vue
<template>
|
||
<div class="home-page">
|
||
<div class="directors-page">
|
||
<h1 class="page-title">Board of Directors</h1>
|
||
<n-divider />
|
||
|
||
<div class="directors-list">
|
||
<div
|
||
v-for="(director, index) in otherDirectors"
|
||
:key="index"
|
||
class="director-item"
|
||
>
|
||
<n-h2 class="director-name">{{ director.name }}</n-h2>
|
||
<n-text class="director-title">{{ director.title }}</n-text>
|
||
<n-divider class="divider" />
|
||
<n-p class="director-bio">{{ director.contain }}</n-p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</template>
|
||
|
||
<script setup>
|
||
const otherDirectors = [
|
||
{
|
||
name: "Hu Bin",
|
||
title: "Chairman of the Board of Directors",
|
||
contain:
|
||
"Served as a director of DC International Service Trade GmbH since December 2024. Prior to that, Mr. Hu worked as a freelancer in the tourism industry from April 2001 to October 2024. From April 1994 to October 2000, he served as the general manager of Suzhou Wintime Advertising Co., Ltd. Before that, he served as the general manager of Suzhou Bauhaus Advertising Design Co., Ltd. from August 1992 to April 1994, where he was engaged in computer-aided design and 3D computer animation production. Mr. Hu began his career at Suzhou Advertising Company in October 1989, where he worked as a designer responsible for graphic design, platemaking, printing, and interior decoration. Mr. Hu graduated from Suzhou Academy of Arts in 1989.",
|
||
},
|
||
{
|
||
name: "Cao Yu",
|
||
title: "Chief Financial Officer, Secretary, Treasurer and Director",
|
||
contain:
|
||
"Previously served as the treasury director of Taifeng Cultural Communication Co., Ltd where she oversees its financial matters from November 2018 to November 2024. Prior to that, Ms. Cao served as a business manager of Yangfeng Art Exchange Co., Ltd from February 2016 to October 2018. From March 2011 to January 2016, she served as the treasury officer of financial department of Suzhou Industrial Park Xinfushida Plastic Profile Products Co., Ltd.",
|
||
},
|
||
{
|
||
name: "David Lazar",
|
||
title: "Director",
|
||
contain:
|
||
"Currently serves as President and Chief Executive Officer of Natan & Associates, LLC, a consulting firm offering chief financial officer services to public and private companies in a variety of industries, since 2007. Mr. Natan previously served as a Director of the Company from November 2023 to February 2025. From February 2010 to May 2020, Mr. Natan served as Chief Executive Officer of ForceField Energy, Inc. (OTCMKTS: FNRG), a company focused on the solar industry and LED lighting products. From February 2002 to November 2007, Mr. Natan served as Executive Vice President of Reporting and Chief Financial Officer of PharmaNet Development Group, Inc., a drug development services company, and, from June 1995 to February 2002, as Chief Financial Officer and Vice President of Global Technovations, Inc., a manufacturer and marketer of oil analysis instruments and speakers and speaker components. Prior to that, Mr. Natan served in various roles of increasing responsibility with Deloitte & Touche LLP, a global consulting firm. Mr. Natan currently serves as a member of the Board of Directors and Chair of the Audit Committee of Sunshine Biopharma, Inc. (Nasdaq: SBFM), a pharmaceutical and nutritional supplement company, since February 2022. Previously, Mr. Natan has served as a director for the following public companies: Global Technovations, Forcefield Energy, Titan Pharmaceuticals (Nasdaq: TTNP), Vivakor Inc. (Nasdaq: VIVK), NetBrands Corp. (OTC: NBND), and OpGen Inc. (OTC: OPGN), and Cyclacel Pharmaceuticals (Nasdaq: CYCC). Mr. Natan holds a B.A. in Economics from Boston University.",
|
||
},
|
||
|
||
{
|
||
name: "David Natan",
|
||
title: "Director",
|
||
contain:
|
||
"David Natan,age 72, currently serves as President and Chief Executive Officer of Natan & Associates, LLC, a consulting firm offering chief financialofficer services to public and private companies in a variety of industries, since 2007. Mr. Natan previously served as a Director of the Company fromNovember 2023 to February 2025. From February 2010 to May 2020, Mr. Natan served as Chief Executive Officer of ForceField Energy, Inc.(OTCMKTS: FNRG), a company focused on the solar industry and LED lighting products. From February 2002 to November 2007, Mr. Natan served asExecutive Vice President of Reporting and Chief Financial Officer of PharmaNet Development Group, Inc., a drug development services company, and,from June 1995 to February 2002, as Chief Financial Officer and Vice President of Global Technovations, Inc., a manufacturer and marketer of oil analysisinstruments and speakers and speaker components. Prior to that, Mr. Natan served in various roles of increasing responsibility with Deloitte & Touche LLP,a global consulting firm. Mr. Natan currently serves as a member of the Board of Directors and Chair of the Audit Committee of Sunshine Biopharma, Inc.(Nasdaq: SBFM), a pharmaceutical and nutritional supplement company, since February 2022. Previously, Mr. Natan has served as a director for thefollowing public companies: Global Technovations, Forcefield Energy, Titan Pharmaceuticals (Nasdaq: TTNP), Vivakor Inc. (Nasdaq: VIVK), NetBrandsCorp. (OTC: NBND), and OpGen Inc. (OTC: OPGN), and Cyclacel Pharmaceuticals (Nasdaq: CYCC). Mr. Natan holds a B.A. in Economics from Boston University.",
|
||
},
|
||
{
|
||
name: "Chan Oi Fat",
|
||
title: "Director",
|
||
contain:
|
||
"Served as Vice President – Finance of SML Group Corporation since March 2018 and as Company Secretary of China Leon Inspection Holding Limited (HKEX: 1586) since February 2018 and of Raily Aesthetic Medicine International Holdings Limited (HKEX: 2135) since November 2020. He is an independent non-executive director of Huajin International Holdings Limited (HKEX: 2738) (since March 2025) and UBoT Holding Limited (HKEX GEM: 8529) (since May 2024) and previously served as an independent non-executive director of China Saftower International Holding Group Limited (HKEX GEM: 8623) from June 2020 to December 2023 and Shanghai Prime Machinery Company Limited (HKEX: 2345) from June 2014 to January 2021. Mr. Chan holds a B.B.A. (Hons) in Accountancy from the City University of Hong Kong (2000) and is a member of the Association of Chartered Certified Accountants (since 2003) and the Hong Kong Institute of Certified Public Accountants (since 2004).",
|
||
},
|
||
];
|
||
</script>
|
||
|
||
<style scoped>
|
||
.home-page {
|
||
background-image: url("@/assets/image/bg.png");
|
||
background-size: 100% 100%;
|
||
background-position: center;
|
||
background-repeat: no-repeat;
|
||
}
|
||
.directors-page {
|
||
max-width: 900px;
|
||
margin: 0 auto;
|
||
padding: 60px 24px;
|
||
}
|
||
|
||
.page-title {
|
||
font-size: 2.5rem; /* 18px */
|
||
margin-bottom: 30px;
|
||
color: #333;
|
||
}
|
||
|
||
.directors-list {
|
||
display: flex;
|
||
flex-direction: column;
|
||
gap: 48px;
|
||
margin-top: 40px;
|
||
}
|
||
|
||
.director-item {
|
||
padding-bottom: 48px;
|
||
border-bottom: 1px solid #f0f0f0;
|
||
}
|
||
|
||
.director-item:last-child {
|
||
border-bottom: none;
|
||
padding-bottom: 0;
|
||
}
|
||
|
||
.director-name {
|
||
margin-bottom: 8px;
|
||
font-size: 28px;
|
||
font-weight: 500;
|
||
color: #1a1a1a;
|
||
}
|
||
|
||
.director-title {
|
||
font-size: 18px;
|
||
color: #666;
|
||
display: block;
|
||
margin-bottom: 24px;
|
||
}
|
||
|
||
.divider {
|
||
margin: 16px 0;
|
||
background-color: #f0f0f0;
|
||
}
|
||
|
||
.director-bio {
|
||
line-height: 1.8;
|
||
color: #4a4a4a;
|
||
font-size: 16px;
|
||
}
|
||
|
||
@media (min-width: 768px) {
|
||
.directors-page {
|
||
padding: 80px 40px;
|
||
}
|
||
|
||
.director-name {
|
||
font-size: 32px;
|
||
}
|
||
|
||
.director-title {
|
||
font-size: 20px;
|
||
}
|
||
}
|
||
</style>
|