This commit is contained in:
louiscklaw
2025-01-31 19:47:49 +08:00
parent 32bc49f19a
commit 893eaee67b
129 changed files with 71057 additions and 0 deletions

View File

@@ -0,0 +1,74 @@
import React from "react";
import styles from "./NGOLogo.module.css";
const NGOLogo = () => {
return (
<div className={styles["LOGO-heading"]}>
<h4 id={styles["LOGO-subheading"]}>合作伙伴:</h4>
<span id={styles["subheading-text"]}>
好歡迎更多獨立或大型機構搵我哋合作㗎目標係成為全港最大既領養資訊平台
<br />
絕不收取中介費
</span>
<div className={styles["LOGO-wrapper"]}>
<a
href="https://hkscda.com/adoption/instructions"
target="_blank"
rel="noreferrer"
>
<img
src="./icons/HKSCDA_logo.jpeg"
className={styles["logo-one"]}
alt="HKSCDA"
/>
</a>
<a
href="https://www.spca.org.hk/zh-hant/what-we-do/adoption/adoption-process/"
target="_blank"
rel="noreferrer"
>
<img
src="./icons/HKSPCA_logo.jpeg"
className={styles["logo-one"]}
alt="HKSPCA"
/>
</a>
<a
href="https://www.hk-aac.org.hk/image/data/pdf/dogs.pdf"
target="_blank"
rel="noreferrer"
>
<img
src="./icons/HKAAC_logo.jpeg"
className={styles["logo-one"]}
alt="HKAAC"
/>
</a>
<a
href="https://drive.google.com/file/d/18i9IPSWbWwd1Jypv3uaN4T5wnualOCRB/view"
target="_blank"
rel="noreferrer"
>
<img
src="./icons/LAP_logo.jpeg"
className={styles["logo-one"]}
alt="LAP"
/>
</a>
<a
href="https://www.saa.org.hk/zh/service.php?id=1"
target="_blank"
rel="noreferrer"
>
<img
src="./icons/SAA_logo.jpeg"
className={styles["logo-one"]}
alt="SAA"
/>
</a>
</div>
</div>
);
};
export default NGOLogo;