This commit is contained in:
张 元山 2025-05-23 15:42:03 +08:00
commit 77cd8fddfd
2 changed files with 10 additions and 6 deletions

View File

@ -244,8 +244,6 @@ const solutions = computed(() => [
transform: translateX(-50%); transform: translateX(-50%);
width: 80%; width: 80%;
height: 100%; height: 100%;
background: url("@/assets/image/abstract-pattern.png") no-repeat
center/contain;
opacity: 0.03; opacity: 0.03;
z-index: -1; z-index: -1;
} }

View File

@ -71,6 +71,12 @@
<script setup> <script setup>
import { reactive } from "vue"; import { reactive } from "vue";
import quarterlyPdfone from "@/assets/file/AUDIT COMMITTEE CHARTER.pdf";
import quarterlyPdftwo from "@/assets/file/CODE OF BUSINESS CONDUCT AND ETHICS.pdf";
import quarterlyPdfthree from "@/assets/file/COMPENSATION COMMITTEE CHARTER.pdf";
import quarterlyPdffour from "@/assets/file/NOMINATING AND CORPORATE GOVERNANCE COMMITTEE CHARTER.pdf";
const state = reactive({ const state = reactive({
list: [ list: [
@ -78,28 +84,28 @@ const state = reactive({
title: "Audit Committee Charter", title: "Audit Committee Charter",
description: description:
"Defines the purpose, composition, and responsibilities of the Audit Committee in overseeing financial reporting and disclosure.", "Defines the purpose, composition, and responsibilities of the Audit Committee in overseeing financial reporting and disclosure.",
url: "/src/assets/file/AUDIT COMMITTEE CHARTER.pdf", url: quarterlyPdfone,
date: "Last updated: March 2025", date: "Last updated: March 2025",
}, },
{ {
title: "Code of Business Conduct", title: "Code of Business Conduct",
description: description:
"Establishes the ethical standards and legal compliance expectations for all directors, officers and employees.", "Establishes the ethical standards and legal compliance expectations for all directors, officers and employees.",
url: "/src/assets/file/CODE OF BUSINESS CONDUCT AND ETHICS.pdf", url: quarterlyPdftwo,
date: "Last updated: January 2025", date: "Last updated: January 2025",
}, },
{ {
title: "Compensation Committee Charter", title: "Compensation Committee Charter",
description: description:
"Outlines the duties and responsibilities for overseeing executive compensation and benefit plans.", "Outlines the duties and responsibilities for overseeing executive compensation and benefit plans.",
url: "/src/assets/file/COMPENSATION COMMITTEE CHARTER.pdf", url: quarterlyPdfthree,
date: "Last updated: February 2025", date: "Last updated: February 2025",
}, },
{ {
title: "Nominating & Governance Charter", title: "Nominating & Governance Charter",
description: description:
"Provides the framework for director nominations and corporate governance matters.", "Provides the framework for director nominations and corporate governance matters.",
url: "/src/assets/file/NOMINATING AND CORPORATE GOVERNANCE COMMITTEE CHARTER.pdf", url: quarterlyPdffour,
date: "Last updated: April 2025", date: "Last updated: April 2025",
}, },
], ],