Compare commits

..

No commits in common. "3d6ad2475baa53875f100cbb1fd9bbd52374fc67" and "a318455edad1988e81cc5388994c239ccee4e24c" have entirely different histories.

2 changed files with 6 additions and 10 deletions

View File

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

View File

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