diff --git a/app/(site)/members/page.tsx b/app/(site)/members/page.tsx new file mode 100644 index 0000000..904fff0 --- /dev/null +++ b/app/(site)/members/page.tsx @@ -0,0 +1,12 @@ +import type { Metadata } from "next"; +import MembersPageClient from "@/app/components/members/MembersPageClient"; + +export const metadata: Metadata = { + title: "Our Members | IPv6 Enhanced 2026", + description: + "The collective force of leading global institutions driving IPv6 adoption across ASEAN's digital ecosystems.", +}; + +export default function MembersPage() { + return ; +} diff --git a/app/components/gallery/GalleryPageClient.tsx b/app/components/gallery/GalleryPageClient.tsx index 767135b..48551cc 100644 --- a/app/components/gallery/GalleryPageClient.tsx +++ b/app/components/gallery/GalleryPageClient.tsx @@ -18,7 +18,7 @@ type EventItem = { export default function GalleryPageClient() { const { gallery, lang } = useTranslation(); - + // Active Event Index (0: latest event, 7: oldest event) const [activeEventIndex, setActiveEventIndex] = useState(0); @@ -128,21 +128,21 @@ export default function GalleryPageClient() { {/* Gallery Section */}
- + {/* Step Timeline Navigation */}
{/* Timeline track behind steps */}
-
- + {gallery.events.map((event: EventItem, idx: number) => { const isActive = idx === activeEventIndex; const isPassed = idx < activeEventIndex; - + return (
{/* Info bar below image */} -
e.stopPropagation()} > @@ -337,7 +337,7 @@ export default function GalleryPageClient() { {activeEvent.title}

- {lang === "vi" + {lang === "vi" ? `Hình ảnh ${lightboxImageIndex + 1} trên ${activeEvent.images.length}` : `Image ${lightboxImageIndex + 1} of ${activeEvent.images.length}` } diff --git a/app/components/members/MembersPageClient.tsx b/app/components/members/MembersPageClient.tsx new file mode 100644 index 0000000..9b067b4 --- /dev/null +++ b/app/components/members/MembersPageClient.tsx @@ -0,0 +1,217 @@ +"use client"; + +import { useState, useEffect, useRef } from "react"; +import { useTranslation } from "@/app/hooks/useTranslation"; +import ReadyToJoin from "@/app/components/gallery/ReadyToJoin"; + +const BASE = process.env.NEXT_PUBLIC_BASE_PATH || ""; + +type MemberItem = { + name: string; + logo: string; + subtitle: string; +}; + +type Category = { + title: string; + items: MemberItem[]; +}; + +type IndividualMember = { + name: string; + title: string; +}; + +/* Stateful Logo Card component to dynamically adjust padding & scaling based on image aspect ratio */ +const LogoCard = ({ item }: { item: MemberItem }) => { + const [isSquareOrTall, setIsSquareOrTall] = useState(false); + const imgRef = useRef(null); + + useEffect(() => { + const img = imgRef.current; + if (!img) return; + + // Reset aspect ratio state when logo path changes + setIsSquareOrTall(false); + + const handleLoad = () => { + const { naturalWidth, naturalHeight } = img; + if (naturalHeight && naturalWidth) { + // If height-to-width ratio is close to square or taller (>= 0.75) + setIsSquareOrTall(naturalHeight / naturalWidth >= 0.75); + } + }; + + if (img.complete) { + handleLoad(); + } else { + img.addEventListener("load", handleLoad); + return () => img.removeEventListener("load", handleLoad); + } + }, [item.logo]); + + const hasLogo = item.logo && item.logo.trim() !== ""; + + return ( +

+ {/* Card containing the logo image or fallback placeholder */} +
+ {hasLogo ? ( + /* Logo Container with background fill for high contrast */ +
+ {/* eslint-disable-next-line @next/next/no-img-element */} + {item.name} +
+ ) : ( + /* Fallback avatar badge */ +
+ + {item.name.slice(0, 2).toUpperCase()} + +
+ )} +
+ + {/* Text details (outside on the dark background, larger text) */} +
+ + {item.name} + + + {item.subtitle} + +
+
+ ); +}; + +export default function MembersPageClient() { + const { members } = useTranslation(); + + const categories = members.organizationalMembers.categories; + + return ( +
+ {/* Hero Header Section */} +
+ +
+ + {/* Organizational Members Section */} +
+
+

+ {members.organizationalMembers.title} +

+

+ {members.organizationalMembers.description} +

+
+
+ + {/* Subcategories */} +
+ {Object.entries(categories).map(([key, cat]) => { + const category = cat as Category; + return ( +
+ {/* Subcategory title */} +

+ {category.title} +

+ {/* Logos Grid */} +
+ {category.items.map((item) => ( + + ))} +
+
+ ); + })} +
+
+ + {/* Contributing Members Section */} +
+
+

+ {members.contributingMembers.title} +

+

+ {members.contributingMembers.description} +

+
+
+ + {/* Individual Contributors Grid */} +
+ {members.contributingMembers.items.map((item: IndividualMember) => ( +
+
+ +
+
+

+ {item.name} +

+

+ {item.title} +

+
+
+ ))} +
+
+ + {/* Ready To Join CTA Section (Reusing Visual Gallery CTA design) */} + +
+ ); +} diff --git a/app/data/members.json b/app/data/members.json new file mode 100644 index 0000000..ecc4f68 --- /dev/null +++ b/app/data/members.json @@ -0,0 +1,103 @@ +{ + "hero": { + "eyebrow": "OUR COUNCIL", + "title": "Our Members", + "description": "The collective force of leading global institutions driving IPv6 adoption across ASEAN's digital ecosystems. These are the members of the APAC Council." + }, + "organizationalMembers": { + "title": "Organizational Members", + "description": "Leading institutions and authorities committed to deploying next-generation internet infrastructure.", + "categories": { + "government": { + "title": "Government & Forums", + "items": [ + { "name": "APNIC", "logo": "/assets/img/gov & forums/APNIC.png", "subtitle": "Asia-Pacific Network Information Centre" }, + { "name": "VNNIC", "logo": "/assets/img/gov & forums/VNNIC.png", "subtitle": "Vietnam Internet Network Information Center" }, + { "name": "IPv6 Forum", "logo": "/assets/img/gov & forums/IPv6 Forum.png", "subtitle": "Global IPv6 Forum" }, + { "name": "APAN", "logo": "/assets/img/gov & forums/APAN.png", "subtitle": "Asia Pacific Advanced Network" }, + { "name": "Bharat IPv6 Forum", "logo": "/assets/img/gov & forums/Bharat IPv6 Forum.jpg", "subtitle": "India IPv6 Forum" }, + { "name": "IDNIC", "logo": "/assets/img/gov & forums/IDNIC.png", "subtitle": "Indonesian Network Information Center" }, + { "name": "ISOC Kazakhstan", "logo": "/assets/img/gov & forums/ISOC Kazakhstan.png", "subtitle": "Internet Society Kazakhstan Chapter" }, + { "name": "ITU-APT", "logo": "/assets/img/gov & forums/ITU-APT.jpg", "subtitle": "ITU-APT Foundation of India" }, + { "name": "LANIC", "logo": "/assets/img/gov & forums/LANIC.jpg", "subtitle": "Laos National Internet Centre" }, + { "name": "Malawi Revenue Authority", "logo": "/assets/img/gov & forums/Malawi Revenue Authority.jpg", "subtitle": "Malawi Revenue Authority" }, + { "name": "NAv6", "logo": "/assets/img/gov & forums/NAv6.jpg", "subtitle": "National Advanced IPv6 Centre" }, + { "name": "NIDA", "logo": "/assets/img/gov & forums/NIDA.png", "subtitle": "National Institute of Development Administration" }, + { "name": "NIXI", "logo": "/assets/img/gov & forums/NIXI.png", "subtitle": "National Internet Exchange of India" }, + { "name": "TRC Sri Lanka", "logo": "/assets/img/gov & forums/TRC Sri Lanka.png", "subtitle": "Telecommunications Regulatory Commission of Sri Lanka" }, + { "name": "World Broadband Association", "logo": "/assets/img/gov & forums/World Broadband Association.png", "subtitle": "World Broadband Association" }, + { "name": "APJII", "logo": "/assets/img/gov & forums/APJII.png", "subtitle": "Indonesia Internet Service Provider Association" } + ] + }, + "universities": { + "title": "Universities", + "items": [ + { "name": "APU Malaysia", "logo": "/assets/img/universities/APU Malaysia.png", "subtitle": "Asia Pacific University of Technology & Innovation" }, + { "name": "COMSATS University", "logo": "/assets/img/universities/COMSATS Uni.jpg", "subtitle": "COMSATS University Islamabad" }, + { "name": "Dr. MGR University", "logo": "/assets/img/universities/Dr. MGR University.png", "subtitle": "Dr. M.G.R. Educational and Research Institute" }, + { "name": "IEC", "logo": "/assets/img/universities/IEC.png", "subtitle": "International Education Centre" }, + { "name": "ITS", "logo": "/assets/img/universities/ITS.webp", "subtitle": "Sepuluh Nopember Institute of Technology" }, + { "name": "Keio University", "logo": "/assets/img/universities/Keio University.png", "subtitle": "Keio University" }, + { "name": "MSEC", "logo": "/assets/img/universities/MSEC.jpg", "subtitle": "Meenakshi Sundararajan Engineering College" }, + { "name": "MUST", "logo": "/assets/img/universities/MUST.jpg", "subtitle": "Malaysia University of Science and Technology" }, + { "name": "SIMS", "logo": "/assets/img/universities/SIMS.jpg", "subtitle": "Saigon Institute for Management Studies" }, + { "name": "SUST", "logo": "/assets/img/universities/SUST.jpg", "subtitle": "Shahjalal University of Science and Technology" }, + { "name": "UNSW", "logo": "/assets/img/universities/UNSW.jpg", "subtitle": "University of New South Wales" } + ] + }, + "privateSector": { + "title": "Organizations", + "items": [ + { "name": "Agile Consultancy", "logo": "/assets/img/organizations/Agile Consultancy.jpg", "subtitle": "Agile Consultancy Pvt. Ltd." }, + { "name": "BII Group", "logo": "/assets/img/organizations/BII Group.png", "subtitle": "BII Group Holdings" }, + { "name": "Bhutan Telecom", "logo": "/assets/img/organizations/Bhutan Telecom Ltd., Bhutan.png", "subtitle": "Bhutan Telecom" }, + { "name": "CERT Tonga", "logo": "/assets/img/organizations/CERT Tonga.jpg", "subtitle": "Computer Emergency Response Team Tonga" }, + { "name": "CNLabs", "logo": "/assets/img/organizations/CNLabs.jpg", "subtitle": "CNLabs (IPv6 Ready Logo Lab)" }, + { "name": "Digital Bridge Institute", "logo": "/assets/img/organizations/Digital Bridge Institute.png", "subtitle": "Digital Bridge Institute Nigeria" }, + { "name": "Edgepoint", "logo": "/assets/img/organizations/Edgepoint.png", "subtitle": "Edgepoint Infrastructure" }, + { "name": "Hassan Solutions", "logo": "/assets/img/organizations/Hassan Solutions.png", "subtitle": "Hassan Solutions Pakistan" }, + { "name": "Huawei", "logo": "/assets/img/organizations/Huawei.png", "subtitle": "Huawei Technologies Co., Ltd." }, + { "name": "IPv6 Forum Malaysia", "logo": "/assets/img/organizations/IPv6 Forum Malaysia.png", "subtitle": "IPv6 Forum Malaysia Chapter" }, + { "name": "InfinIT ComTech", "logo": "/assets/img/organizations/InfinIT ComTech.jpg", "subtitle": "InfinIT ComTech Vietnam" }, + { "name": "MPT", "logo": "/assets/img/organizations/MPT.svg", "subtitle": "Myanma Posts and Telecommunications" }, + { "name": "Nokia", "logo": "/assets/img/organizations/NOKIA.jpg", "subtitle": "Nokia Corporation" }, + { "name": "RICHAT Partners", "logo": "/assets/img/organizations/RICHAT Partners.jpg", "subtitle": "RICHAT Partners Vietnam" }, + { "name": "SAIM Enterprises", "logo": "/assets/img/organizations/SAIM Enterprises.jpg", "subtitle": "SAIM Enterprises India" }, + { "name": "Smart Industry Malaysia", "logo": "/assets/img/organizations/Smart Industry Malaysia.jpg", "subtitle": "Smart Industry Malaysia" }, + { "name": "Subisu Nepal", "logo": "/assets/img/organizations/Subisu Nepal.png", "subtitle": "Subisu Cablenet Nepal" }, + { "name": "Tonga", "logo": "/assets/img/organizations/Tonga.png", "subtitle": "Tonga Communications Corporation" }, + { "name": "Wexa Consulting", "logo": "/assets/img/organizations/Wexa Consulting.png", "subtitle": "Wexa Consulting Malaysia" } + ] + } + } + }, + "contributingMembers": { + "title": "Contributing Members", + "description": "Distinguished individuals who have contributed to the success of the Council's initiatives.", + "items": [ + { "name": "Prof Emeritus Dr. Sureswaran Ramadass", "title": "Chairman, APAC IPv6 Council" }, + { "name": "Dr Muhammad Asyraf Mohammad Naim", "title": "Director for Training & Consultancy, IPv6 Forum Malaysia" }, + { "name": "Ms. Vallikkannu Nagappan", "title": "Chief Secretary, APAC IPv6 Council" }, + { "name": "Mr. Hong Thang", "title": "Executive, VNNIC" }, + { "name": "Mr. Nguyen Truong Giang", "title": "Executive, VNNIC" }, + { "name": "Mr. Bayu Hanantasena", "title": "Strategic Advisor to CEO, Indosat" }, + { "name": "Saysomvang Souvannavong", "title": "Deputy Director, Laos National Internet Centre" }, + { "name": "Dr. Will Liu", "title": "Head of Europe Datacom Standard & Industry Development, Huawei" }, + { "name": "Dr. Gopinath Rao", "title": "Chair of AI Standards Task Force, MTFSB" }, + { "name": "Dr. Navaneethan C Arjuman", "title": "Global Coordinator, IPv6 Forum Logo Programme" }, + { "name": "Prof. Ts. Dr. Salman Yussof", "title": "Technical Specialist, APAC IPv6 Council" }, + { "name": "Mr. Zulfadli Hasan", "title": "Network Engineer, IPv6 Forum Malaysia" }, + { "name": "Dr. Suresh Liew", "title": "Research Coordinator, APAC IPv6 Council" }, + { "name": "Mr. Mohamad Shukur", "title": "Operations Manager, IPv6 Forum Malaysia" }, + { "name": "Assoc. Prof. Dr. Angela Amphawan", "title": "Academic Advisor, APAC IPv6 Council" }, + { "name": "Mr. Azizi A. Hadi", "title": "Industry Specialist, Indosat" }, + { "name": "Prof. Dr. Abdul Rahman", "title": "Advisor, APAC IPv6 Council" } + ] + }, + "join": { + "title": "Ready to Attend the Summit?", + "description": "Register today to secure your ticket and join regional leaders in shaping the future of AI & next-generation data centers in ASEAN.", + "registerBtn": "Register Now", + "viewMembersBtn": "View Event Agenda" + } +} diff --git a/app/data/members.vi.json b/app/data/members.vi.json new file mode 100644 index 0000000..49dbc65 --- /dev/null +++ b/app/data/members.vi.json @@ -0,0 +1,103 @@ +{ + "hero": { + "eyebrow": "HỘI ĐỒNG CỦA CHÚNG TÔI", + "title": "Thành Viên", + "description": "Sức mạnh tập thể của các tổ chức toàn cầu hàng đầu thúc đẩy áp dụng IPv6 trên toàn hệ sinh thái số của ASEAN. Đây là các thành viên của Hội đồng APAC." + }, + "organizationalMembers": { + "title": "Thành Viên Tổ Chức", + "description": "Các tổ chức và cơ quan quản lý cam kết triển khai hạ tầng Internet thế hệ mới.", + "categories": { + "government": { + "title": "Chính Phủ & Cơ Quan Quản Lý", + "items": [ + { "name": "APNIC", "logo": "/assets/img/gov & forums/APNIC.png", "subtitle": "Asia-Pacific Network Information Centre" }, + { "name": "VNNIC", "logo": "/assets/img/gov & forums/VNNIC.png", "subtitle": "Vietnam Internet Network Information Center" }, + { "name": "IPv6 Forum", "logo": "/assets/img/gov & forums/IPv6 Forum.png", "subtitle": "Global IPv6 Forum" }, + { "name": "APAN", "logo": "/assets/img/gov & forums/APAN.png", "subtitle": "Asia Pacific Advanced Network" }, + { "name": "Bharat IPv6 Forum", "logo": "/assets/img/gov & forums/Bharat IPv6 Forum.jpg", "subtitle": "India IPv6 Forum" }, + { "name": "IDNIC", "logo": "/assets/img/gov & forums/IDNIC.png", "subtitle": "Indonesian Network Information Center" }, + { "name": "ISOC Kazakhstan", "logo": "/assets/img/gov & forums/ISOC Kazakhstan.png", "subtitle": "Internet Society Kazakhstan Chapter" }, + { "name": "ITU-APT", "logo": "/assets/img/gov & forums/ITU-APT.jpg", "subtitle": "ITU-APT Foundation of India" }, + { "name": "LANIC", "logo": "/assets/img/gov & forums/LANIC.jpg", "subtitle": "Laos National Internet Centre" }, + { "name": "Malawi Revenue Authority", "logo": "/assets/img/gov & forums/Malawi Revenue Authority.jpg", "subtitle": "Malawi Revenue Authority" }, + { "name": "NAv6", "logo": "/assets/img/gov & forums/NAv6.jpg", "subtitle": "National Advanced IPv6 Centre" }, + { "name": "NIDA", "logo": "/assets/img/gov & forums/NIDA.png", "subtitle": "National Institute of Development Administration" }, + { "name": "NIXI", "logo": "/assets/img/gov & forums/NIXI.png", "subtitle": "National Internet Exchange of India" }, + { "name": "TRC Sri Lanka", "logo": "/assets/img/gov & forums/TRC Sri Lanka.png", "subtitle": "Telecommunications Regulatory Commission of Sri Lanka" }, + { "name": "World Broadband Association", "logo": "/assets/img/gov & forums/World Broadband Association.png", "subtitle": "World Broadband Association" }, + { "name": "APJII", "logo": "/assets/img/gov & forums/APJII.png", "subtitle": "Indonesia Internet Service Provider Association" } + ] + }, + "universities": { + "title": "Trường Đại Học & Nghiên Cứu", + "items": [ + { "name": "APU Malaysia", "logo": "/assets/img/universities/APU Malaysia.png", "subtitle": "Asia Pacific University of Technology & Innovation" }, + { "name": "COMSATS University", "logo": "/assets/img/universities/COMSATS Uni.jpg", "subtitle": "COMSATS University Islamabad" }, + { "name": "Dr. MGR University", "logo": "/assets/img/universities/Dr. MGR University.png", "subtitle": "Dr. M.G.R. Educational and Research Institute" }, + { "name": "IEC", "logo": "/assets/img/universities/IEC.png", "subtitle": "International Education Centre" }, + { "name": "ITS", "logo": "/assets/img/universities/ITS.webp", "subtitle": "Sepuluh Nopember Institute of Technology" }, + { "name": "Keio University", "logo": "/assets/img/universities/Keio University.png", "subtitle": "Keio University" }, + { "name": "MSEC", "logo": "/assets/img/universities/MSEC.jpg", "subtitle": "Meenakshi Sundararajan Engineering College" }, + { "name": "MUST", "logo": "/assets/img/universities/MUST.jpg", "subtitle": "Malaysia University of Science and Technology" }, + { "name": "SIMS", "logo": "/assets/img/universities/SIMS.jpg", "subtitle": "Saigon Institute for Management Studies" }, + { "name": "SUST", "logo": "/assets/img/universities/SUST.jpg", "subtitle": "Shahjalal University of Science and Technology" }, + { "name": "UNSW", "logo": "/assets/img/universities/UNSW.jpg", "subtitle": "University of New South Wales" } + ] + }, + "privateSector": { + "title": "Doanh Nghiệp Tư Nhân", + "items": [ + { "name": "Agile Consultancy", "logo": "/assets/img/organizations/Agile Consultancy.jpg", "subtitle": "Agile Consultancy Pvt. Ltd." }, + { "name": "BII Group", "logo": "/assets/img/organizations/BII Group.png", "subtitle": "BII Group Holdings" }, + { "name": "Bhutan Telecom", "logo": "/assets/img/organizations/Bhutan Telecom Ltd., Bhutan.png", "subtitle": "Bhutan Telecom" }, + { "name": "CERT Tonga", "logo": "/assets/img/organizations/CERT Tonga.jpg", "subtitle": "Computer Emergency Response Team Tonga" }, + { "name": "CNLabs", "logo": "/assets/img/organizations/CNLabs.jpg", "subtitle": "CNLabs (IPv6 Ready Logo Lab)" }, + { "name": "Digital Bridge Institute", "logo": "/assets/img/organizations/Digital Bridge Institute.png", "subtitle": "Digital Bridge Institute Nigeria" }, + { "name": "Edgepoint", "logo": "/assets/img/organizations/Edgepoint.png", "subtitle": "Edgepoint Infrastructure" }, + { "name": "Hassan Solutions", "logo": "/assets/img/organizations/Hassan Solutions.png", "subtitle": "Hassan Solutions Pakistan" }, + { "name": "Huawei", "logo": "/assets/img/organizations/Huawei.png", "subtitle": "Huawei Technologies Co., Ltd." }, + { "name": "IPv6 Forum Malaysia", "logo": "/assets/img/organizations/IPv6 Forum Malaysia.png", "subtitle": "IPv6 Forum Malaysia Chapter" }, + { "name": "InfinIT ComTech", "logo": "/assets/img/organizations/InfinIT ComTech.jpg", "subtitle": "InfinIT ComTech Vietnam" }, + { "name": "MPT", "logo": "/assets/img/organizations/MPT.svg", "subtitle": "Myanma Posts and Telecommunications" }, + { "name": "Nokia", "logo": "/assets/img/organizations/NOKIA.jpg", "subtitle": "Nokia Corporation" }, + { "name": "RICHAT Partners", "logo": "/assets/img/organizations/RICHAT Partners.jpg", "subtitle": "RICHAT Partners Vietnam" }, + { "name": "SAIM Enterprises", "logo": "/assets/img/organizations/SAIM Enterprises.jpg", "subtitle": "SAIM Enterprises India" }, + { "name": "Smart Industry Malaysia", "logo": "/assets/img/organizations/Smart Industry Malaysia.jpg", "subtitle": "Smart Industry Malaysia" }, + { "name": "Subisu Nepal", "logo": "/assets/img/organizations/Subisu Nepal.png", "subtitle": "Subisu Cablenet Nepal" }, + { "name": "Tonga", "logo": "/assets/img/organizations/Tonga.png", "subtitle": "Tonga Communications Corporation" }, + { "name": "Wexa Consulting", "logo": "/assets/img/organizations/Wexa Consulting.png", "subtitle": "Wexa Consulting Malaysia" } + ] + } + } + }, + "contributingMembers": { + "title": "Thành Viên Đóng Góp", + "description": "Những cá nhân xuất sắc đã đóng góp vào sự thành công của các sáng kiến từ Hội đồng.", + "items": [ + { "name": "Prof Emeritus Dr. Sureswaran Ramadass", "title": "Chairman, APAC IPv6 Council" }, + { "name": "Dr Muhammad Asyraf Mohammad Naim", "title": "Director for Training & Consultancy, IPv6 Forum Malaysia" }, + { "name": "Ms. Vallikkannu Nagappan", "title": "Chief Secretary, APAC IPv6 Council" }, + { "name": "Mr. Hong Thang", "title": "Executive, VNNIC" }, + { "name": "Mr. Nguyen Truong Giang", "title": "Executive, VNNIC" }, + { "name": "Mr. Bayu Hanantasena", "title": "Strategic Advisor to CEO, Indosat" }, + { "name": "Saysomvang Souvannavong", "title": "Deputy Director, Laos National Internet Centre" }, + { "name": "Dr. Will Liu", "title": "Head of Europe Datacom Standard & Industry Development, Huawei" }, + { "name": "Dr. Gopinath Rao", "title": "Chair of AI Standards Task Force, MTFSB" }, + { "name": "Dr. Navaneethan C Arjuman", "title": "Global Coordinator, IPv6 Forum Logo Programme" }, + { "name": "Prof. Ts. Dr. Salman Yussof", "title": "Technical Specialist, APAC IPv6 Council" }, + { "name": "Mr. Zulfadli Hasan", "title": "Network Engineer, IPv6 Forum Malaysia" }, + { "name": "Dr. Suresh Liew", "title": "Research Coordinator, APAC IPv6 Council" }, + { "name": "Mr. Mohamad Shukur", "title": "Operations Manager, IPv6 Forum Malaysia" }, + { "name": "Assoc. Prof. Dr. Angela Amphawan", "title": "Academic Advisor, APAC IPv6 Council" }, + { "name": "Mr. Azizi A. Hadi", "title": "Industry Specialist, Indosat" }, + { "name": "Prof. Dr. Abdul Rahman", "title": "Advisor, APAC IPv6 Council" } + ] + }, + "join": { + "title": "Sẵn Sàng Tham Gia Hội Nghị?", + "description": "Đăng ký ngay hôm nay để giữ chỗ và cùng các nhà lãnh đạo khu vực định hình tương lai của AI & trung tâm dữ liệu thế hệ mới tại ASEAN.", + "registerBtn": "Đăng Ký Ngay", + "viewMembersBtn": "Xem Lịch Trình Sự Kiện" + } +} diff --git a/app/data/site.json b/app/data/site.json index 0230562..5675a79 100644 --- a/app/data/site.json +++ b/app/data/site.json @@ -5,6 +5,7 @@ "nav": [ { "label": "Home", "href": "/" }, { "label": "Gallery", "href": "/gallery" }, + { "label": "Members", "href": "/members" }, { "label": "Registration", "href": "/registration" }, { "label": "Feedback", "href": "/feedback" }, { "label": "Sponsor", "href": "/sponsor" } diff --git a/app/data/site.vi.json b/app/data/site.vi.json index 0894014..678e708 100644 --- a/app/data/site.vi.json +++ b/app/data/site.vi.json @@ -5,6 +5,7 @@ "nav": [ { "label": "Trang Chủ", "href": "/" }, { "label": "Thư Viện Ảnh", "href": "/gallery" }, + { "label": "Thành Viên", "href": "/members" }, { "label": "Đăng Ký", "href": "/registration" }, { "label": "Phản Hồi", "href": "/feedback" }, { "label": "Nhà Tài Trợ", "href": "/sponsor" } diff --git a/app/globals.css b/app/globals.css index f1dd48e..dd7f828 100644 --- a/app/globals.css +++ b/app/globals.css @@ -43,7 +43,12 @@ body { overflow-x: hidden; } -h1, h2, h3, h4, h5, h6 { +h1, +h2, +h3, +h4, +h5, +h6 { font-family: "Nasalization", system-ui, sans-serif; } @@ -107,16 +112,26 @@ textarea::placeholder { /* Partners Carousel animations */ @keyframes scroll-fwd { - 0% { transform: translateX(0); } - 100% { transform: translateX(calc(-1 * var(--set-width) - 20px)); } + 0% { + transform: translateX(0); + } + + 100% { + transform: translateX(calc(-1 * var(--set-width) - 20px)); + } } @keyframes scroll-reverse { - 0% { transform: translateX(calc(-1 * var(--set-width) - 20px)); } - 100% { transform: translateX(0); } + 0% { + transform: translateX(calc(-1 * var(--set-width) - 20px)); + } + + 100% { + transform: translateX(0); + } } .animate-scroll:hover, .animate-scroll-reverse:hover { animation-play-state: paused; -} +} \ No newline at end of file diff --git a/app/hooks/useTranslation.ts b/app/hooks/useTranslation.ts index 2e3450d..1eec1d8 100644 --- a/app/hooks/useTranslation.ts +++ b/app/hooks/useTranslation.ts @@ -14,6 +14,8 @@ import adminEn from "@/app/data/admin.json"; import adminVi from "@/app/data/admin.vi.json"; import galleryEn from "@/app/data/gallery.json"; import galleryVi from "@/app/data/gallery.vi.json"; +import membersEn from "@/app/data/members.json"; +import membersVi from "@/app/data/members.vi.json"; export function useTranslation() { const { lang } = useLanguage(); @@ -28,5 +30,6 @@ export function useTranslation() { sponsor: isVi ? sponsorVi : sponsorEn, admin: isVi ? adminVi : adminEn, gallery: isVi ? galleryVi : galleryEn, + members: isVi ? membersVi : membersEn, }; } diff --git a/public/assets/img/accreditations/QAHE.png b/public/assets/img/accreditations/QAHE.png deleted file mode 100644 index e0d2a39..0000000 Binary files a/public/assets/img/accreditations/QAHE.png and /dev/null differ diff --git a/public/assets/img/accreditations/head.png b/public/assets/img/accreditations/head.png deleted file mode 100644 index a03985a..0000000 Binary files a/public/assets/img/accreditations/head.png and /dev/null differ diff --git a/public/assets/img/accreditations/ico.png b/public/assets/img/accreditations/ico.png deleted file mode 100644 index 48f2f18..0000000 Binary files a/public/assets/img/accreditations/ico.png and /dev/null differ diff --git a/public/assets/img/accreditations/ukrlp.png b/public/assets/img/accreditations/ukrlp.png deleted file mode 100644 index 52d75a3..0000000 Binary files a/public/assets/img/accreditations/ukrlp.png and /dev/null differ diff --git a/public/assets/img/blog/OnlineMeeting.png b/public/assets/img/blog/OnlineMeeting.png deleted file mode 100644 index ff327bb..0000000 Binary files a/public/assets/img/blog/OnlineMeeting.png and /dev/null differ diff --git a/public/assets/img/blog/StudentStudying.png b/public/assets/img/blog/StudentStudying.png deleted file mode 100644 index 2a46353..0000000 Binary files a/public/assets/img/blog/StudentStudying.png and /dev/null differ diff --git a/public/assets/img/blog/UniversityCampus.png b/public/assets/img/blog/UniversityCampus.png deleted file mode 100644 index 2d1dd92..0000000 Binary files a/public/assets/img/blog/UniversityCampus.png and /dev/null differ diff --git a/public/assets/img/blog/blog-details/OnlineMeeting.png b/public/assets/img/blog/blog-details/OnlineMeeting.png deleted file mode 100644 index ff327bb..0000000 Binary files a/public/assets/img/blog/blog-details/OnlineMeeting.png and /dev/null differ diff --git a/public/assets/img/blog/blog-details/StudentStudying.png b/public/assets/img/blog/blog-details/StudentStudying.png deleted file mode 100644 index 2a46353..0000000 Binary files a/public/assets/img/blog/blog-details/StudentStudying.png and /dev/null differ diff --git a/public/assets/img/blog/blog-details/UniversityCampus.png b/public/assets/img/blog/blog-details/UniversityCampus.png deleted file mode 100644 index 03242c5..0000000 Binary files a/public/assets/img/blog/blog-details/UniversityCampus.png and /dev/null differ diff --git a/public/assets/img/gov & forums/APAN.png b/public/assets/img/gov & forums/APAN.png new file mode 100644 index 0000000..abd2ef4 Binary files /dev/null and b/public/assets/img/gov & forums/APAN.png differ diff --git a/public/assets/img/gov & forums/APJII.png b/public/assets/img/gov & forums/APJII.png new file mode 100644 index 0000000..93dbcef Binary files /dev/null and b/public/assets/img/gov & forums/APJII.png differ diff --git a/public/assets/img/gov & forums/APNIC.png b/public/assets/img/gov & forums/APNIC.png new file mode 100644 index 0000000..94c3a5f Binary files /dev/null and b/public/assets/img/gov & forums/APNIC.png differ diff --git a/public/assets/img/gov & forums/Bharat IPv6 Forum.jpg b/public/assets/img/gov & forums/Bharat IPv6 Forum.jpg new file mode 100644 index 0000000..7ae3db5 Binary files /dev/null and b/public/assets/img/gov & forums/Bharat IPv6 Forum.jpg differ diff --git a/public/assets/img/gov & forums/IDNIC.png b/public/assets/img/gov & forums/IDNIC.png new file mode 100644 index 0000000..6d42ef3 Binary files /dev/null and b/public/assets/img/gov & forums/IDNIC.png differ diff --git a/public/assets/img/gov & forums/IPv6 Forum.png b/public/assets/img/gov & forums/IPv6 Forum.png new file mode 100644 index 0000000..3f03689 Binary files /dev/null and b/public/assets/img/gov & forums/IPv6 Forum.png differ diff --git a/public/assets/img/gov & forums/ISOC Kazakhstan.png b/public/assets/img/gov & forums/ISOC Kazakhstan.png new file mode 100644 index 0000000..5287cf2 Binary files /dev/null and b/public/assets/img/gov & forums/ISOC Kazakhstan.png differ diff --git a/public/assets/img/gov & forums/ITU-APT.jpg b/public/assets/img/gov & forums/ITU-APT.jpg new file mode 100644 index 0000000..a2c0048 Binary files /dev/null and b/public/assets/img/gov & forums/ITU-APT.jpg differ diff --git a/public/assets/img/gov & forums/LANIC.jpg b/public/assets/img/gov & forums/LANIC.jpg new file mode 100644 index 0000000..2dfe524 Binary files /dev/null and b/public/assets/img/gov & forums/LANIC.jpg differ diff --git a/public/assets/img/gov & forums/Malawi Revenue Authority.jpg b/public/assets/img/gov & forums/Malawi Revenue Authority.jpg new file mode 100644 index 0000000..3f03c99 Binary files /dev/null and b/public/assets/img/gov & forums/Malawi Revenue Authority.jpg differ diff --git a/public/assets/img/gov & forums/NAv6.jpg b/public/assets/img/gov & forums/NAv6.jpg new file mode 100644 index 0000000..ac4797b Binary files /dev/null and b/public/assets/img/gov & forums/NAv6.jpg differ diff --git a/public/assets/img/gov & forums/NIDA.png b/public/assets/img/gov & forums/NIDA.png new file mode 100644 index 0000000..b36340b Binary files /dev/null and b/public/assets/img/gov & forums/NIDA.png differ diff --git a/public/assets/img/gov & forums/NIXI.png b/public/assets/img/gov & forums/NIXI.png new file mode 100644 index 0000000..816740f Binary files /dev/null and b/public/assets/img/gov & forums/NIXI.png differ diff --git a/public/assets/img/gov & forums/TRC Sri Lanka.png b/public/assets/img/gov & forums/TRC Sri Lanka.png new file mode 100644 index 0000000..9b9bf6d Binary files /dev/null and b/public/assets/img/gov & forums/TRC Sri Lanka.png differ diff --git a/public/assets/img/gov & forums/VNNIC.png b/public/assets/img/gov & forums/VNNIC.png new file mode 100644 index 0000000..1dc701a Binary files /dev/null and b/public/assets/img/gov & forums/VNNIC.png differ diff --git a/public/assets/img/gov & forums/World Broadband Association.png b/public/assets/img/gov & forums/World Broadband Association.png new file mode 100644 index 0000000..6c134ec Binary files /dev/null and b/public/assets/img/gov & forums/World Broadband Association.png differ diff --git a/public/assets/img/history/2023.png b/public/assets/img/history/2023.png deleted file mode 100644 index c6c8269..0000000 Binary files a/public/assets/img/history/2023.png and /dev/null differ diff --git a/public/assets/img/history/2024.png b/public/assets/img/history/2024.png deleted file mode 100644 index 54c73ba..0000000 Binary files a/public/assets/img/history/2024.png and /dev/null differ diff --git a/public/assets/img/history/2025.png b/public/assets/img/history/2025.png deleted file mode 100644 index 92ab1fd..0000000 Binary files a/public/assets/img/history/2025.png and /dev/null differ diff --git a/public/assets/img/history/2026.png b/public/assets/img/history/2026.png deleted file mode 100644 index 452275f..0000000 Binary files a/public/assets/img/history/2026.png and /dev/null differ diff --git a/public/assets/img/home-1/about/Vector.png b/public/assets/img/home-1/about/Vector.png deleted file mode 100644 index e69d461..0000000 Binary files a/public/assets/img/home-1/about/Vector.png and /dev/null differ diff --git a/public/assets/img/home-1/about/about-02.jpg b/public/assets/img/home-1/about/about-02.jpg deleted file mode 100644 index d9399ee..0000000 Binary files a/public/assets/img/home-1/about/about-02.jpg and /dev/null differ diff --git a/public/assets/img/home-1/about/about-1.jpg b/public/assets/img/home-1/about/about-1.jpg deleted file mode 100644 index 7e0555e..0000000 Binary files a/public/assets/img/home-1/about/about-1.jpg and /dev/null differ diff --git a/public/assets/img/home-1/about/globe.png b/public/assets/img/home-1/about/globe.png deleted file mode 100644 index f593f8d..0000000 Binary files a/public/assets/img/home-1/about/globe.png and /dev/null differ diff --git a/public/assets/img/home-1/about/plane.png b/public/assets/img/home-1/about/plane.png deleted file mode 100644 index 391ca8c..0000000 Binary files a/public/assets/img/home-1/about/plane.png and /dev/null differ diff --git a/public/assets/img/home-1/about/shape.png b/public/assets/img/home-1/about/shape.png deleted file mode 100644 index bacb7da..0000000 Binary files a/public/assets/img/home-1/about/shape.png and /dev/null differ diff --git a/public/assets/img/home-1/brand/01.png b/public/assets/img/home-1/brand/01.png deleted file mode 100644 index e7dacce..0000000 Binary files a/public/assets/img/home-1/brand/01.png and /dev/null differ diff --git a/public/assets/img/home-1/brand/02.png b/public/assets/img/home-1/brand/02.png deleted file mode 100644 index 1e7389a..0000000 Binary files a/public/assets/img/home-1/brand/02.png and /dev/null differ diff --git a/public/assets/img/home-1/brand/03.png b/public/assets/img/home-1/brand/03.png deleted file mode 100644 index 67b7e54..0000000 Binary files a/public/assets/img/home-1/brand/03.png and /dev/null differ diff --git a/public/assets/img/home-1/brand/04.png b/public/assets/img/home-1/brand/04.png deleted file mode 100644 index 2c92108..0000000 Binary files a/public/assets/img/home-1/brand/04.png and /dev/null differ diff --git a/public/assets/img/home-1/brand/05.png b/public/assets/img/home-1/brand/05.png deleted file mode 100644 index 4869273..0000000 Binary files a/public/assets/img/home-1/brand/05.png and /dev/null differ diff --git a/public/assets/img/home-1/feature/Vector.png b/public/assets/img/home-1/feature/Vector.png deleted file mode 100644 index 27a6379..0000000 Binary files a/public/assets/img/home-1/feature/Vector.png and /dev/null differ diff --git a/public/assets/img/home-1/feature/bg-2.jpg b/public/assets/img/home-1/feature/bg-2.jpg deleted file mode 100644 index b9ce42b..0000000 Binary files a/public/assets/img/home-1/feature/bg-2.jpg and /dev/null differ diff --git a/public/assets/img/home-1/feature/bg.png b/public/assets/img/home-1/feature/bg.png deleted file mode 100644 index 4e91bad..0000000 Binary files a/public/assets/img/home-1/feature/bg.png and /dev/null differ diff --git a/public/assets/img/home-1/feature/icon-1.png b/public/assets/img/home-1/feature/icon-1.png deleted file mode 100644 index 0d2e628..0000000 Binary files a/public/assets/img/home-1/feature/icon-1.png and /dev/null differ diff --git a/public/assets/img/home-1/feature/icon-2.png b/public/assets/img/home-1/feature/icon-2.png deleted file mode 100644 index 734f031..0000000 Binary files a/public/assets/img/home-1/feature/icon-2.png and /dev/null differ diff --git a/public/assets/img/home-1/feature/icon-3.png b/public/assets/img/home-1/feature/icon-3.png deleted file mode 100644 index ece75fb..0000000 Binary files a/public/assets/img/home-1/feature/icon-3.png and /dev/null differ diff --git a/public/assets/img/home-1/feature/icon-4.png b/public/assets/img/home-1/feature/icon-4.png deleted file mode 100644 index 78d4a9b..0000000 Binary files a/public/assets/img/home-1/feature/icon-4.png and /dev/null differ diff --git a/public/assets/img/home-1/feature/shape-2.png b/public/assets/img/home-1/feature/shape-2.png deleted file mode 100644 index 0b5853a..0000000 Binary files a/public/assets/img/home-1/feature/shape-2.png and /dev/null differ diff --git a/public/assets/img/home-1/feature/shape.png b/public/assets/img/home-1/feature/shape.png deleted file mode 100644 index 9e644e0..0000000 Binary files a/public/assets/img/home-1/feature/shape.png and /dev/null differ diff --git a/public/assets/img/home-1/feature/text-2.png b/public/assets/img/home-1/feature/text-2.png deleted file mode 100644 index 4bb0dec..0000000 Binary files a/public/assets/img/home-1/feature/text-2.png and /dev/null differ diff --git a/public/assets/img/home-1/feature/text.png b/public/assets/img/home-1/feature/text.png deleted file mode 100644 index 9708b37..0000000 Binary files a/public/assets/img/home-1/feature/text.png and /dev/null differ diff --git a/public/assets/img/home-1/feature/video-bg.jpg b/public/assets/img/home-1/feature/video-bg.jpg deleted file mode 100644 index da3fc82..0000000 Binary files a/public/assets/img/home-1/feature/video-bg.jpg and /dev/null differ diff --git a/public/assets/img/home-1/footer-bg.jpg b/public/assets/img/home-1/footer-bg.jpg deleted file mode 100644 index 1c8a33b..0000000 Binary files a/public/assets/img/home-1/footer-bg.jpg and /dev/null differ diff --git a/public/assets/img/home-1/hero/bg.jpg b/public/assets/img/home-1/hero/bg.jpg deleted file mode 100644 index df73c05..0000000 Binary files a/public/assets/img/home-1/hero/bg.jpg and /dev/null differ diff --git a/public/assets/img/home-1/hero/man.png b/public/assets/img/home-1/hero/man.png deleted file mode 100644 index fa79041..0000000 Binary files a/public/assets/img/home-1/hero/man.png and /dev/null differ diff --git a/public/assets/img/home-1/hero/sape-2.png b/public/assets/img/home-1/hero/sape-2.png deleted file mode 100644 index b329ac0..0000000 Binary files a/public/assets/img/home-1/hero/sape-2.png and /dev/null differ diff --git a/public/assets/img/home-1/hero/shape-3.png b/public/assets/img/home-1/hero/shape-3.png deleted file mode 100644 index 1d435cd..0000000 Binary files a/public/assets/img/home-1/hero/shape-3.png and /dev/null differ diff --git a/public/assets/img/home-1/hero/shape-4.png b/public/assets/img/home-1/hero/shape-4.png deleted file mode 100644 index 5dbc40e..0000000 Binary files a/public/assets/img/home-1/hero/shape-4.png and /dev/null differ diff --git a/public/assets/img/home-1/hero/shape.png b/public/assets/img/home-1/hero/shape.png deleted file mode 100644 index a15f99c..0000000 Binary files a/public/assets/img/home-1/hero/shape.png and /dev/null differ diff --git a/public/assets/img/home-1/hover-bg.jpg b/public/assets/img/home-1/hover-bg.jpg deleted file mode 100644 index cd5410b..0000000 Binary files a/public/assets/img/home-1/hover-bg.jpg and /dev/null differ diff --git a/public/assets/img/home-1/icon/01.svg b/public/assets/img/home-1/icon/01.svg deleted file mode 100644 index 87ac71c..0000000 --- a/public/assets/img/home-1/icon/01.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/public/assets/img/home-1/news/client.png b/public/assets/img/home-1/news/client.png deleted file mode 100644 index 398078e..0000000 Binary files a/public/assets/img/home-1/news/client.png and /dev/null differ diff --git a/public/assets/img/home-1/news/news-1.jpg b/public/assets/img/home-1/news/news-1.jpg deleted file mode 100644 index 199f457..0000000 Binary files a/public/assets/img/home-1/news/news-1.jpg and /dev/null differ diff --git a/public/assets/img/home-1/news/news-10.jpg b/public/assets/img/home-1/news/news-10.jpg deleted file mode 100644 index 199f457..0000000 Binary files a/public/assets/img/home-1/news/news-10.jpg and /dev/null differ diff --git a/public/assets/img/home-1/news/news-11.jpg b/public/assets/img/home-1/news/news-11.jpg deleted file mode 100644 index e49c218..0000000 Binary files a/public/assets/img/home-1/news/news-11.jpg and /dev/null differ diff --git a/public/assets/img/home-1/news/news-12.jpg b/public/assets/img/home-1/news/news-12.jpg deleted file mode 100644 index 199f457..0000000 Binary files a/public/assets/img/home-1/news/news-12.jpg and /dev/null differ diff --git a/public/assets/img/home-1/news/news-13.jpg b/public/assets/img/home-1/news/news-13.jpg deleted file mode 100644 index 850df16..0000000 Binary files a/public/assets/img/home-1/news/news-13.jpg and /dev/null differ diff --git a/public/assets/img/home-1/news/news-14.jpg b/public/assets/img/home-1/news/news-14.jpg deleted file mode 100644 index 850df16..0000000 Binary files a/public/assets/img/home-1/news/news-14.jpg and /dev/null differ diff --git a/public/assets/img/home-1/news/news-15.jpg b/public/assets/img/home-1/news/news-15.jpg deleted file mode 100644 index 850df16..0000000 Binary files a/public/assets/img/home-1/news/news-15.jpg and /dev/null differ diff --git a/public/assets/img/home-1/news/news-2.jpg b/public/assets/img/home-1/news/news-2.jpg deleted file mode 100644 index 199f457..0000000 Binary files a/public/assets/img/home-1/news/news-2.jpg and /dev/null differ diff --git a/public/assets/img/home-1/news/news-3.jpg b/public/assets/img/home-1/news/news-3.jpg deleted file mode 100644 index 199f457..0000000 Binary files a/public/assets/img/home-1/news/news-3.jpg and /dev/null differ diff --git a/public/assets/img/home-1/news/news-4.jpg b/public/assets/img/home-1/news/news-4.jpg deleted file mode 100644 index 199f457..0000000 Binary files a/public/assets/img/home-1/news/news-4.jpg and /dev/null differ diff --git a/public/assets/img/home-1/news/news-5.jpg b/public/assets/img/home-1/news/news-5.jpg deleted file mode 100644 index e49c218..0000000 Binary files a/public/assets/img/home-1/news/news-5.jpg and /dev/null differ diff --git a/public/assets/img/home-1/news/news-6.jpg b/public/assets/img/home-1/news/news-6.jpg deleted file mode 100644 index 199f457..0000000 Binary files a/public/assets/img/home-1/news/news-6.jpg and /dev/null differ diff --git a/public/assets/img/home-1/news/news-7.jpg b/public/assets/img/home-1/news/news-7.jpg deleted file mode 100644 index 199f457..0000000 Binary files a/public/assets/img/home-1/news/news-7.jpg and /dev/null differ diff --git a/public/assets/img/home-1/news/news-8.jpg b/public/assets/img/home-1/news/news-8.jpg deleted file mode 100644 index e49c218..0000000 Binary files a/public/assets/img/home-1/news/news-8.jpg and /dev/null differ diff --git a/public/assets/img/home-1/news/news-9.jpg b/public/assets/img/home-1/news/news-9.jpg deleted file mode 100644 index 199f457..0000000 Binary files a/public/assets/img/home-1/news/news-9.jpg and /dev/null differ diff --git a/public/assets/img/home-1/testimonial/01.jpg b/public/assets/img/home-1/testimonial/01.jpg deleted file mode 100644 index c5d6375..0000000 Binary files a/public/assets/img/home-1/testimonial/01.jpg and /dev/null differ diff --git a/public/assets/img/home-1/testimonial/client-2.png b/public/assets/img/home-1/testimonial/client-2.png deleted file mode 100644 index acf5ec7..0000000 Binary files a/public/assets/img/home-1/testimonial/client-2.png and /dev/null differ diff --git a/public/assets/img/home-1/testimonial/client.png b/public/assets/img/home-1/testimonial/client.png deleted file mode 100644 index acf5ec7..0000000 Binary files a/public/assets/img/home-1/testimonial/client.png and /dev/null differ diff --git a/public/assets/img/home-2/Vector.png b/public/assets/img/home-2/Vector.png deleted file mode 100644 index 77e135a..0000000 Binary files a/public/assets/img/home-2/Vector.png and /dev/null differ diff --git a/public/assets/img/home-2/bg.jpg b/public/assets/img/home-2/bg.jpg deleted file mode 100644 index f96b833..0000000 Binary files a/public/assets/img/home-2/bg.jpg and /dev/null differ diff --git a/public/assets/img/home-2/feature/01.png b/public/assets/img/home-2/feature/01.png deleted file mode 100644 index 66e8054..0000000 Binary files a/public/assets/img/home-2/feature/01.png and /dev/null differ diff --git a/public/assets/img/home-2/feature/02.png b/public/assets/img/home-2/feature/02.png deleted file mode 100644 index cc69b4b..0000000 Binary files a/public/assets/img/home-2/feature/02.png and /dev/null differ diff --git a/public/assets/img/home-2/feature/03.png b/public/assets/img/home-2/feature/03.png deleted file mode 100644 index f41ae69..0000000 Binary files a/public/assets/img/home-2/feature/03.png and /dev/null differ diff --git a/public/assets/img/home-2/feature/Icon.png b/public/assets/img/home-2/feature/Icon.png deleted file mode 100644 index 6457445..0000000 Binary files a/public/assets/img/home-2/feature/Icon.png and /dev/null differ diff --git a/public/assets/img/home-2/feature/Years.png b/public/assets/img/home-2/feature/Years.png deleted file mode 100644 index 6d17c88..0000000 Binary files a/public/assets/img/home-2/feature/Years.png and /dev/null differ diff --git a/public/assets/img/home-2/feature/bg-shape.png b/public/assets/img/home-2/feature/bg-shape.png deleted file mode 100644 index b30ddb9..0000000 Binary files a/public/assets/img/home-2/feature/bg-shape.png and /dev/null differ diff --git a/public/assets/img/home-2/hero/hero-bg.jpg b/public/assets/img/home-2/hero/hero-bg.jpg deleted file mode 100644 index b07f499..0000000 Binary files a/public/assets/img/home-2/hero/hero-bg.jpg and /dev/null differ diff --git a/public/assets/img/home-2/hero/hero.png b/public/assets/img/home-2/hero/hero.png deleted file mode 100644 index 31b942f..0000000 Binary files a/public/assets/img/home-2/hero/hero.png and /dev/null differ diff --git a/public/assets/img/home-2/hero/shape.png b/public/assets/img/home-2/hero/shape.png deleted file mode 100644 index ab0dfe5..0000000 Binary files a/public/assets/img/home-2/hero/shape.png and /dev/null differ diff --git a/public/assets/img/home-2/icon/01.png b/public/assets/img/home-2/icon/01.png deleted file mode 100644 index b8fd101..0000000 Binary files a/public/assets/img/home-2/icon/01.png and /dev/null differ diff --git a/public/assets/img/home-2/icon/02.svg b/public/assets/img/home-2/icon/02.svg deleted file mode 100644 index 07c9bbc..0000000 --- a/public/assets/img/home-2/icon/02.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/public/assets/img/home-2/news/01.jpg b/public/assets/img/home-2/news/01.jpg deleted file mode 100644 index f2df409..0000000 Binary files a/public/assets/img/home-2/news/01.jpg and /dev/null differ diff --git a/public/assets/img/home-2/news/02.jpg b/public/assets/img/home-2/news/02.jpg deleted file mode 100644 index f2df409..0000000 Binary files a/public/assets/img/home-2/news/02.jpg and /dev/null differ diff --git a/public/assets/img/home-2/news/03.jpg b/public/assets/img/home-2/news/03.jpg deleted file mode 100644 index f2df409..0000000 Binary files a/public/assets/img/home-2/news/03.jpg and /dev/null differ diff --git a/public/assets/img/home-2/service.jpg b/public/assets/img/home-2/service.jpg deleted file mode 100644 index cc88fc0..0000000 Binary files a/public/assets/img/home-2/service.jpg and /dev/null differ diff --git a/public/assets/img/home-2/testimonial/01.jpg b/public/assets/img/home-2/testimonial/01.jpg deleted file mode 100644 index d3c1e79..0000000 Binary files a/public/assets/img/home-2/testimonial/01.jpg and /dev/null differ diff --git a/public/assets/img/home-2/testimonial/client-1.png b/public/assets/img/home-2/testimonial/client-1.png deleted file mode 100644 index 200b888..0000000 Binary files a/public/assets/img/home-2/testimonial/client-1.png and /dev/null differ diff --git a/public/assets/img/home-2/testimonial/client-2.png b/public/assets/img/home-2/testimonial/client-2.png deleted file mode 100644 index 17b3333..0000000 Binary files a/public/assets/img/home-2/testimonial/client-2.png and /dev/null differ diff --git a/public/assets/img/home-2/testimonial/client-3.jpg b/public/assets/img/home-2/testimonial/client-3.jpg deleted file mode 100644 index 17b3333..0000000 Binary files a/public/assets/img/home-2/testimonial/client-3.jpg and /dev/null differ diff --git a/public/assets/img/home-2/testimonial/client-4.jpg b/public/assets/img/home-2/testimonial/client-4.jpg deleted file mode 100644 index 17b3333..0000000 Binary files a/public/assets/img/home-2/testimonial/client-4.jpg and /dev/null differ diff --git a/public/assets/img/home-2/visa/01.png b/public/assets/img/home-2/visa/01.png deleted file mode 100644 index 34b3ff3..0000000 Binary files a/public/assets/img/home-2/visa/01.png and /dev/null differ diff --git a/public/assets/img/home-2/visa/02.png b/public/assets/img/home-2/visa/02.png deleted file mode 100644 index 754622a..0000000 Binary files a/public/assets/img/home-2/visa/02.png and /dev/null differ diff --git a/public/assets/img/home-2/visa/03.png b/public/assets/img/home-2/visa/03.png deleted file mode 100644 index e7a0021..0000000 Binary files a/public/assets/img/home-2/visa/03.png and /dev/null differ diff --git a/public/assets/img/home-2/visa/04.png b/public/assets/img/home-2/visa/04.png deleted file mode 100644 index 6cd5198..0000000 Binary files a/public/assets/img/home-2/visa/04.png and /dev/null differ diff --git a/public/assets/img/home-2/visa/05.png b/public/assets/img/home-2/visa/05.png deleted file mode 100644 index 9b2c39a..0000000 Binary files a/public/assets/img/home-2/visa/05.png and /dev/null differ diff --git a/public/assets/img/home-2/visa/06.png b/public/assets/img/home-2/visa/06.png deleted file mode 100644 index 867726d..0000000 Binary files a/public/assets/img/home-2/visa/06.png and /dev/null differ diff --git a/public/assets/img/home-2/visa/07.png b/public/assets/img/home-2/visa/07.png deleted file mode 100644 index 7c1fb81..0000000 Binary files a/public/assets/img/home-2/visa/07.png and /dev/null differ diff --git a/public/assets/img/home-2/visa/08.png b/public/assets/img/home-2/visa/08.png deleted file mode 100644 index 0c88078..0000000 Binary files a/public/assets/img/home-2/visa/08.png and /dev/null differ diff --git a/public/assets/img/home-2/visa/09.png b/public/assets/img/home-2/visa/09.png deleted file mode 100644 index 716ec4f..0000000 Binary files a/public/assets/img/home-2/visa/09.png and /dev/null differ diff --git a/public/assets/img/home-2/visa/10.png b/public/assets/img/home-2/visa/10.png deleted file mode 100644 index 4669765..0000000 Binary files a/public/assets/img/home-2/visa/10.png and /dev/null differ diff --git a/public/assets/img/home-2/visa/11.png b/public/assets/img/home-2/visa/11.png deleted file mode 100644 index 01a444a..0000000 Binary files a/public/assets/img/home-2/visa/11.png and /dev/null differ diff --git a/public/assets/img/home-2/visa/12.png b/public/assets/img/home-2/visa/12.png deleted file mode 100644 index 6a8a5a7..0000000 Binary files a/public/assets/img/home-2/visa/12.png and /dev/null differ diff --git a/public/assets/img/home-2/visa/13.png b/public/assets/img/home-2/visa/13.png deleted file mode 100644 index d93066c..0000000 Binary files a/public/assets/img/home-2/visa/13.png and /dev/null differ diff --git a/public/assets/img/home-2/visa/14.png b/public/assets/img/home-2/visa/14.png deleted file mode 100644 index c5291bc..0000000 Binary files a/public/assets/img/home-2/visa/14.png and /dev/null differ diff --git a/public/assets/img/home-2/visa/15.png b/public/assets/img/home-2/visa/15.png deleted file mode 100644 index 348261c..0000000 Binary files a/public/assets/img/home-2/visa/15.png and /dev/null differ diff --git a/public/assets/img/home-2/visa/16.png b/public/assets/img/home-2/visa/16.png deleted file mode 100644 index 1dbad29..0000000 Binary files a/public/assets/img/home-2/visa/16.png and /dev/null differ diff --git a/public/assets/img/home-2/visa/17.png b/public/assets/img/home-2/visa/17.png deleted file mode 100644 index 33f8426..0000000 Binary files a/public/assets/img/home-2/visa/17.png and /dev/null differ diff --git a/public/assets/img/home-2/visa/18.png b/public/assets/img/home-2/visa/18.png deleted file mode 100644 index 9c602dc..0000000 Binary files a/public/assets/img/home-2/visa/18.png and /dev/null differ diff --git a/public/assets/img/home-3/about/01.png b/public/assets/img/home-3/about/01.png deleted file mode 100644 index ef645f8..0000000 Binary files a/public/assets/img/home-3/about/01.png and /dev/null differ diff --git a/public/assets/img/home-3/about/bg.jpg b/public/assets/img/home-3/about/bg.jpg deleted file mode 100644 index 8a85f19..0000000 Binary files a/public/assets/img/home-3/about/bg.jpg and /dev/null differ diff --git a/public/assets/img/home-3/choose-us/01.jpg b/public/assets/img/home-3/choose-us/01.jpg deleted file mode 100644 index ef9bfa0..0000000 Binary files a/public/assets/img/home-3/choose-us/01.jpg and /dev/null differ diff --git a/public/assets/img/home-3/choose-us/02.jpg b/public/assets/img/home-3/choose-us/02.jpg deleted file mode 100644 index ef9bfa0..0000000 Binary files a/public/assets/img/home-3/choose-us/02.jpg and /dev/null differ diff --git a/public/assets/img/home-3/choose-us/03.jpg b/public/assets/img/home-3/choose-us/03.jpg deleted file mode 100644 index 7646e03..0000000 Binary files a/public/assets/img/home-3/choose-us/03.jpg and /dev/null differ diff --git a/public/assets/img/home-3/choose-us/04.jpg b/public/assets/img/home-3/choose-us/04.jpg deleted file mode 100644 index ef9bfa0..0000000 Binary files a/public/assets/img/home-3/choose-us/04.jpg and /dev/null differ diff --git a/public/assets/img/home-3/choose-us/05.jpg b/public/assets/img/home-3/choose-us/05.jpg deleted file mode 100644 index ef9bfa0..0000000 Binary files a/public/assets/img/home-3/choose-us/05.jpg and /dev/null differ diff --git a/public/assets/img/home-3/choose-us/06.png b/public/assets/img/home-3/choose-us/06.png deleted file mode 100644 index 82a78b1..0000000 Binary files a/public/assets/img/home-3/choose-us/06.png and /dev/null differ diff --git a/public/assets/img/home-3/choose-us/07.png b/public/assets/img/home-3/choose-us/07.png deleted file mode 100644 index c87c92d..0000000 Binary files a/public/assets/img/home-3/choose-us/07.png and /dev/null differ diff --git a/public/assets/img/home-3/choose-us/bg.png b/public/assets/img/home-3/choose-us/bg.png deleted file mode 100644 index 0040077..0000000 Binary files a/public/assets/img/home-3/choose-us/bg.png and /dev/null differ diff --git a/public/assets/img/home-3/choose-us/icon-1.png b/public/assets/img/home-3/choose-us/icon-1.png deleted file mode 100644 index b18c291..0000000 Binary files a/public/assets/img/home-3/choose-us/icon-1.png and /dev/null differ diff --git a/public/assets/img/home-3/choose-us/icon-2.png b/public/assets/img/home-3/choose-us/icon-2.png deleted file mode 100644 index dccc5f0..0000000 Binary files a/public/assets/img/home-3/choose-us/icon-2.png and /dev/null differ diff --git a/public/assets/img/home-3/choose-us/icon-3.png b/public/assets/img/home-3/choose-us/icon-3.png deleted file mode 100644 index f58d2b1..0000000 Binary files a/public/assets/img/home-3/choose-us/icon-3.png and /dev/null differ diff --git a/public/assets/img/home-3/choose-us/pricing-bg.jpg b/public/assets/img/home-3/choose-us/pricing-bg.jpg deleted file mode 100644 index ca7562d..0000000 Binary files a/public/assets/img/home-3/choose-us/pricing-bg.jpg and /dev/null differ diff --git a/public/assets/img/home-3/footer.jpg b/public/assets/img/home-3/footer.jpg deleted file mode 100644 index 0897e64..0000000 Binary files a/public/assets/img/home-3/footer.jpg and /dev/null differ diff --git a/public/assets/img/home-3/hero/bg.jpg b/public/assets/img/home-3/hero/bg.jpg deleted file mode 100644 index 7450ff1..0000000 Binary files a/public/assets/img/home-3/hero/bg.jpg and /dev/null differ diff --git a/public/assets/img/home-3/hero/flag.png b/public/assets/img/home-3/hero/flag.png deleted file mode 100644 index fd39efd..0000000 Binary files a/public/assets/img/home-3/hero/flag.png and /dev/null differ diff --git a/public/assets/img/home-3/hero/man.png b/public/assets/img/home-3/hero/man.png deleted file mode 100644 index 722638d..0000000 Binary files a/public/assets/img/home-3/hero/man.png and /dev/null differ diff --git a/public/assets/img/home-3/news/01.jpg b/public/assets/img/home-3/news/01.jpg deleted file mode 100644 index 1b47583..0000000 Binary files a/public/assets/img/home-3/news/01.jpg and /dev/null differ diff --git a/public/assets/img/home-3/news/02.jpg b/public/assets/img/home-3/news/02.jpg deleted file mode 100644 index 1b47583..0000000 Binary files a/public/assets/img/home-3/news/02.jpg and /dev/null differ diff --git a/public/assets/img/home-3/news/03.jpg b/public/assets/img/home-3/news/03.jpg deleted file mode 100644 index 1b47583..0000000 Binary files a/public/assets/img/home-3/news/03.jpg and /dev/null differ diff --git a/public/assets/img/home-3/news/04.jpg b/public/assets/img/home-3/news/04.jpg deleted file mode 100644 index 1b47583..0000000 Binary files a/public/assets/img/home-3/news/04.jpg and /dev/null differ diff --git a/public/assets/img/home-3/news/client.png b/public/assets/img/home-3/news/client.png deleted file mode 100644 index 398078e..0000000 Binary files a/public/assets/img/home-3/news/client.png and /dev/null differ diff --git a/public/assets/img/home-3/service/01.jpg b/public/assets/img/home-3/service/01.jpg deleted file mode 100644 index b0e2512..0000000 Binary files a/public/assets/img/home-3/service/01.jpg and /dev/null differ diff --git a/public/assets/img/home-3/service/02.jpg b/public/assets/img/home-3/service/02.jpg deleted file mode 100644 index b0e2512..0000000 Binary files a/public/assets/img/home-3/service/02.jpg and /dev/null differ diff --git a/public/assets/img/home-3/service/03.jpg b/public/assets/img/home-3/service/03.jpg deleted file mode 100644 index b0e2512..0000000 Binary files a/public/assets/img/home-3/service/03.jpg and /dev/null differ diff --git a/public/assets/img/home-3/service/04.jpg b/public/assets/img/home-3/service/04.jpg deleted file mode 100644 index b0e2512..0000000 Binary files a/public/assets/img/home-3/service/04.jpg and /dev/null differ diff --git a/public/assets/img/home-3/test-thumb.jpg b/public/assets/img/home-3/test-thumb.jpg deleted file mode 100644 index 3dc5da5..0000000 Binary files a/public/assets/img/home-3/test-thumb.jpg and /dev/null differ diff --git a/public/assets/img/home/pic1.png b/public/assets/img/home/pic1.png deleted file mode 100644 index b09ec3c..0000000 Binary files a/public/assets/img/home/pic1.png and /dev/null differ diff --git a/public/assets/img/home/pic2.png b/public/assets/img/home/pic2.png deleted file mode 100644 index e7958c9..0000000 Binary files a/public/assets/img/home/pic2.png and /dev/null differ diff --git a/public/assets/img/inner-page/404.png b/public/assets/img/inner-page/404.png deleted file mode 100644 index f7c61d3..0000000 Binary files a/public/assets/img/inner-page/404.png and /dev/null differ diff --git a/public/assets/img/inner-page/breadcrumb.jpg b/public/assets/img/inner-page/breadcrumb.jpg deleted file mode 100644 index a6d73a3..0000000 Binary files a/public/assets/img/inner-page/breadcrumb.jpg and /dev/null differ diff --git a/public/assets/img/inner-page/country-details/01.png b/public/assets/img/inner-page/country-details/01.png deleted file mode 100644 index cb8e5e7..0000000 Binary files a/public/assets/img/inner-page/country-details/01.png and /dev/null differ diff --git a/public/assets/img/inner-page/country-details/02.png b/public/assets/img/inner-page/country-details/02.png deleted file mode 100644 index bbb0006..0000000 Binary files a/public/assets/img/inner-page/country-details/02.png and /dev/null differ diff --git a/public/assets/img/inner-page/country-details/03.png b/public/assets/img/inner-page/country-details/03.png deleted file mode 100644 index 191ca85..0000000 Binary files a/public/assets/img/inner-page/country-details/03.png and /dev/null differ diff --git a/public/assets/img/inner-page/country-details/04.png b/public/assets/img/inner-page/country-details/04.png deleted file mode 100644 index 2e472e5..0000000 Binary files a/public/assets/img/inner-page/country-details/04.png and /dev/null differ diff --git a/public/assets/img/inner-page/country-details/05.png b/public/assets/img/inner-page/country-details/05.png deleted file mode 100644 index 3ac26ae..0000000 Binary files a/public/assets/img/inner-page/country-details/05.png and /dev/null differ diff --git a/public/assets/img/inner-page/country-details/06.png b/public/assets/img/inner-page/country-details/06.png deleted file mode 100644 index a78fccc..0000000 Binary files a/public/assets/img/inner-page/country-details/06.png and /dev/null differ diff --git a/public/assets/img/inner-page/country-details/07.png b/public/assets/img/inner-page/country-details/07.png deleted file mode 100644 index 9c71239..0000000 Binary files a/public/assets/img/inner-page/country-details/07.png and /dev/null differ diff --git a/public/assets/img/inner-page/country-details/08.png b/public/assets/img/inner-page/country-details/08.png deleted file mode 100644 index 8c9da65..0000000 Binary files a/public/assets/img/inner-page/country-details/08.png and /dev/null differ diff --git a/public/assets/img/inner-page/country-details/bg.jpg b/public/assets/img/inner-page/country-details/bg.jpg deleted file mode 100644 index be32e48..0000000 Binary files a/public/assets/img/inner-page/country-details/bg.jpg and /dev/null differ diff --git a/public/assets/img/inner-page/country-details/details-1.jpg b/public/assets/img/inner-page/country-details/details-1.jpg deleted file mode 100644 index 079bb13..0000000 Binary files a/public/assets/img/inner-page/country-details/details-1.jpg and /dev/null differ diff --git a/public/assets/img/inner-page/country-details/details-2.jpg b/public/assets/img/inner-page/country-details/details-2.jpg deleted file mode 100644 index cae3db5..0000000 Binary files a/public/assets/img/inner-page/country-details/details-2.jpg and /dev/null differ diff --git a/public/assets/img/inner-page/country-details/details-3.png b/public/assets/img/inner-page/country-details/details-3.png deleted file mode 100644 index cae3db5..0000000 Binary files a/public/assets/img/inner-page/country-details/details-3.png and /dev/null differ diff --git a/public/assets/img/inner-page/intro.jpg b/public/assets/img/inner-page/intro.jpg deleted file mode 100644 index 2540cd4..0000000 Binary files a/public/assets/img/inner-page/intro.jpg and /dev/null differ diff --git a/public/assets/img/inner-page/news-details/comment-1.png b/public/assets/img/inner-page/news-details/comment-1.png deleted file mode 100644 index e126c86..0000000 Binary files a/public/assets/img/inner-page/news-details/comment-1.png and /dev/null differ diff --git a/public/assets/img/inner-page/news-details/comment-2.png b/public/assets/img/inner-page/news-details/comment-2.png deleted file mode 100644 index e126c86..0000000 Binary files a/public/assets/img/inner-page/news-details/comment-2.png and /dev/null differ diff --git a/public/assets/img/inner-page/news-details/comment-3.png b/public/assets/img/inner-page/news-details/comment-3.png deleted file mode 100644 index e126c86..0000000 Binary files a/public/assets/img/inner-page/news-details/comment-3.png and /dev/null differ diff --git a/public/assets/img/inner-page/news-details/details-1.jpg b/public/assets/img/inner-page/news-details/details-1.jpg deleted file mode 100644 index 850df16..0000000 Binary files a/public/assets/img/inner-page/news-details/details-1.jpg and /dev/null differ diff --git a/public/assets/img/inner-page/news-details/details-2.jpg b/public/assets/img/inner-page/news-details/details-2.jpg deleted file mode 100644 index de42f5d..0000000 Binary files a/public/assets/img/inner-page/news-details/details-2.jpg and /dev/null differ diff --git a/public/assets/img/inner-page/news-details/details-3.jpg b/public/assets/img/inner-page/news-details/details-3.jpg deleted file mode 100644 index de42f5d..0000000 Binary files a/public/assets/img/inner-page/news-details/details-3.jpg and /dev/null differ diff --git a/public/assets/img/inner-page/news-details/post-1.jpg b/public/assets/img/inner-page/news-details/post-1.jpg deleted file mode 100644 index 07b738e..0000000 Binary files a/public/assets/img/inner-page/news-details/post-1.jpg and /dev/null differ diff --git a/public/assets/img/inner-page/news-details/post-2.jpg b/public/assets/img/inner-page/news-details/post-2.jpg deleted file mode 100644 index 07b738e..0000000 Binary files a/public/assets/img/inner-page/news-details/post-2.jpg and /dev/null differ diff --git a/public/assets/img/inner-page/news-details/post-3.jpg b/public/assets/img/inner-page/news-details/post-3.jpg deleted file mode 100644 index 07b738e..0000000 Binary files a/public/assets/img/inner-page/news-details/post-3.jpg and /dev/null differ diff --git a/public/assets/img/inner-page/service-details/details-1.jpg b/public/assets/img/inner-page/service-details/details-1.jpg deleted file mode 100644 index fb9d1ba..0000000 Binary files a/public/assets/img/inner-page/service-details/details-1.jpg and /dev/null differ diff --git a/public/assets/img/inner-page/service-details/details-2.jpg b/public/assets/img/inner-page/service-details/details-2.jpg deleted file mode 100644 index 1ad2590..0000000 Binary files a/public/assets/img/inner-page/service-details/details-2.jpg and /dev/null differ diff --git a/public/assets/img/inner-page/service-details/details-3.jpg b/public/assets/img/inner-page/service-details/details-3.jpg deleted file mode 100644 index a17639f..0000000 Binary files a/public/assets/img/inner-page/service-details/details-3.jpg and /dev/null differ diff --git a/public/assets/img/inner-page/shape.png b/public/assets/img/inner-page/shape.png deleted file mode 100644 index 6527cf6..0000000 Binary files a/public/assets/img/inner-page/shape.png and /dev/null differ diff --git a/public/assets/img/logo/Logo_HaiLearning.jpg b/public/assets/img/logo/Logo_HaiLearning.jpg deleted file mode 100644 index 7014168..0000000 Binary files a/public/assets/img/logo/Logo_HaiLearning.jpg and /dev/null differ diff --git a/public/assets/img/logo/black-logo.svg b/public/assets/img/logo/black-logo.svg deleted file mode 100644 index ec35168..0000000 --- a/public/assets/img/logo/black-logo.svg +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/public/assets/img/logo/logo.jpg b/public/assets/img/logo/logo.jpg deleted file mode 100644 index 23babee..0000000 Binary files a/public/assets/img/logo/logo.jpg and /dev/null differ diff --git a/public/assets/img/logo/white-logo.svg b/public/assets/img/logo/white-logo.svg deleted file mode 100644 index 486d3ee..0000000 --- a/public/assets/img/logo/white-logo.svg +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/public/assets/img/organizations/Agile Consultancy.jpg b/public/assets/img/organizations/Agile Consultancy.jpg new file mode 100644 index 0000000..3bb4d5c Binary files /dev/null and b/public/assets/img/organizations/Agile Consultancy.jpg differ diff --git a/public/assets/img/organizations/BII Group.png b/public/assets/img/organizations/BII Group.png new file mode 100644 index 0000000..9963542 Binary files /dev/null and b/public/assets/img/organizations/BII Group.png differ diff --git a/public/assets/img/organizations/Bhutan Telecom Ltd., Bhutan.png b/public/assets/img/organizations/Bhutan Telecom Ltd., Bhutan.png new file mode 100644 index 0000000..155c376 Binary files /dev/null and b/public/assets/img/organizations/Bhutan Telecom Ltd., Bhutan.png differ diff --git a/public/assets/img/organizations/CERT Tonga.jpg b/public/assets/img/organizations/CERT Tonga.jpg new file mode 100644 index 0000000..0e66e76 Binary files /dev/null and b/public/assets/img/organizations/CERT Tonga.jpg differ diff --git a/public/assets/img/organizations/CNLabs.jpg b/public/assets/img/organizations/CNLabs.jpg new file mode 100644 index 0000000..71b1a77 Binary files /dev/null and b/public/assets/img/organizations/CNLabs.jpg differ diff --git a/public/assets/img/organizations/Digital Bridge Institute.png b/public/assets/img/organizations/Digital Bridge Institute.png new file mode 100644 index 0000000..65ad1e2 Binary files /dev/null and b/public/assets/img/organizations/Digital Bridge Institute.png differ diff --git a/public/assets/img/organizations/Edgepoint.png b/public/assets/img/organizations/Edgepoint.png new file mode 100644 index 0000000..12aaa51 Binary files /dev/null and b/public/assets/img/organizations/Edgepoint.png differ diff --git a/public/assets/img/organizations/Hassan Solutions.png b/public/assets/img/organizations/Hassan Solutions.png new file mode 100644 index 0000000..df6efec Binary files /dev/null and b/public/assets/img/organizations/Hassan Solutions.png differ diff --git a/public/assets/img/organizations/Huawei.png b/public/assets/img/organizations/Huawei.png new file mode 100644 index 0000000..9bb962c Binary files /dev/null and b/public/assets/img/organizations/Huawei.png differ diff --git a/public/assets/img/organizations/IPv6 Forum Malaysia.png b/public/assets/img/organizations/IPv6 Forum Malaysia.png new file mode 100644 index 0000000..e693582 Binary files /dev/null and b/public/assets/img/organizations/IPv6 Forum Malaysia.png differ diff --git a/public/assets/img/organizations/InfinIT ComTech.jpg b/public/assets/img/organizations/InfinIT ComTech.jpg new file mode 100644 index 0000000..1ef4a79 Binary files /dev/null and b/public/assets/img/organizations/InfinIT ComTech.jpg differ diff --git a/public/assets/img/organizations/MPT.svg b/public/assets/img/organizations/MPT.svg new file mode 100644 index 0000000..116e7a2 --- /dev/null +++ b/public/assets/img/organizations/MPT.svg @@ -0,0 +1,90 @@ + + + + + MPT + + + + image/svg+xml + + MPT + http://www.mpt.com.mm + New Logo of MPT + + + + + + + + + + + + + diff --git a/public/assets/img/organizations/NOKIA.jpg b/public/assets/img/organizations/NOKIA.jpg new file mode 100644 index 0000000..a49b557 Binary files /dev/null and b/public/assets/img/organizations/NOKIA.jpg differ diff --git a/public/assets/img/organizations/RICHAT Partners.jpg b/public/assets/img/organizations/RICHAT Partners.jpg new file mode 100644 index 0000000..ee6eae9 Binary files /dev/null and b/public/assets/img/organizations/RICHAT Partners.jpg differ diff --git a/public/assets/img/organizations/SAIM Enterprises.jpg b/public/assets/img/organizations/SAIM Enterprises.jpg new file mode 100644 index 0000000..bd7ebdb Binary files /dev/null and b/public/assets/img/organizations/SAIM Enterprises.jpg differ diff --git a/public/assets/img/organizations/Smart Industry Malaysia.jpg b/public/assets/img/organizations/Smart Industry Malaysia.jpg new file mode 100644 index 0000000..a6bf1e4 Binary files /dev/null and b/public/assets/img/organizations/Smart Industry Malaysia.jpg differ diff --git a/public/assets/img/organizations/Subisu Nepal.png b/public/assets/img/organizations/Subisu Nepal.png new file mode 100644 index 0000000..27bae7f Binary files /dev/null and b/public/assets/img/organizations/Subisu Nepal.png differ diff --git a/public/assets/img/organizations/Tonga.png b/public/assets/img/organizations/Tonga.png new file mode 100644 index 0000000..4eaafb9 Binary files /dev/null and b/public/assets/img/organizations/Tonga.png differ diff --git a/public/assets/img/organizations/Wexa Consulting.png b/public/assets/img/organizations/Wexa Consulting.png new file mode 100644 index 0000000..a4cc796 Binary files /dev/null and b/public/assets/img/organizations/Wexa Consulting.png differ diff --git a/public/assets/img/universities/APU Malaysia.png b/public/assets/img/universities/APU Malaysia.png new file mode 100644 index 0000000..0f03ffc Binary files /dev/null and b/public/assets/img/universities/APU Malaysia.png differ diff --git a/public/assets/img/universities/COMSATS Uni.jpg b/public/assets/img/universities/COMSATS Uni.jpg new file mode 100644 index 0000000..c65a62a Binary files /dev/null and b/public/assets/img/universities/COMSATS Uni.jpg differ diff --git a/public/assets/img/universities/Dr. MGR University.png b/public/assets/img/universities/Dr. MGR University.png new file mode 100644 index 0000000..0ce24d3 Binary files /dev/null and b/public/assets/img/universities/Dr. MGR University.png differ diff --git a/public/assets/img/universities/IEC.png b/public/assets/img/universities/IEC.png new file mode 100644 index 0000000..f050593 Binary files /dev/null and b/public/assets/img/universities/IEC.png differ diff --git a/public/assets/img/universities/ITS.webp b/public/assets/img/universities/ITS.webp new file mode 100644 index 0000000..fd31c0d Binary files /dev/null and b/public/assets/img/universities/ITS.webp differ diff --git a/public/assets/img/universities/Keio University.png b/public/assets/img/universities/Keio University.png new file mode 100644 index 0000000..a2dbaa5 Binary files /dev/null and b/public/assets/img/universities/Keio University.png differ diff --git a/public/assets/img/universities/MSEC.jpg b/public/assets/img/universities/MSEC.jpg new file mode 100644 index 0000000..0e9dacb Binary files /dev/null and b/public/assets/img/universities/MSEC.jpg differ diff --git a/public/assets/img/universities/MUST.jpg b/public/assets/img/universities/MUST.jpg new file mode 100644 index 0000000..1616f54 Binary files /dev/null and b/public/assets/img/universities/MUST.jpg differ diff --git a/public/assets/img/universities/SIMS.jpg b/public/assets/img/universities/SIMS.jpg new file mode 100644 index 0000000..3c70d89 Binary files /dev/null and b/public/assets/img/universities/SIMS.jpg differ diff --git a/public/assets/img/universities/SUST.jpg b/public/assets/img/universities/SUST.jpg new file mode 100644 index 0000000..17b8045 Binary files /dev/null and b/public/assets/img/universities/SUST.jpg differ diff --git a/public/assets/img/universities/UNSW.jpg b/public/assets/img/universities/UNSW.jpg new file mode 100644 index 0000000..8727a62 Binary files /dev/null and b/public/assets/img/universities/UNSW.jpg differ