create-landing-app 0.2.7 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/prompts.js +7 -3
- package/dist/scaffold.js +5 -2
- package/package.json +1 -1
- package/templates/nextjs/base/.dockerignore +6 -0
- package/templates/nextjs/base/.editorconfig +15 -0
- package/templates/nextjs/base/.env.example +9 -2
- package/templates/nextjs/base/.husky/pre-push +8 -10
- package/templates/nextjs/base/CLAUDE.md +169 -0
- package/templates/nextjs/base/Dockerfile +3 -9
- package/templates/nextjs/base/Makefile +25 -0
- package/templates/nextjs/base/app/layout.tsx +6 -9
- package/templates/nextjs/base/app/sitemap.ts +15 -0
- package/templates/nextjs/base/commitlint.config.mjs +6 -22
- package/templates/nextjs/base/components/navs/navbar-mobile.tsx +60 -27
- package/templates/nextjs/base/components/navs/navbar.tsx +9 -2
- package/templates/nextjs/base/components/ui/checkbox.tsx +26 -0
- package/templates/nextjs/base/components/ui/input.tsx +21 -0
- package/templates/nextjs/base/components/ui/radio-group.tsx +36 -0
- package/templates/nextjs/base/components/ui/select.tsx +139 -0
- package/templates/nextjs/base/components/ui/sheet.tsx +139 -0
- package/templates/nextjs/base/components/ui/tabs.tsx +53 -0
- package/templates/nextjs/base/components/ui/textarea.tsx +20 -0
- package/templates/nextjs/base/docker-compose.yml +9 -0
- package/templates/nextjs/base/eslint.config.mjs +5 -9
- package/templates/nextjs/base/next.config.ts +4 -0
- package/templates/nextjs/base/package.json +7 -4
- package/templates/nextjs/base/styles/theme.css +2 -0
- package/templates/nextjs/base/tsconfig.json +2 -2
- package/templates/nextjs/optional/analytics/files/components/analytics.tsx +16 -0
- package/templates/nextjs/optional/analytics/files/components/web-vitals.tsx +16 -0
- package/templates/nextjs/optional/analytics/inject/app__layout.tsx +7 -0
- package/templates/nextjs/optional/analytics/pkg.json +5 -0
- package/templates/nextjs/optional/dark-mode/files/components/theme-toggle.tsx +21 -0
- package/templates/nextjs/optional/dark-mode/inject/app__layout.tsx +8 -0
- package/templates/nextjs/optional/dark-mode/pkg.json +5 -0
- package/templates/nextjs/optional/i18n-dict/files/components/navs/navbar-mobile.tsx +60 -26
- package/templates/nextjs/optional/i18n-dict/files/components/navs/navbar.tsx +8 -2
- package/templates/nextjs/optional/i18n-dict/files/{middleware.ts → proxy.ts} +8 -2
- package/templates/nextjs/optional/i18n-dict/inject/app__layout.tsx +34 -0
- package/templates/nextjs/optional/sections/blog/files/app/[lang]/blogs/(list)/[category]/main-page.tsx +15 -0
- package/templates/nextjs/optional/sections/blog/files/app/[lang]/blogs/(list)/[category]/page.tsx +38 -0
- package/templates/nextjs/optional/sections/blog/files/app/[lang]/blogs/(list)/layout.tsx +28 -0
- package/templates/nextjs/optional/sections/blog/files/app/[lang]/blogs/detail/[slugNews]/blog-detail-view.tsx +122 -0
- package/templates/nextjs/optional/sections/blog/files/app/[lang]/blogs/detail/[slugNews]/page.tsx +73 -0
- package/templates/nextjs/optional/sections/blog/files/app/api/blogs/route.ts +14 -0
- package/templates/nextjs/optional/sections/blog/files/components/blogs/blog-component.tsx +58 -0
- package/templates/nextjs/optional/sections/blog/files/components/blogs/blog-view-desktop.tsx +121 -0
- package/templates/nextjs/optional/sections/blog/files/components/blogs/blog-view-mobile.tsx +90 -0
- package/templates/nextjs/optional/sections/blog/files/components/navs/layout-blogs.tsx +51 -0
- package/templates/nextjs/optional/sections/blog/files/components/sections/blog-section-view.tsx +171 -0
- package/templates/nextjs/optional/sections/blog/files/components/sections/blog-section.tsx +13 -174
- package/templates/nextjs/optional/sections/blog/files/hooks/use-mobile.ts +19 -0
- package/templates/nextjs/optional/sections/blog/files/lib/blog-api.ts +336 -0
- package/templates/nextjs/optional/sections/blog/files/lib/sanitize.ts +25 -0
- package/templates/nextjs/optional/sections/blog/files/styles/prose.css +40 -0
- package/templates/nextjs/optional/sections/blog/inject/constants__common.ts +1 -1
- package/templates/nextjs/optional/sections/blog/pkg.json +10 -0
- package/templates/nextjs/optional/sections/contact/files/components/sections/contact-section.tsx +1 -0
|
@@ -0,0 +1,336 @@
|
|
|
1
|
+
export type Blog = {
|
|
2
|
+
id?: string;
|
|
3
|
+
slug: string;
|
|
4
|
+
name: string;
|
|
5
|
+
description: string;
|
|
6
|
+
publishedAt: string;
|
|
7
|
+
categoryIds: string[];
|
|
8
|
+
thumbnail?: string;
|
|
9
|
+
content?: { htmlContent?: string } | string;
|
|
10
|
+
status?: string;
|
|
11
|
+
application?: string;
|
|
12
|
+
translations?: Record<string, { name?: string; description?: string; content?: { htmlContent?: string } }>;
|
|
13
|
+
createdAt?: string | null;
|
|
14
|
+
updatedAt?: string | null;
|
|
15
|
+
type?: string;
|
|
16
|
+
legacyId?: string;
|
|
17
|
+
aiRequestId?: string;
|
|
18
|
+
};
|
|
19
|
+
|
|
20
|
+
export type BlogCategory = {
|
|
21
|
+
id: string;
|
|
22
|
+
slug: string;
|
|
23
|
+
name: string;
|
|
24
|
+
application?: string;
|
|
25
|
+
translations?: Record<string, { name?: string; values?: { name?: string } }>;
|
|
26
|
+
createdAt?: string | null;
|
|
27
|
+
updatedAt?: string | null;
|
|
28
|
+
legacyId?: string;
|
|
29
|
+
};
|
|
30
|
+
|
|
31
|
+
export type BlogListResult = {
|
|
32
|
+
blogs: Blog[];
|
|
33
|
+
total: number;
|
|
34
|
+
totalPages: number;
|
|
35
|
+
};
|
|
36
|
+
|
|
37
|
+
// External blog API — set NEXT_PUBLIC_BLOG_API and BLOG_API_APPLICATION in .env to use a real data source.
|
|
38
|
+
// When unset, falls back to built-in mock data.
|
|
39
|
+
const NEXT_PUBLIC_BLOG_API = process.env.NEXT_PUBLIC_BLOG_API;
|
|
40
|
+
const BLOG_API_APPLICATION = process.env.BLOG_API_APPLICATION ?? "ndachain";
|
|
41
|
+
|
|
42
|
+
// API envelope wrapper: { blogs: [...], pagination: {...} }
|
|
43
|
+
type ApiListResponse = {
|
|
44
|
+
blogs?: Blog[];
|
|
45
|
+
categories?: BlogCategory[];
|
|
46
|
+
data?: Blog[];
|
|
47
|
+
pagination?: {
|
|
48
|
+
totalItems?: string | number;
|
|
49
|
+
totalPages?: number | string;
|
|
50
|
+
};
|
|
51
|
+
total?: number;
|
|
52
|
+
totalPages?: number;
|
|
53
|
+
};
|
|
54
|
+
|
|
55
|
+
/** Unwrap blogs array from API list response envelope. */
|
|
56
|
+
function extractBlogs(data: ApiListResponse | Blog[]): Blog[] {
|
|
57
|
+
if (Array.isArray(data)) return data;
|
|
58
|
+
return data.blogs ?? data.data ?? [];
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
/** Extract pagination info from API list response. */
|
|
62
|
+
function extractPagination(data: ApiListResponse): { total: number; totalPages: number } {
|
|
63
|
+
const total = Number(data.pagination?.totalItems ?? data.total ?? 0);
|
|
64
|
+
const totalPages = Number(data.pagination?.totalPages ?? data.totalPages ?? 1);
|
|
65
|
+
return { total, totalPages };
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
// ---------------------------------------------------------------------------
|
|
69
|
+
// Mock data — used when NEXT_PUBLIC_BLOG_API is not set
|
|
70
|
+
// ---------------------------------------------------------------------------
|
|
71
|
+
const MOCK_BLOGS: Blog[] = [
|
|
72
|
+
{
|
|
73
|
+
"id": "38321f42-6308-4cbe-b3f0-2c0845efa652",
|
|
74
|
+
"slug": "blockchain-trong-truy-xuat-nguon-goc-tai-viet-nam",
|
|
75
|
+
"name": "Blockchain trong truy xuất nguồn gốc tại Việt Nam",
|
|
76
|
+
"description": "(ndachain.vn) Blockchain đang được xác định là một trong những công nghệ chiến lược tại Việt Nam, mở ra nền tảng mới cho niềm tin số trong nền kinh tế. Khi dữ liệu trở thành tài sản cốt lõi, việc đảm bảo tính minh bạch, xác thực và toàn vẹn của thông tin trở thành yêu cầu bắt buộc. Trong bối cảnh đó, các nền tảng như NDAChain và NDATrace được định hướng là hạ tầng công nghệ giúp kết nối dữ liệu, nâng cao giá trị hàng hóa và thúc đẩy phát triển kinh tế số bền vững.",
|
|
77
|
+
"thumbnail": "https://s3-sgn10.fptcloud.com/cdn/ndachain-portal/images/6ed086fcd0bb19bc_Source_ảnh_NDAChain_(4).webp",
|
|
78
|
+
"publishedAt": "2026-04-06T10:00:00Z",
|
|
79
|
+
"status": "PUBLISHED",
|
|
80
|
+
"application": "ndachain",
|
|
81
|
+
"categoryIds": [
|
|
82
|
+
"59661128-acc7-4d6d-b04f-6ca9c9bcbc5b"
|
|
83
|
+
],
|
|
84
|
+
"content": {
|
|
85
|
+
"htmlContent": "<figure class=\"image-container\"><img src=\"https://s3-sgn10.fptcloud.com/cdn/ndachain-portal/images/a9816e22cc8b1dd0_Source_ảnh_NDAChain_(4).webp\" alt=\"\" title=\"\" caption=\"Ứng dụng blockchain trong truy xuất nguồn gốc là xu hướng\" id=\"aut9625fz\" width=\"1067\" height=\"600\"><figcaption class=\"image-caption\">Ứng dụng blockchain trong truy xuất nguồn gốc là xu hướng</figcaption></figure><h2 class=\"heading-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\"><strong>Xu hướng ứng dụng Blockchain trong truy xuất nguồn gốc toàn cầu</strong></span></h2><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Trên thế giới, Blockchain không còn là một khái niệm xa lạ mà đã trở thành nền tảng cho <strong>kinh tế số và chủ quyền dữ liệu</strong>. Nhiều quốc gia và khu vực đã tiên phong tích hợp công nghệ này vào chiến lược quốc gia.</span></p><ul class=\"list-node\"><li><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\"><strong>Liên minh châu Âu:</strong> Triển khai hạ tầng dịch vụ blockchain </span><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" class=\"link\" href=\"https://ec.europa.eu/digital-building-blocks/sites/spaces/EBSI/pages/447687044/Home\"><span style=\"color: hsl(var(--foreground));\">EBSI.</span></a></p></li><li><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\"><strong>Trung Quốc:</strong> Phát triển mạng lưới dịch vụ </span><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" class=\"link\" href=\"https://bsnbase.io/g/main/index\"><span style=\"color: hsl(var(--foreground));\">BSN</span></a><span style=\"color: hsl(var(--foreground));\">.</span></p></li><li><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\"><strong>Singapore & UAE:</strong> Tích hợp blockchain làm hạ tầng niềm tin cho toàn bộ hệ sinh thái đổi mới sáng tạo.</span></p></li></ul><h3 class=\"heading-node\"><span style=\"color: hsl(var(--foreground));\"><strong>Bước chuyển quan trọng tại Việt Nam</strong></span></h3><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">Việc Bộ Khoa học & Công nghệ đưa blockchain truy xuất nguồn gốc vào danh mục công nghệ chiến lược là một cột mốc quan trọng. Đây không chỉ là sự công nhận một xu hướng, mà là khẳng định vai trò của blockchain như một lớp hạ tầng cốt lõi để xây dựng niềm tin số trong nền kinh tế.</span></p><h3 class=\"heading-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\"><strong>Tại sao Blockchain là \"chìa khóa\" cho dữ liệu?</strong></span></h3><figure class=\"image-container\"><img src=\"https://s3-sgn10.fptcloud.com/cdn/ndachain-portal/images/42b13ac59914b884_image_Pippit_202604062142_(3).webp\" alt=\"\" title=\"\" caption=\"Xu hướng ứng dụng blockchain trong truy xuất nguồn gốc\" id=\"do9l1fpxp\" width=\"1049\" height=\"600\"><figcaption class=\"image-caption\">Xu hướng ứng dụng blockchain trong truy xuất nguồn gốc</figcaption></figure><p class=\"text-node\" style=\"text-align: justify;\"></p><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Trong kỷ nguyên số, dữ liệu chỉ có giá trị khi được xác thực, minh bạch và không thể thay đổi. Blockchain giải quyết bài toán này nhờ kiến trúc phân tán:</span></p><ol class=\"list-node\"><li><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">Chống thao túng: Dữ liệu được ghi nhận bởi nhiều nút độc lập, loại bỏ rủi ro phụ thuộc vào một điểm tập trung.</span></p></li><li><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">Xác minh khách quan: Mọi thông tin từ quản lý dân cư, sản xuất đến thương mại đều có thể kiểm chứng, tạo nền tảng cho các giao dịch số đáng tin cậy.</span></p></li></ol><h3 class=\"heading-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\"><strong>Tầm nhìn quốc gia và chủ quyền dữ liệu</strong></span></h3><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Việc xác định blockchain là công nghệ chiến lược còn mang ý nghĩa mở đường cho:</span></p><ul class=\"list-node\"><li><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">Hành lang pháp lý: Xây dựng các tiêu chuẩn dữ liệu dùng chung.</span></p></li><li><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">Làm chủ công nghệ lõi: Bảo đảm chủ quyền dữ liệu và nâng cao uy tín hàng Việt trên thị trường quốc tế.</span></p></li><li><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">Định hình chuẩn mực mới: Việt Nam có cơ hội tham gia vào các chuẩn mực toàn cầu về truy xuất nguồn gốc và thương mại số.</span></p></li></ul><h2 class=\"heading-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\"><strong>Blockchain: Bảo chứng giá trị, xác thực niềm tin</strong></span></h2><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Nhiều giải pháp chống giả và truy xuất nguồn gốc đã được triển khai tại Việt Nam, từ tem QR đến hệ thống quản lý nội bộ. Tuy nhiên, phần lớn các giải pháp này vẫn mang tính cục bộ, dữ liệu bị phân mảnh giữa các bên và phụ thuộc vào một số ít chủ thể quản lý. Điều này khiến thông tin thiếu khả năng kiểm chứng độc lập, chưa đủ để tạo dựng niềm tin bền vững trên thị trường.</span></p><p class=\"text-node\" style=\"text-align: justify;\"></p><figure class=\"image-container\"><img src=\"https://s3-sgn10.fptcloud.com/cdn/ndachain-portal/images/7107effaf3a3df36_image_Pippit_202604062142.webp\" alt=\"\" title=\"\" caption=\"Blockchain không chỉ là công nghệ, mà là hạ tầng chiến lược cho hệ sinh thái niềm tin\" id=\"e84e6fi7g\" width=\"1049\" height=\"600\"><figcaption class=\"image-caption\">Blockchain không chỉ là công nghệ, mà là hạ tầng chiến lược cho hệ sinh thái niềm tin</figcaption></figure><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Blockchain được xem là một trong những công nghệ nền tảng có khả năng giải quyết tận gốc vấn đề này. Với đặc tính <strong>phân tán và bất biến</strong>, mọi dữ liệu trong chuỗi cung ứng – từ sản xuất, chế biến, vận chuyển đến tiêu dùng – được ghi nhận đồng thời trên nhiều nút xác thực độc lập và không thể bị chỉnh sửa tùy tiện. Nhờ đó, dữ liệu không còn phụ thuộc vào một nguồn duy nhất, mà trở thành <strong>tài sản chung có thể kiểm chứng</strong>, giúp tăng tính minh bạch và độ tin cậy của toàn bộ hệ thống.</span></p><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Giá trị của blockchain đặc biệt rõ rệt trong các lĩnh vực có yêu cầu cao về an toàn và truy xuất nguồn gốc. </span></p><ul class=\"list-node\"><li><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Đối với <strong>nông nghiệp</strong>, công nghệ này giúp chứng minh quy trình sản xuất sạch, truy vết nguồn gốc nông sản và nâng cao uy tín khi xuất khẩu. </span></p></li><li><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Đối với <strong>thủy sản</strong>, blockchain cho phép minh bạch hóa toàn bộ chuỗi cung ứng, đáp ứng các tiêu chuẩn quốc tế ngày càng khắt khe như IUU hay ESG. </span></p></li><li><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Đối với <strong>dược phẩm</strong>, khả năng truy vết hai chiều giúp kiểm soát chặt chẽ từng lô thuốc và vaccine, góp phần ngăn chặn hàng giả và bảo vệ sức khỏe cộng đồng.</span></p></li></ul><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Không chỉ dừng lại ở việc xác thực thông tin, blockchain còn góp phần định hình một mô hình kinh tế minh bạch, nơi <strong>Nhà nước – doanh nghiệp – người dân</strong> cùng tham gia vào một hệ sinh thái dữ liệu đáng tin cậy. Khi niềm tin được xây dựng trên nền tảng công nghệ, chi phí kiểm chứng giảm xuống, hiệu quả vận hành tăng lên và giá trị hàng hóa Việt Nam có cơ hội được nâng tầm trong chuỗi cung ứng toàn cầu.</span></p><h2 class=\"heading-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\"><strong>Rào cản triển khai không nằm ở công nghệ</strong></span></h2><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Thách thức lớn nhất của việc triển khai ứng dụng <strong>blockchain trong truy xuất nguồn gốc</strong> không nằm ở riêng công nghệ hay hạ tầng, mà ở cách xây dựng và vận hành một hệ sinh thái đủ đồng bộ để công nghệ phát huy giá trị. Blockchain chỉ thực sự hiệu quả khi được tích hợp xuyên suốt từ dữ liệu đầu vào, quy trình vận hành đến cơ chế phối hợp giữa các bên trong chuỗi cung ứng.</span></p><p class=\"text-node\" style=\"text-align: justify;\"></p><figure class=\"image-container\"><img src=\"https://s3-sgn10.fptcloud.com/cdn/ndachain-portal/images/e1d5794a37fd1eec_image_Pippit_202604062142_(1).webp\" alt=\"\" title=\"\" caption=\"Hình ảnh minh hoạ blockchain - công nghệ chiến lược của quốc gia\" id=\"j0gi1c34r\" width=\"1049\" height=\"600\"><figcaption class=\"image-caption\">Hình ảnh minh hoạ blockchain - công nghệ chiến lược của quốc gia</figcaption></figure><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Cụ thể, có 3 rào cản chính:</span></p><ul class=\"list-node\"><li><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\"><strong>Hạ tầng kỹ thuật và chi phí:</strong> Blockchain đòi hỏi khả năng xử lý phân tán và lưu trữ đồng bộ. Đây là áp lực lớn về chi phí đầu tư ban đầu đối với các doanh nghiệp SME. Giải pháp nằm ở các nền tảng tối ưu chi phí, dễ tích hợp cùng các chính sách hỗ trợ tài chính từ Nhà nước.</span></p></li><li><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\"><strong>Chuẩn hóa dữ liệu:</strong> Blockchain không thể tạo ra giá trị nếu dữ liệu đầu vào thiếu chính xác hoặc không đồng nhất. Việc xây dựng <strong>bộ tiêu chuẩn dữ liệu quốc gia</strong> có giá trị pháp lý là điều kiện tiên quyết để hình thành hệ sinh thái minh bạch và liên thông xuyên ngành.</span></p></li><li><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\"><strong>Nhận thức và động lực thị trường:</strong> Nhiều doanh nghiệp vẫn xem truy xuất nguồn gốc là \"chi phí tuân thủ\" thay vì lợi thế cạnh tranh. Trong khi đó, người tiêu dùng lại thiếu công cụ chính thống để kiểm chứng, khiến niềm tin số chưa được hình thành đầy đủ.</span></p></li></ul><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Trong bối cảnh nhu cầu minh bạch nguồn gốc, an toàn thực phẩm và tiêu chuẩn xuất khẩu ngày càng gia tăng, blockchain – khi được triển khai trên nền tảng hợp tác giữa <strong>Nhà nước, doanh nghiệp và xã hội</strong> – sẽ trở thành hạ tầng chiến lược. Không chỉ giúp chống gian lận và bảo vệ người tiêu dùng, công nghệ này còn góp phần nâng cao giá trị hàng hóa Việt Nam và thúc đẩy phát triển kinh tế số bền vững.</span></p><h2 class=\"heading-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\"><strong>Chuẩn hóa và liên thông dữ liệu là điều kiện tiên quyết</strong></span></h2><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Dữ liệu chỉ thực sự tạo ra giá trị khi được tổ chức theo một chuẩn thống nhất và có khả năng kiểm chứng. Nếu dữ liệu vẫn <strong>phân mảnh</strong> giữa các bộ ngành, địa phương hay doanh nghiệp, hệ sinh thái số sẽ bị bó hẹp và khó có thể mở rộng quy mô.</span></p><p class=\"text-node\" style=\"text-align: justify;\"></p><figure class=\"image-container\"><img src=\"https://s3-sgn10.fptcloud.com/cdn/ndachain-portal/images/5828996a4370e366_image_Pippit_202604062206.png\" alt=\"\" title=\"\" caption=\"Minh hoạ về việc chuẩn hoá và liên thông dữ liệu\" width=\"1050\" height=\"600\"><figcaption class=\"image-caption\">Minh hoạ về việc chuẩn hoá và liên thông dữ liệu</figcaption></figure><p class=\"text-node\" style=\"text-align: justify;\"></p><p class=\"text-node\" style=\"text-align: justify;\"></p><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Trong bối cảnh đó, việc xây dựng bộ tiêu chuẩn dữ liệu dùng chung ở cấp quốc gia trở thành ưu tiên chiến lược. Các sáng kiến hiện nay tập trung vào việc thiết lập các bộ chuẩn theo từng lĩnh vực như nông nghiệp, y tế, giáo dục, tài chính… với sự tham gia của cả cơ quan quản lý và doanh nghiệp đầu ngành. Mục tiêu là đảm bảo dữ liệu có cấu trúc thống nhất, có khả năng liên thông giữa các hệ thống và có giá trị pháp lý trong cả quản lý nhà nước lẫn hoạt động thương mại.</span></p><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Song song với chuẩn hóa, việc kết nối dữ liệu với các hạ tầng số quốc gia đóng vai trò quyết định. Trong đó, <strong>NDATrace</strong> nổi lên như một nền tảng định danh và xác thực sản phẩm hàng đầu:</span></p><ul class=\"list-node\"><li><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\"><strong>Xác thực niềm tin:</strong> Blockchain đóng vai trò lớp bảo vệ, đảm bảo dữ liệu không bị thay đổi và có thể kiểm chứng độc lập.</span></p></li><li><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\"><strong>Minh bạch hóa:</strong> Dữ liệu không chỉ được lưu trữ mà còn được \"làm sạch\" và xác thực giá trị thực tế.</span></p></li></ul><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Việc kết hợp giữa chuẩn hóa dữ liệu – hạ tầng quốc gia – blockchain không chỉ phục vụ truy xuất nguồn gốc, mà còn mở ra nền tảng cho một nền kinh tế số minh bạch, an toàn và có khả năng bứt phá. Đây chính là bước chuyển từ “số hóa dữ liệu” sang “khai thác giá trị dữ liệu” trong kỷ nguyên kinh tế số.</span></p><h2 class=\"heading-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\"><strong>Hỗ trợ SME ứng dụng, hội nhập và tăng trưởng</strong></span></h2><figure class=\"image-container\"><img src=\"https://s3-sgn10.fptcloud.com/cdn/ndachain-portal/images/31f8d8ec5f408f5f_image_Pippit_202604062141_(1).png\" alt=\"\" title=\"\" caption=\"Minh hoạ hình ảnh truy xuất nguồn gốc\" width=\"1050\" height=\"600\"><figcaption class=\"image-caption\">Minh hoạ hình ảnh truy xuất nguồn gốc</figcaption></figure><p class=\"text-node\" style=\"text-align: justify;\"></p><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Để doanh nghiệp vừa và nhỏ (SME) có thể ứng dụng hiệu quả blockchain truy xuất nguồn gốc vào sản xuất – kinh doanh, cần một tổ hợp giải pháp chính sách đồng bộ, kết hợp giữa hỗ trợ tài chính, chuẩn hóa dữ liệu và phát triển năng lực thị trường. Đây không chỉ là bài toán công nghệ, mà là chiến lược phát triển hệ sinh thái nhằm đưa SME trở thành lực lượng nòng cốt trong nền kinh tế số.</span></p><h3 class=\"heading-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\"><strong>1. Cơ chế tài chính và đòn bẩy chi phí</strong></span></h3><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">SME thường hạn chế về nguồn lực, do đó việc đầu tư hạ tầng Blockchain ban đầu là rào cản lớn. Giải pháp then chốt bao gồm:</span></p><ul class=\"list-node\"><li><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\"><strong>Ưu đãi nền tảng:</strong> Khuyến khích doanh nghiệp tham gia các hạ tầng quốc gia như <strong>NDAChain</strong> và <strong>NDATrace</strong>.</span></p></li><li><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\"><strong>Hỗ trợ vốn:</strong> Triển khai các gói tín dụng ưu đãi, quỹ đổi mới sáng tạo và chương trình hỗ trợ chuyển đổi số của Nhà nước để giảm áp lực chi phí.</span></p></li></ul><h3 class=\"heading-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\"><strong>2. Chuẩn hóa dữ liệu để giảm rủi ro</strong></span></h3><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Blockchain chỉ thực sự hiệu quả khi dữ liệu đầu vào chính xác và đồng bộ.</span></p><ul class=\"list-node\"><li><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">Một <strong>bộ tiêu chuẩn dữ liệu quốc gia</strong> được bảo chứng sẽ giúp SME dễ dàng kết nối vào hệ sinh thái chung mà không cần tự xây dựng hệ thống riêng.</span></p></li><li><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">Điều này giúp tối ưu hóa vận hành, giảm chi phí và rủi ro kỹ thuật cho doanh nghiệp.</span></p></li></ul><h3 class=\"heading-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\"><strong>3. Nâng cao năng lực và nhận thức</strong></span></h3><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Cần giúp SME hiểu rằng Blockchain là một <strong>công cụ thiết thực</strong> để:</span></p><ul class=\"list-node\"><li><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">Minh bạch hóa quy trình sản xuất.</span></p></li><li><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">Nâng cao giá trị thương hiệu sản phẩm.</span></p></li><li><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">Mở rộng cửa ngõ xuất khẩu sang các thị trường khó tính.</span></p></li></ul><h2 class=\"heading-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\"><strong>NDAChain và tầm nhìn xây dựng hạ tầng niềm tin cho nền kinh tế dữ liệu</strong></span></h2><figure class=\"image-container\"><img src=\"https://s3-sgn10.fptcloud.com/cdn/ndachain-portal/images/3ee2cff77b218b12_image_Pippit_202604062142_(4).png\" alt=\"\" title=\"\" caption=\"Blockchain là công nghệ chiến lược kiến tạo niềm tin số quốc gia\" width=\"1050\" height=\"600\"><figcaption class=\"image-caption\">Blockchain là công nghệ chiến lược kiến tạo niềm tin số quốc gia</figcaption></figure><p class=\"text-node\" style=\"text-align: justify;\"></p><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Tầm nhìn dài hạn của </span><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" class=\"link\" href=\"https://ndachain.vn/vi\"><span style=\"color: hsl(var(--foreground));\"><u>NDAChain</u></span></a><span style=\"color: hsl(var(--foreground));\"> là trở thành hạ tầng niềm tin số cho nền kinh tế dữ liệu mở tại Việt Nam. Trong kỷ nguyên số, dữ liệu chỉ thực sự có giá trị khi được minh bạch, chuẩn hóa và có thể kiểm chứng. Blockchain, với cơ chế xác thực phân tán và bất biến, chính là công nghệ bảo đảm những yếu tố này, cho phép dữ liệu từ nhiều ngành, địa phương và hệ thống được kết nối, tái sử dụng và khai thác hiệu quả cho phát triển kinh tế – xã hội.</span></p><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Trong lộ trình đó, </span><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" class=\"link\" href=\"https://ndachain.vn/vi\"><span style=\"color: hsl(var(--foreground));\"><u>NDAChain</u></span></a><span style=\"color: hsl(var(--foreground));\"> cùng các nền tảng ứng dụng như NDATrace đóng vai trò nòng cốt trong việc hình thành một hệ sinh thái dữ liệu quốc gia đáng tin<strong> cậy</strong>. Không chỉ dừng lại ở việc lưu trữ, </span><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" class=\"link\" href=\"https://ndachain.vn/vi\"><span style=\"color: hsl(var(--foreground));\"><u>NDAChain</u></span></a><span style=\"color: hsl(var(--foreground));\"> cho phép xác thực dữ liệu, minh bạch hóa thông tin và mở ra cơ chế để doanh nghiệp và người dân trực tiếp tham gia vào tiến trình chuyển đổi số. Khi dữ liệu truy xuất nguồn gốc của hàng hóa, nông sản, dược phẩm hay thủy sản được chuẩn hóa và kiểm chứng, giá trị hàng Việt sẽ được nâng cao, đồng thời hình thành một hệ sinh thái dữ liệu an toàn và bền vững.</span></p><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Ở tầm quốc tế, NDAChain hướng tới việc không chỉ theo kịp mà còn góp phần định hình các chuẩn mực mới về kinh tế dữ liệu và thương mại minh bạch. Việc làm chủ hạ tầng blockchain quốc gia không chỉ giúp củng cố chủ quyền số, mà còn tạo điều kiện để Việt Nam nâng cao năng lực cạnh tranh, mở rộng thị trường và khẳng định vị thế trong chuỗi giá trị toàn cầu.</span></p><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">Với định hướng này, NDAChain không chỉ là một nền tảng công nghệ, mà là <strong>lớp hạ tầng kiến tạo niềm tin</strong>, nơi Nhà nước, doanh nghiệp và người dân cùng tham gia và thụ hưởng giá trị từ một nền kinh tế dữ liệu mở, minh bạch và phát triển bền vững.</span></p>"
|
|
86
|
+
},
|
|
87
|
+
"translations": {
|
|
88
|
+
"en": {
|
|
89
|
+
"content": {
|
|
90
|
+
"htmlContent": "<figure class=\"image-container\"><img src=\"https://s3-sgn10.fptcloud.com/cdn/ndachain-portal/images/a9816e22cc8b1dd0_Source_ảnh_NDAChain_(4).webp\" alt=\"\" title=\"\" caption=\"Blockchain-powered traceability is a rising trend\" id=\"aut9625fz\" width=\"1067\" height=\"600\"><figcaption class=\"image-caption\">Blockchain-powered traceability is a rising trend</figcaption></figure><h2 class=\"heading-node\"><span style=\"color: hsl(var(--foreground));\">Global Trends in Blockchain for Traceability</span></h2><figure class=\"image-container\"><img src=\"https://s3-sgn10.fptcloud.com/cdn/ndachain-portal/images/42b13ac59914b884_image_Pippit_202604062142_(3).webp\" alt=\"\" title=\"\" caption=\"Trends in Blockchain Adoption for Traceability\" id=\"do9l1fpxp\" width=\"1049\" height=\"600\"><figcaption class=\"image-caption\">Trends in Blockchain Adoption for Traceability</figcaption></figure><p class=\"text-node\"></p><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">Globally, Blockchain has evolved from a conceptual novelty into a cornerstone for the digital economy and <strong>data sovereignty</strong>. Leading nations have pioneered its integration into national strategies:</span></p><ul class=\"list-node\"><li><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\"><strong>European Union:</strong> Deploying the </span><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" class=\"link\" href=\"https://ec.europa.eu/digital-building-blocks/sites/spaces/EBSI/pages/447687044/Home\"><span style=\"color: hsl(var(--foreground));\">EBSI</span></a><span style=\"color: hsl(var(--foreground));\"> (European Blockchain Services Infrastructure).</span></p></li><li><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\"><strong>China:</strong> Developing the </span><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" class=\"link\" href=\"https://bsnbase.io/g/main/index\"><span style=\"color: hsl(var(--foreground));\">BSN</span></a><span style=\"color: hsl(var(--foreground));\"> (Blockchain-based Service Network).</span></p></li><li><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\"><strong>Singapore & UAE:</strong> Integrating Blockchain as a trust infrastructure for their entire innovation ecosystems.</span></p></li></ul><h2 class=\"heading-node\"><span style=\"color: hsl(var(--foreground));\">A Strategic Shift in Vietnam</span></h2><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">The decision by the Ministry of Science and Technology to include Blockchain for traceability in the list of strategic technologies marks a significant milestone. This is more than just trend recognition; it is a formal affirmation of Blockchain’s role as a core infrastructure layer for building digital trust.</span></p><h2 class=\"heading-node\"><span style=\"color: hsl(var(--foreground));\">Why is Blockchain the \"Key\" to Data?</span></h2><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">In the digital era, data only holds value when it is verified, transparent, and immutable. Blockchain solves this through its distributed architecture:</span></p><ul class=\"list-node\"><li><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">Anti-manipulation: Data is recorded across multiple independent nodes, eliminating the risks associated with centralized points of failure.</span></p></li><li><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">Objective Verification: From population management to production and trade, all information is verifiable, creating a bedrock for reliable digital transactions.</span></p></li></ul><h2 class=\"heading-node\"><span style=\"color: hsl(var(--foreground));\">National Vision and Data Sovereignty</span></h2><figure class=\"image-container\"><img src=\"https://s3-sgn10.fptcloud.com/cdn/ndachain-portal/images/7107effaf3a3df36_image_Pippit_202604062142.webp\" alt=\"\" title=\"\" caption=\"Blockchain: Not just a technology, but a strategic infrastructure for the ecosystem of trust\" id=\"e84e6fi7g\" width=\"1049\" height=\"600\"><figcaption class=\"image-caption\">Blockchain: Not just a technology, but a strategic infrastructure for the ecosystem of trust</figcaption></figure><p class=\"text-node\"></p><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">Defining Blockchain as a strategic technology paves the way for:</span></p><ul class=\"list-node\"><li><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">Legal Frameworks: Establishing shared data standards.</span></p></li><li><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">Mastering Core Technology: Ensuring national data sovereignty and enhancing the reputation of Vietnamese goods globally.</span></p></li><li><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">Setting New Standards: Enabling Vietnam to participate in global benchmarks for traceability and digital commerce.</span></p></li></ul><h2 class=\"heading-node\"><span style=\"color: hsl(var(--foreground));\">Blockchain: Guaranteeing Value, Authenticating Trust</span></h2><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">While various anti-counterfeiting and traceability solutions exist in Vietnam, ranging from QR codes to internal management systems, most remain localized and fragmented. This data silos issue creates a lack of independent verification, failing to foster sustainable market trust.</span></p><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">Blockchain addresses this at its root. With its decentralized and immutable nature, every piece of data in the supply chain, from production and processing to logistics and consumption, is recorded simultaneously across independent verification nodes.</span></p><ul class=\"list-node\"><li><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">Agriculture: Proves clean production processes and enhances export credibility.</span></p></li><li><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">Fisheries: Ensures supply chain transparency, meeting strict international standards like IUU or ESG.</span></p></li><li><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">Pharmaceuticals: Enables bi-directional tracking of medicines and vaccines to prevent counterfeiting.</span></p></li></ul><h2 class=\"heading-node\"><span style=\"color: hsl(var(--foreground));\">Overcoming Implementation Barriers</span></h2><figure class=\"image-container\"><img src=\"https://s3-sgn10.fptcloud.com/cdn/ndachain-portal/images/5828996a4370e366_image_Pippit_202604062206.png\" alt=\"\" title=\"\" caption=\"Illustration of data standardization and interoperability.\" width=\"1050\" height=\"600\"><figcaption class=\"image-caption\">Illustration of data standardization and interoperability.</figcaption></figure><p class=\"text-node\"></p><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">The primary challenge is not the technology itself, but building a synchronized ecosystem. Blockchain's effectiveness relies on three pillars:</span></p><ol class=\"list-node\"><li><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">Technical Infrastructure & Cost: High initial investment for SMEs. The solution lies in cost-optimized platforms and government-supported financial policies.</span></p></li><li><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">Data Standardization: Blockchain cannot create value from inaccurate input. National data standards are a prerequisite for cross-industry interoperability.</span></p></li><li><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">Market Awareness: Shifting the perception of traceability from a \"compliance cost\" to a competitive advantage.</span></p></li></ol><h2 class=\"heading-node\"><span style=\"color: hsl(var(--foreground));\">Data Standardization: The Prerequisite for Success</span></h2><figure class=\"image-container\"><img src=\"https://s3-sgn10.fptcloud.com/cdn/ndachain-portal/images/31f8d8ec5f408f5f_image_Pippit_202604062141_(1).png\" alt=\"\" title=\"\" caption=\"Illustrated traceability process.\" width=\"1050\" height=\"600\"><figcaption class=\"image-caption\">Illustrated traceability process.</figcaption></figure><p class=\"text-node\"></p><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">Data only creates value when it is organized under a unified standard. Initiatives are now focusing on establishing standards for agriculture, healthcare, and finance to ensure data is structured, interoperable, and legally valid.</span></p><p class=\"text-node\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" class=\"link\" href=\"https://www.ndatrace.vn/vi\"><span style=\"color: hsl(var(--foreground));\">NDATrace</span></a><span style=\"color: hsl(var(--foreground));\"> emerges as a leading platform in this transition:</span></p><ul class=\"list-node\"><li><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">Trust authentication: Acting as a protective layer to ensure data remains unalterable.</span></p></li><li><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">Transparency: Cleaning and validating data to reflect its true value.</span></p></li></ul><h2 class=\"heading-node\"><span style=\"color: hsl(var(--foreground));\">Supporting SMEs: Application, Integration, and Growth</span></h2><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">To help SMEs effectively adopt Blockchain, a synchronized policy mix is required:</span></p><ul class=\"list-node\"><li><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">Financial Incentives: Encouraging participation in national infrastructures like NDAChain and NDATrace through innovation funds.</span></p></li><li><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">Risk Reduction: Providing a verified national data standard so SMEs can connect to the ecosystem without building their own systems.</span></p></li><li><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">Capacity Building: Helping businesses understand Blockchain as a tool to enhance brand value and open doors to high-end export markets.</span></p></li></ul><h2 class=\"heading-node\"><span style=\"color: hsl(var(--foreground));\">NDAChain: Building Trust Infrastructure for the Data Economy</span></h2><figure class=\"image-container\"><img src=\"https://s3-sgn10.fptcloud.com/cdn/ndachain-portal/images/3ee2cff77b218b12_image_Pippit_202604062142_(4).png\" alt=\"\" title=\"\" caption=\"Blockchain is a strategic technology for building national digital trust\" width=\"1050\" height=\"600\"><figcaption class=\"image-caption\">Blockchain is a strategic technology for building national digital trust</figcaption></figure><p class=\"text-node\"></p><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">The long-term vision of </span><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" class=\"link\" href=\"https://ndachain.vn/en\"><span style=\"color: hsl(var(--foreground));\">NDAChain</span></a><span style=\"color: hsl(var(--foreground));\"> is to become the digital trust infrastructure for Vietnam's open data economy. In an era where data is only as good as its verifiability, </span><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" class=\"link\" href=\"https://ndachain.vn/en\"><span style=\"color: hsl(var(--foreground));\">NDAChain</span></a><span style=\"color: hsl(var(--foreground));\"> and </span><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" class=\"link\" href=\"https://www.ndatrace.vn/vi\"><span style=\"color: hsl(var(--foreground));\">NDATrace</span></a><span style=\"color: hsl(var(--foreground));\"> serve as the backbone for a reliable national data ecosystem.</span></p><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">Internationally, </span><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" class=\"link\" href=\"https://ndachain.vn/vi\"><span style=\"color: hsl(var(--foreground));\">NDAChain</span></a><span style=\"color: hsl(var(--foreground));\"> aims to contribute to new global standards for transparent trade. By mastering national blockchain infrastructure, Vietnam not only secures its digital sovereignty but also strengthens its position in the global value chain.</span></p>"
|
|
91
|
+
},
|
|
92
|
+
"description": "(ndachain.vn) Blockchain is emerging as a strategic technology in Vietnam, establishing a new foundation for digital trust in the economy. As data becomes a core asset, ensuring transparency, authenticity, and integrity is now mandatory. In this landscape, platforms like NDAChain and NDATrace are positioned as critical technological infrastructures that connect data, enhance product value, and drive sustainable digital economic growth.",
|
|
93
|
+
"name": "Blockchain in Traceability: Strategic Pillar for Vietnam's Digital Economy"
|
|
94
|
+
}
|
|
95
|
+
},
|
|
96
|
+
"createdAt": "2026-04-06T15:10:29.526517Z",
|
|
97
|
+
"updatedAt": "2026-04-06T15:19:12.376811Z",
|
|
98
|
+
"type": "manual",
|
|
99
|
+
"aiRequestId": ""
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"id": "f33d6afc-97f4-4325-89b6-cd2727814551",
|
|
103
|
+
"slug": "danh-muc-11-nhom-cong-nghe-chien-luoc-va-san-pham-cong-nghe-chien-luoc",
|
|
104
|
+
"name": "Danh mục 11 nhóm công nghệ chiến lược và sản phẩm công nghệ chiến lược",
|
|
105
|
+
"description": "(ndachain.vn) Ngày 12/06/2025, Chính phủ Việt Nam chính thức ban hành Quyết định số 1131/QĐ-TTg về Danh mục công nghệ chiến lược và sản phẩm công nghệ chiến lược, đánh dấu bước chuyển quan trọng trong chiến lược phát triển kinh tế số và chủ quyền dữ liệu quốc gia. Văn bản này không chỉ xác định 11 nhóm công nghệ cốt lõi mà còn định hướng xây dựng hệ sinh thái công nghệ tự chủ, phù hợp với các khung chính sách như Luật Dữ liệu 2024, Luật Bảo vệ dữ liệu cá nhân 2025 và chương trình Chuyển đổi số quốc gia đến năm 2030. Trong đó, blockchain được xác định là một trong những hạ tầng quan trọng, đóng vai trò đảm bảo tính xác thực và minh bạch dữ liệu trong toàn bộ nền kinh tế số.",
|
|
106
|
+
"thumbnail": "https://s3-sgn10.fptcloud.com/cdn/ndachain-portal/images/a7d34f7d22a49108_Chain_3.webp",
|
|
107
|
+
"publishedAt": "2026-03-30T10:00:00Z",
|
|
108
|
+
"status": "PUBLISHED",
|
|
109
|
+
"application": "ndachain",
|
|
110
|
+
"categoryIds": [
|
|
111
|
+
"180b7e6a-af39-4311-a69b-ed676ca1f181"
|
|
112
|
+
],
|
|
113
|
+
"content": {
|
|
114
|
+
"htmlContent": "<p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">Quyết định 1131/QĐ-TTg được ban hành trong bối cảnh Việt Nam đang đẩy mạnh triển khai Chiến lược quốc gia về chuyển đổi số (Quyết định 749/QĐ-TTg) và định hướng phát triển kinh tế số – xã hội số đến năm 2030. Đây là bước cụ thể hóa quan trọng, giúp xác định rõ các công nghệ cốt lõi cần ưu tiên đầu tư, từ đó tạo nền tảng cho việc phát triển hạ tầng số và năng lực công nghệ quốc gia trong dài hạn.</span></p><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Tổng thể, Quyết định 1131/QĐ-TTg có thể được xem như “bản đồ công nghệ” của Việt Nam trong giai đoạn mới, đóng vai trò định hướng chiến lược để nâng cao năng lực cạnh tranh và từng bước khẳng định vị thế trên bản đồ công nghệ toàn cầu.</span></p><h2 class=\"heading-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\"><strong>Danh sách 11 nhóm công nghệ cốt lõi của quốc gia</strong></span></h2><figure class=\"image-container\"><img src=\"https://s3-sgn10.fptcloud.com/cdn/ndachain-portal/images/2d3efa88dcc67fc0_Gemini_Generated_Image_tn4ngltn4ngltn4n.webp\" alt=\"\" title=\"\" caption=\"Danh sách 11 nhóm công nghệ cốt lõi của quốc gia\" id=\"cw60bu5p9\" width=\"993\" height=\"542\"><figcaption class=\"image-caption\">Danh sách 11 nhóm công nghệ cốt lõi của quốc gia</figcaption></figure><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Danh mục bao gồm 11 nhóm công nghệ trọng yếu, bao phủ toàn bộ các lĩnh vực nền tảng của nền kinh tế số:</span></p><h3 class=\"heading-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\"><u>1. Trí tuệ nhân tạo, bản sao số, thực tế ảo/thực tế tăng cường.</u></span></h3><ul class=\"list-node\"><li><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Mô hình ngôn ngữ lớn tiếng Việt.</span></p></li><li><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Trợ lý ảo.</span></p></li><li><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Trí tuệ nhân tạo chuyên ngành.</span></p></li><li><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Trí tuệ nhân tạo phân tích.</span></p></li><li><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Bản sao số (Digital Twin).</span></p></li><li><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Vũ trụ ảo (Metaverse).</span></p></li></ul><h3 class=\"heading-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\"><u>2. Công nghệ điện toán đám mây, lượng tử, dữ liệu lớn.</u></span></h3><ul class=\"list-node\"><li><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Dịch vụ điện toán đám mây.</span></p></li><li><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Dịch vụ điện toán lượng tử, truyền thông lượng tử.</span></p></li><li><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Trung tâm dữ liệu quy mô lớn.</span></p></li></ul><h3 class=\"heading-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\"><u>3. Công nghệ Blockchain.</u></span></h3><ul class=\"list-node\"><li><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Tài sản số, tiền số, tiền mã hóa.</span></p></li><li><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Hạ tầng mạng Blockchain.</span></p></li><li><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Hệ thống truy xuất nguồn gốc.</span></p></li></ul><h3 class=\"heading-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\"><u>4. Công nghệ mạng di động thế hệ sau (5G/6G).</u></span></h3><ul class=\"list-node\"><li><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Thiết bị, giải pháp mạng truy cập vô tuyến 5G/6G theo chuẩn ORAN.</span></p></li><li><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Thiết bị, giải pháp mạng lõi 5G/6G.</span></p></li><li><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Thiết bị, giải pháp truyền dẫn IP tốc độ cao.</span></p></li></ul><h3 class=\"heading-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\"><u>5. Công nghệ robot và tự động hóa.</u></span></h3><ul class=\"list-node\"><li><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Robot di động tự hành.</span></p></li><li><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Robot công nghiệp.</span></p></li><li><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Hệ thống, dây chuyền chế biến thực phẩm tiên tiến cho các sản phẩm nông - lâm - thủy sản.</span></p></li><li><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Hệ thống bảo quản và giám sát chất lượng sau thu hoạch.</span></p></li></ul><h3 class=\"heading-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\"><u>6. Công nghệ chip bán dẫn.</u></span></h3><ul class=\"list-node\"><li><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Chip chuyên dụng, chip AI, chip IoТ.</span></p></li></ul><h3 class=\"heading-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\"><u>7. Công nghệ y - sinh học tiên tiến.</u></span></h3><ul class=\"list-node\"><li><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Vắc xin thế hệ mới.</span></p></li><li><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Liệu pháp gen (chỉnh sửa gen) trong y tế và nông nghiệp.</span></p></li><li><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Liệu pháp tế bào (tế bào gốc, tế bào miễn dịch).</span></p></li></ul><h3 class=\"heading-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\"><u>8. Công nghệ năng lượng, vật liệu tiên tiến.</u></span></h3><ul class=\"list-node\"><li><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Lò phản ứng hạt nhân nhỏ, an toàn.</span></p></li><li><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Pin lithium-ion, thể rắn, nhiên liệu, điện phân.</span></p></li><li><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Vật liệu tiên tiến.</span></p></li></ul><h3 class=\"heading-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\"><u>9. Công nghệ đất hiếm, đại dương, lòng đất.</u></span></h3><ul class=\"list-node\"><li><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Hệ thống, thiết bị và giải pháp công nghệ đánh giá trữ lượng, khai thác, tuyển khoáng, tách chiết, tinh chế đất hiếm.</span></p></li><li><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Hệ thống, giải pháp công. nghệ thăm dò địa | chất thông minh.</span></p></li><li><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Thiết bị, giải pháp công nghệ thăm dò và khai thác biển sâu.</span></p></li><li><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Hệ thống, thiết bị, giải pháp công nghệ khai thác năng lượng ngoài khơi.</span></p></li></ul><h3 class=\"heading-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\"><u>10. An ninh mạng.</u></span></h3><ul class=\"list-node\"><li><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Giải pháp tường lửa, phát hiện và ngăn chặn xâm nhập.</span></p></li><li><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Giải pháp đảm bảo an ninh cho hạ tầng quan trọng và cơ sở dữ liệu quốc gia.</span></p></li></ul><h3 class=\"heading-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\"><u>11. Công nghệ hàng không, vũ trụ.</u></span></h3><ul class=\"list-node\"><li><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Vệ tinh viễn thám và viễn thông tầm thấp.</span></p></li><li><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Trạm mặt đất và điều khiển vệ tinh.</span></p></li><li><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Thiết bị bay không người lái.</span></p></li></ul><h2 class=\"heading-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\"><strong>Blockchain: Từ công nghệ tiên phong đến vị thế hạ tầng chiến lược quốc gia</strong></span></h2><figure class=\"image-container\"><img src=\"https://s3-sgn10.fptcloud.com/cdn/ndachain-portal/images/b9aae3c5d51af43b_Gemini_Generated_Image_3qd71w3qd71w3qd7.webp\" alt=\"\" title=\"\" caption=\"Blockchain: Từ công nghệ tiên phong đến vị thế hạ tầng chiến lược quốc gia\" id=\"k0sgwg2dr\" width=\"1076\" height=\"600\"><figcaption class=\"image-caption\">Blockchain: Từ công nghệ tiên phong đến vị thế hạ tầng chiến lược quốc gia</figcaption></figure><p class=\"text-node\" style=\"text-align: justify;\"></p><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Trong 11 nhóm công nghệ chiến lược, blockchain được xác định là một trong những trụ cột quan trọng nhờ khả năng giải quyết bài toán niềm tin số và xác thực dữ liệu. Không chỉ là một công nghệ riêng lẻ, blockchain đóng vai trò như lớp hạ tầng bảo chứng, giúp các hệ thống số vận hành minh bạch, an toàn và không phụ thuộc vào bên trung gian.</span></p><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Sự quan trọng của blockchain càng rõ rệt khi đối chiếu với các yêu cầu pháp lý mới tại Việt Nam. Luật Dữ liệu 2024 đặt ra yêu cầu về tính toàn vẹn và khả năng truy vết dữ liệu, trong khi Luật Bảo vệ dữ liệu cá nhân 2025 nhấn mạnh kiểm soát truy cập và minh bạch trong xử lý thông tin. Đồng thời, các tiêu chuẩn quốc tế như W3C DID, Verifiable Credentials (VC) và GDPR cũng yêu cầu một hạ tầng có khả năng xác thực, kiểm chứng và bảo vệ dữ liệu xuyên biên giới. Blockchain chính là công nghệ đáp ứng đầy đủ các tiêu chuẩn này.</span></p><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Về bản chất, blockchain cho phép ghi nhận dữ liệu theo cách bất biến (immutable), đảm bảo mọi thông tin sau khi được xác nhận sẽ không thể bị chỉnh sửa. Bên cạnh đó, công nghệ này hỗ trợ truy xuất nguồn gốc một cách xuyên suốt và giúp chống giả mạo, gian lận dữ liệu trong môi trường đa bên, nơi nhiều tổ chức cùng tham gia nhưng không hoàn toàn tin tưởng lẫn nhau.</span></p><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Theo các nghiên cứu từ World Economic Forum và IBM, việc ứng dụng blockchain có thể giúp doanh nghiệp giảm từ 20–40% chi phí vận hành chuỗi cung ứng, đồng thời rút ngắn thời gian xác minh từ vài ngày xuống gần như tức thời. Quan trọng hơn, blockchain tạo ra một “lớp niềm tin” chung, giúp nâng cao độ tin cậy của dữ liệu trong toàn bộ hệ sinh thái số.</span></p><h2 class=\"heading-node\"><span style=\"color: hsl(var(--foreground));\"><strong>NDAChain - Hạ tầng tin cậy cho chiến lược số quốc gia</strong></span></h2><figure class=\"image-container\"><img src=\"https://s3-sgn10.fptcloud.com/cdn/ndachain-portal/images/fcade6d2d11e1435_Image.webp\" alt=\"\" title=\"\" caption=\"NDAChain - Hạ tầng tin cậy cho chiến lược số quốc gia\" id=\"mvw9y8j22\" width=\"1040\" height=\"584\"><figcaption class=\"image-caption\">NDAChain - Hạ tầng tin cậy cho chiến lược số quốc gia</figcaption></figure><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">NDAChain đóng vai trò hiện thực hóa công nghệ blockchain ở quy mô quốc gia. Không chỉ dừng lại ở một nền tảng kỹ thuật, NDAChain được thiết kế như một hạ tầng chiến lược, phục vụ các dịch vụ dân sinh trọng yếu, đồng thời đảm bảo chủ quyền dữ liệu trong kỷ nguyên số. Với khả năng xác thực tức thời, ghi nhận dữ liệu bất biến và bảo vệ quyền riêng tư, nền tảng góp phần xây dựng một môi trường số an toàn, trung lập và có khả năng kết nối liên ngành, liên vùng và liên hệ thống.</span></p><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Mục tiêu cốt lõi của NDAChain là bảo vệ dữ liệu công dân, thúc đẩy đổi mới sáng tạo và hỗ trợ triển khai các chương trình chuyển đổi số quốc gia. Nền tảng được phát triển theo hướng mở, cho phép doanh nghiệp, tổ chức và cơ quan nhà nước dễ dàng tích hợp và khai thác, đồng thời đảm bảo tính minh bạch và không bị chi phối bởi bất kỳ bên trung gian nào.</span></p><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Về mặt kiến trúc, NDAChain vận hành trên cấu trúc bốn lớp bảo mật chặt chẽ, bao gồm lớp mạng hiệu suất cao (1.200–3.600 giao dịch/giây), lớp lưu trữ dữ liệu mã hóa bất biến, lớp ứng dụng linh hoạt với API mở và lớp bảo mật tích hợp các công nghệ tiên tiến như bằng chứng không tiết lộ (ZKP) và định danh phi tập trung (DID). Đồng thời, nền tảng tương thích với các tiêu chuẩn quốc tế như W3C DID, Verifiable Credentials và GDPR, tạo tiền đề cho việc kết nối xuyên biên giới và hội nhập vào hệ sinh thái số toàn cầu.</span></p><h2 class=\"heading-node\"><span style=\"color: hsl(var(--foreground));\"><strong>Từ chính sách đến hạ tầng thực thi</strong></span></h2><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">Hoạt động ở tầng Layer 1, NDAChain đóng vai trò là “xương sống” liên kết các lớp giải pháp và ứng dụng (Layer 2, Layer 3) trong hệ sinh thái số quốc gia. Từ đó, NDAChain không chỉ thúc đẩy liên thông dữ liệu giữa các ngành, mà còn tạo nền móng để xây dựng một xã hội số minh bạch, bền vững và đáng tin cậy.</span></p><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">NDAChain là bước đi chiến lược giúp Việt Nam làm chủ hạ tầng số, bảo vệ dữ liệu công dân và thúc đẩy phát triển kinh tế số. Với thiết kế bảo mật cao, khả năng mở rộng và tích hợp linh hoạt, NDAChain không chỉ là công nghệ – mà là nền tảng kiến tạo tương lai số cho cả Nhà nước, doanh nghiệp và người dân Việt Nam.</span></p>"
|
|
115
|
+
},
|
|
116
|
+
"translations": {
|
|
117
|
+
"en": {
|
|
118
|
+
"content": {
|
|
119
|
+
"htmlContent": "<h2 class=\"heading-node\"><span style=\"color: hsl(var(--foreground));\">11 Core National Technology Groups</span></h2><figure class=\"image-container\"><img src=\"https://s3-sgn10.fptcloud.com/cdn/ndachain-portal/images/2d3efa88dcc67fc0_Gemini_Generated_Image_tn4ngltn4ngltn4n.webp\" alt=\"\" title=\"\" caption=\"11 Core National Technology Groups\" id=\"cw60bu5p9\" width=\"993\" height=\"542\"><figcaption class=\"image-caption\">11 Core National Technology Groups</figcaption></figure><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">The list comprises 11 vital technology groups covering every foundational aspect of the digital economy:</span></p><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">1. <strong>AI, Digital Twin, VR/AR:</strong> Vietnamese LLMs, Virtual Assistants, Specialized & Analytical AI, Digital Twin, and the Metaverse.</span></p><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">2. <strong>Cloud, Quantum & Big Data:</strong> Cloud services, Quantum computing/communications, and Hyperscale Data Centers.</span></p><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">3. <strong>Blockchain Technology:</strong> Digital assets, Digital currency, Cryptocurrency, Blockchain network infrastructure, and Traceability systems.</span></p><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">4. <strong>Next-Gen Mobile (5G/6G):</strong> ORAN-compliant Radio Access Network (RAN) solutions, Core network solutions, and High-speed IP transmission.</span></p><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">5. <strong>Robotics & Automation:</strong> Autonomous Mobile Robots (AMR), Industrial robots, and advanced food processing/post-harvest monitoring systems.</span></p><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">6. <strong>Semiconductors:</strong> Specialized chips, AI chips, and IoT chips.</span></p><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">7. <strong>Advanced Bio-Medicine:</strong> Next-gen vaccines, Gene therapy (medical/agricultural), and Cell therapy (stem cells, immune cells).</span></p><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">8. <strong>Energy & Advanced Materials:</strong> Small Modular Reactors (SMR), Lithium-ion/Solid-state batteries, fuel cells, and advanced materials.</span></p><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">9. <strong>Rare Earths & Deep-Sea/Subsurface Tech:</strong> Exploration, extraction, and refining systems for rare earths; smart geological survey and deep-sea mining tech.</span></p><ol class=\"list-node\" start=\"10\"><li><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\"><strong>Cybersecurity:</strong> Firewalls, Intrusion Detection/Prevention (IDS/IPS), and security for critical infrastructure and National Databases.</span></p></li><li><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\"><strong>Aerospace Tech:</strong> Low-earth orbit (LEO) satellites, ground control stations, and Unmanned Aerial Vehicles (UAVs).</span></p></li></ol><h2 class=\"heading-node\"><span style=\"color: hsl(var(--foreground));\">Blockchain: From Pioneer Tech to Strategic National Infrastructure</span></h2><figure class=\"image-container\"><img src=\"https://s3-sgn10.fptcloud.com/cdn/ndachain-portal/images/b9aae3c5d51af43b_Gemini_Generated_Image_3qd71w3qd71w3qd7.webp\" alt=\"\" title=\"\" caption=\"Blockchain: From Pioneering Technology to Strategic National Infrastructure\" id=\"k0sgwg2dr\" width=\"1076\" height=\"600\"><figcaption class=\"image-caption\">Blockchain: From Pioneering Technology to Strategic National Infrastructure</figcaption></figure><p class=\"text-node\"></p><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">Among the 11 groups, Blockchain stands out as a critical pillar for solving the challenges of Digital Trust and Data Authentication. More than just a standalone technology, Blockchain acts as a \"Proof Infrastructure,\" ensuring digital systems operate with transparency and security without relying on intermediaries.</span></p><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">This importance is amplified by Vietnam’s latest legal frameworks:</span></p><ul class=\"list-node\"><li><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">Data Law 2024: Mandates data integrity and traceability.</span></p></li><li><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">Personal Data Protection Law 2025: Emphasizes access control and transparency.</span></p></li><li><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">International Standards: Alignment with W3C DID, Verifiable Credentials (VC), and GDPR requires an infrastructure capable of cross-border verification.</span></p></li></ul><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">Blockchain's immutability ensures that once data is confirmed, it cannot be altered. According to research by the <em>World Economic Forum</em> and <em>IBM</em>, blockchain can reduce supply chain operating costs by 20–40% and slash verification times from days to near-instantaneous results.</span></p><h2 class=\"heading-node\"><span style=\"color: hsl(var(--foreground));\"><strong>NDAChain – The Trusted Infrastructure for National Digital Strategy</strong></span></h2><figure class=\"image-container\"><img src=\"https://s3-sgn10.fptcloud.com/cdn/ndachain-portal/images/fcade6d2d11e1435_Image.webp\" alt=\"\" title=\"\" caption=\"NDAChain: Trusted Infrastructure for the National Digital Strategy\" id=\"mvw9y8j22\" width=\"1040\" height=\"585\"><figcaption class=\"image-caption\">NDAChain: Trusted Infrastructure for the National Digital Strategy</figcaption></figure><p class=\"text-node\"></p><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">NDAChain is the realization of blockchain technology at a national scale. Designed as strategic infrastructure, it serves essential civic services while ensuring Data Sovereignty.</span></p><h3 class=\"heading-node\"><span style=\"color: hsl(var(--foreground));\">Core Features of NDAChain:</span></h3><ul class=\"list-node\"><li><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">High Performance: Processing between 1,200 – 3,600 transactions per second (TPS).</span></p></li><li><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">Advanced Security: Built-in Zero-Knowledge Proofs (ZKP) and Decentralized Identity (DID).</span></p></li><li><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">Global Compatibility: Fully compliant with W3C DID, Verifiable Credentials, and GDPR, enabling global integration.</span></p></li><li><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">Open Ecosystem: An open-source direction that allows businesses and government agencies to integrate easily without intermediary control.</span></p></li></ul><h2 class=\"heading-node\"><span style=\"color: hsl(var(--foreground));\">From Policy to Implementation</span></h2><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">Operating as a Layer 1 blockchain, NDAChain serves as the \"backbone\" connecting Layer 2 and Layer 3 solutions. It facilitates seamless data exchange between industries, creating a foundation for a transparent and sustainable digital society.</span></p><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">NDAChain is not just a technology; it is a strategic step for Vietnam to master its digital destiny, protect citizen data, and drive the digital economy forward.</span></p>"
|
|
120
|
+
},
|
|
121
|
+
"description": "(ndachain.vn) – Decision No. 1131/QD-TTg was issued as Vietnam accelerates its National Digital Transformation Strategy (Decision 749/QD-TTg) with a vision toward a digital economy and society by 2030. This landmark decision identifies the core technologies prioritized for investment, laying the foundation for long-term national digital infrastructure and technological capacity. Broadly, Decision 1131/QD-TTg serves as Vietnam’s \"Technology Map\" for a new era, acting as a strategic compass to enhance competitive advantages and solidify the nation’s position on the global technology stage.",
|
|
122
|
+
"name": "11 Strategic Technology Groups and Products: A New Vision for Vietnam’s Digital Sovereignty"
|
|
123
|
+
}
|
|
124
|
+
},
|
|
125
|
+
"createdAt": "2026-03-30T06:32:20.948119Z",
|
|
126
|
+
"updatedAt": "2026-03-30T06:32:42.836651Z",
|
|
127
|
+
"type": "manual",
|
|
128
|
+
"aiRequestId": ""
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
"id": "901f9b92-01b6-4bd9-bf27-3350201fc8e9",
|
|
132
|
+
"slug": "eu-digital-product-passport-va-vai-tro-cua-blockchain-quoc-gia-trong-truy-xuat-nguon-goc",
|
|
133
|
+
"name": "EU Digital Product Passport và vai trò của blockchain quốc gia trong truy xuất nguồn gốc",
|
|
134
|
+
"description": "(ndachain.vn) Chuỗi cung ứng toàn cầu đang chuyển sang mô hình quản lý dựa trên dữ liệu, khi hàng hóa di chuyển qua nhiều quốc gia và nhiều bên trung gian. Để tăng tính minh bạch và khả năng truy xuất nguồn gốc, Liên minh châu Âu đã giới thiệu Digital Product Passport (DPP) – hệ thống hồ sơ dữ liệu số cho từng sản phẩm, lưu trữ thông tin từ nguồn nguyên liệu đến tái chế. Trong mô hình này, blockchain được xem là công nghệ giúp đảm bảo dữ liệu truy xuất minh bạch và khó bị chỉnh sửa. Bài viết phân tích cách hộ chiếu số sản phẩm hoạt động và vai trò của blockchain quốc gia trong hệ thống truy xuất nguồn gốc của EU.",
|
|
135
|
+
"thumbnail": "https://s3-sgn10.fptcloud.com/cdn/ndachain-portal/images/55d8a992188c3079_2_(1).webp",
|
|
136
|
+
"publishedAt": "2026-03-19T10:00:00Z",
|
|
137
|
+
"status": "PUBLISHED",
|
|
138
|
+
"application": "ndachain",
|
|
139
|
+
"categoryIds": [
|
|
140
|
+
"180b7e6a-af39-4311-a69b-ed676ca1f181"
|
|
141
|
+
],
|
|
142
|
+
"content": {
|
|
143
|
+
"htmlContent": "<h2 class=\"heading-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\"><strong>EU Digital Product Passport là gì?</strong></span></h2><figure class=\"image-container\"><img src=\"https://s3-sgn10.fptcloud.com/cdn/ndachain-portal/images/68feabe53052a343_1728713654980.webp\" alt=\"\" title=\"\" caption=\"Hộ chiếu số sản phẩm - EU Digital Product Passport (DPP)\" id=\"erwy7n194\" width=\"1065\" height=\"600\"><figcaption class=\"image-caption\">Hộ chiếu số sản phẩm - EU Digital Product Passport (DPP)</figcaption></figure><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\"><strong>Khái niệm</strong></span></p><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Digital Product Passport (DPP) là hộ chiếu số của một sản phẩm, lưu trữ các thông tin quan trọng liên quan đến nguồn gốc, thành phần, quá trình sản xuất và toàn bộ vòng đời của sản phẩm đó. Khái niệm này được Liên minh châu Âu đề xuất trong khuôn khổ Ecodesign for Sustainable Products Regulation (ESPR) nhằm xây dựng một hệ thống dữ liệu minh bạch cho chuỗi cung ứng và thúc đẩy kinh tế tuần hoàn.</span></p><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Khác với các hệ thống truy xuất nguồn gốc truyền thống, vốn chỉ ghi nhận một số dữ liệu rời rạc trong từng khâu của chuỗi cung ứng, hộ chiếu số sản phẩm hướng tới việc tạo ra một bộ dữ liệu liên tục cho từng sản phẩm, từ khai thác nguyên liệu, sản xuất, phân phối, sử dụng cho đến sửa chữa, tái chế hoặc tái sử dụng.</span></p><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Mỗi sản phẩm sẽ có một “passport” riêng gắn với định danh số, cho phép các bên trong chuỗi cung ứng, cơ quan quản lý và người tiêu dùng truy cập thông tin thông qua các công nghệ nhận diện như QR code, NFC chip hoặc RFID.</span></p><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\"><strong>Bối cảnh triển khai</strong></span></p><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Theo Ủy ban châu Âu, Hộ chiếu số sản phẩm sẽ được triển khai theo lộ trình trong thập kỷ này. Dự kiến từ năm 2026, một số ngành công nghiệp lớn như pin xe điện, dệt may và điện tử sẽ bắt đầu áp dụng DPP để chuẩn hóa dữ liệu sản phẩm trong toàn bộ vòng đời.</span></p><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Một báo cáo của European Commission (2023) cho biết việc áp dụng Digital Product Passport có thể giúp:</span></p><ul class=\"list-node\"><li><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">Tăng khả năng truy xuất dữ liệu sản phẩm trong chuỗi cung ứng</span></p></li><li><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">Hỗ trợ các mô hình sửa chữa và tái chế</span></p></li><li><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">Giảm lượng chất thải công nghiệp và phát thải carbon</span></p></li></ul><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Đây cũng được xem là một phần quan trọng trong mục tiêu của EU nhằm đạt net-zero vào năm 2050.</span></p><h2 class=\"heading-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\"><strong>Case study: EU Battery Passport</strong></span></h2><figure class=\"image-container\"><img src=\"https://s3-sgn10.fptcloud.com/cdn/ndachain-portal/images/77ed9dd825be7a7e_battery-pass_0.webp\" alt=\"\" title=\"\" caption=\"EU Battery passport (Nguồn: European Union)\" id=\"62p29xx8v\" width=\"821\" height=\"600\"><figcaption class=\"image-caption\">EU Battery passport (Nguồn: European Union)</figcaption></figure><p class=\"text-node\" style=\"text-align: justify;\"></p><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Một ví dụ tiêu biểu của Digital Product Passport là <strong>Battery Passport</strong> dành cho pin xe điện. Theo quy định mới của EU, từ năm 2027, các loại pin sử dụng trong xe điện bán tại thị trường châu Âu sẽ phải có hồ sơ dữ liệu số chứa thông tin như:</span></p><ul class=\"list-node\"><li><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">Nguồn gốc nguyên liệu (lithium, cobalt, nickel)</span></p></li><li><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">Dữ liệu sản xuất pin</span></p></li><li><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">Dấu chân carbon của pin</span></p></li><li><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">Khả năng tái chế và vòng đời sử dụng</span></p></li></ul><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Thông tin này có thể được truy cập thông qua mã QR hoặc các phương thức nhận diện số khác gắn trực tiếp trên pin. Điều này cho phép nhà sản xuất, nhà quản lý và người tiêu dùng theo dõi vòng đời của pin một cách minh bạch và có thể kiểm chứng.</span></p><h3 class=\"heading-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\"><strong>Tác động thực tế</strong></span></h3><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Khi triển khai trong thực tế, Hộ chiếu số sản phẩm có thể tạo ra nhiều giá trị cụ thể cho chuỗi cung ứng:</span></p><ul class=\"list-node\"><li><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">Minh bạch dữ liệu sản phẩm: người tiêu dùng có thể kiểm tra nguồn gốc và thông tin môi trường của sản phẩm trước khi mua.</span></p></li><li><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">Quản lý vòng đời sản phẩm: doanh nghiệp có thể theo dõi việc sửa chữa, tái sử dụng hoặc tái chế vật liệu.</span></p></li><li><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">Chuẩn hóa dữ liệu chuỗi cung ứng: giúp các doanh nghiệp và cơ quan quản lý chia sẻ dữ liệu theo cùng một tiêu chuẩn.</span></p></li><li><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">Hỗ trợ chống hàng giả: thông tin sản phẩm có thể được xác minh thông qua hệ thống dữ liệu số.</span></p></li></ul><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Nhờ khả năng kết nối dữ liệu trong toàn bộ vòng đời sản phẩm, DPP được xem là một trong những nền tảng dữ liệu quan trọng cho chuỗi cung ứng minh bạch và kinh tế tuần hoàn trong tương lai.</span></p><h2 class=\"heading-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\"><strong>Vì sao blockchain được xem là công nghệ phù hợp cho Hộ chiếu số sản phẩm?</strong></span></h2><h3 class=\"heading-node\"><span style=\"color: hsl(var(--foreground));\"><strong>Vấn đề của hệ thống truy xuất truyền thống</strong></span></h3><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">Trong các chuỗi cung ứng hiện nay, dữ liệu sản phẩm thường được lưu trữ trong nhiều hệ thống riêng biệt của các doanh nghiệp khác nhau như hệ thống ERP, hệ thống quản lý kho, nền tảng logistics hoặc hệ thống của nhà cung cấp nguyên liệu. Việc thiếu một cơ chế chia sẻ dữ liệu thống nhất khiến thông tin về vòng đời sản phẩm bị phân mảnh.</span></p><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Theo European Commission (2023), một sản phẩm công nghiệp trung bình tại châu Âu có thể đi qua 10–15 doanh nghiệp trong chuỗi cung ứng trước khi đến tay người tiêu dùng. Trong nhiều trường hợp, mỗi doanh nghiệp chỉ nắm giữ một phần dữ liệu liên quan đến sản phẩm, khiến việc truy xuất toàn bộ vòng đời sản phẩm trở nên khó khăn.</span></p><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Ngành dệt may là một ví dụ điển hình. Một nghiên cứu của European Environment Agency cho thấy một chiếc áo được bán tại thị trường EU có thể trải qua 6–8 công đoạn sản xuất tại nhiều quốc gia khác nhau, bao gồm sản xuất sợi, dệt vải, nhuộm, may và phân phối. Nếu dữ liệu không được kết nối, việc xác minh nguồn gốc nguyên liệu hoặc điều kiện sản xuất gần như không thể thực hiện một cách nhanh chóng.</span></p><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Ngoài vấn đề phân tán dữ liệu, hệ thống truy xuất truyền thống còn gặp rủi ro về tính toàn vẹn của dữ liệu. Khi dữ liệu được lưu trữ trong cơ sở dữ liệu tập trung của từng doanh nghiệp, thông tin có thể bị chỉnh sửa hoặc thay đổi mà không có cơ chế xác minh độc lập.</span></p><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Một ví dụ thường được nhắc đến là scandal thịt ngựa tại châu Âu năm 2013, khi nhiều sản phẩm được dán nhãn là thịt bò nhưng thực tế chứa thịt ngựa. Việc truy xuất nguồn gốc của các sản phẩm này mất hơn hai tuần vì dữ liệu chuỗi cung ứng nằm rải rác trong nhiều hệ thống khác nhau.</span></p><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Những hạn chế này cho thấy các hệ thống truy xuất truyền thống gặp khó khăn khi áp dụng cho các chuỗi cung ứng toàn cầu và đa bên – điều mà Digital Product Passport đang cố gắng giải quyết.</span></p><h3 class=\"heading-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\"><strong>Blockchain giúp giải quyết vấn đề gì?</strong></span></h3><figure class=\"image-container\"><img src=\"https://s3-sgn10.fptcloud.com/cdn/ndachain-portal/images/08a52fbc9ec73240_Nhân_viên_(3).webp\" alt=\"\" title=\"\" caption=\"Blockchain giúp tăng tính xác thực của dữ liệu truy xuất nguồn gốc\" id=\"bgkq1wagi\" width=\"1067\" height=\"600\"><figcaption class=\"image-caption\">Blockchain giúp tăng tính xác thực của dữ liệu truy xuất nguồn gốc</figcaption></figure><p class=\"text-node\" style=\"text-align: justify;\"></p><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Blockchain được xem là một công nghệ có thể cải thiện tính minh bạch và khả năng xác minh của dữ liệu truy xuất nguồn gốc.</span></p><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Trước hết, blockchain sử dụng cơ chế bất biến dữ liệu (immutability). Khi một thông tin được ghi vào blockchain, việc chỉnh sửa dữ liệu sẽ để lại dấu vết và cần sự đồng thuận của hệ thống. Điều này giúp giảm nguy cơ thay đổi dữ liệu trong chuỗi cung ứng.</span></p><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Thứ hai, blockchain cho phép nhiều bên cùng truy cập và xác minh dữ liệu từ một nguồn thông tin chung. Điều này đặc biệt quan trọng trong các chuỗi cung ứng có nhiều doanh nghiệp tham gia.</span></p><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Một ví dụ thực tế là nền tảng IBM Food Trust, được sử dụng bởi các nhà bán lẻ lớn tại châu Âu như Carrefour. Trước khi áp dụng blockchain, việc truy xuất nguồn gốc một lô thực phẩm có thể mất từ 6 đến 7 ngày. Sau khi triển khai hệ thống blockchain, thời gian truy xuất có thể rút xuống chỉ còn vài giây.</span></p><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Ngoài ra, blockchain còn hỗ trợ xác thực nguồn gốc sản phẩm. Khi mỗi bước trong chuỗi cung ứng được ghi nhận trên blockchain, người tiêu dùng có thể kiểm tra thông tin sản phẩm thông qua mã QR hoặc danh tính số.</span></p><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Một số thương hiệu thời trang châu Âu như Arianee và LVMH Aura Blockchain Consortium đã thử nghiệm việc sử dụng blockchain để cấp định danh số cho sản phẩm cao cấp, cho phép người tiêu dùng kiểm tra nguồn gốc sản phẩm và lịch sử sở hữu.</span></p><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Trong bối cảnh EU đang xây dựng một hệ thống dữ liệu sản phẩm quy mô lớn cho kinh tế tuần hoàn, blockchain được xem là một trong những công nghệ có thể hỗ trợ xây dựng hạ tầng dữ liệu đáng tin cậy cho chuỗi cung ứng trong tương lai.</span></p><h2 class=\"heading-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\"><strong>Blockchain quốc gia và nhu cầu xây dựng nền tảng truy xuất nguồn gốc dùng chung tại Việt Nam</strong></span></h2><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Xu hướng triển khai Digital Product Passport tại châu Âu cho thấy việc quản lý dữ liệu sản phẩm đang chuyển từ mô hình rời rạc sang hạ tầng dữ liệu dùng chung cho chuỗi cung ứng. Trong mô hình này, dữ liệu không chỉ phục vụ doanh nghiệp mà còn trở thành công cụ quản lý của cơ quan nhà nước và là cơ sở để người tiêu dùng xác minh nguồn gốc sản phẩm.</span></p><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Tại Việt Nam, nhu cầu xây dựng hệ thống truy xuất nguồn gốc cũng đang gia tăng, đặc biệt trong các ngành xuất khẩu như nông sản, thủy sản, dệt may và thực phẩm chế biến. Theo Bộ Nông nghiệp và Phát triển Nông thôn, kim ngạch xuất khẩu nông lâm thủy sản của Việt Nam đạt khoảng 53 tỷ USD năm 2023, trong đó nhiều thị trường lớn như EU, Mỹ và Nhật Bản đều yêu cầu ngày càng chặt chẽ về minh bạch chuỗi cung ứng và truy xuất nguồn gốc.</span></p><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Tuy nhiên, hiện nay nhiều hệ thống truy xuất nguồn gốc tại Việt Nam vẫn được triển khai phân tán theo từng địa phương, doanh nghiệp hoặc ngành hàng, khiến dữ liệu khó kết nối và khó xác minh trên phạm vi toàn quốc.</span></p><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Trong bối cảnh đó, việc xây dựng nền tảng truy xuất nguồn gốc dùng chung dựa trên hạ tầng blockchain quốc gia được xem là một hướng tiếp cận tiềm năng. Blockchain có thể đóng vai trò như lớp hạ tầng dữ liệu giúp nhiều bên cùng tham gia ghi nhận và xác minh thông tin sản phẩm, từ nhà sản xuất, nhà phân phối đến cơ quan quản lý.</span></p><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Một nền tảng truy xuất nguồn gốc dùng chung có thể giúp:</span></p><ul class=\"list-node\"><li><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">Chuẩn hóa dữ liệu sản phẩm theo cùng một tiêu chuẩn</span></p></li><li><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">Kết nối dữ liệu giữa doanh nghiệp và cơ quan quản lý</span></p></li><li><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">Hỗ trợ doanh nghiệp đáp ứng yêu cầu truy xuất của các thị trường quốc tế</span></p></li><li><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">Tạo nền tảng cho các mô hình như Digital Product Passport trong tương lai</span></p></li></ul><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Trong bối cảnh kinh tế số và thương mại toàn cầu ngày càng dựa trên dữ liệu, việc phát triển hạ tầng blockchain quốc gia và các nền tảng truy xuất nguồn gốc dùng chung có thể trở thành một bước quan trọng để tăng tính minh bạch của chuỗi cung ứng và nâng cao năng lực cạnh tranh của hàng hóa Việt Nam trên thị trường quốc tế.</span></p><h2 class=\"heading-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\"><strong>Nhu cầu xây dựng nền tảng truy xuất nguồn gốc dùng chung tại Việt Nam</strong></span></h2><figure class=\"image-container\"><img src=\"https://s3-sgn10.fptcloud.com/cdn/ndachain-portal/images/d904d7cd1f7dde7a_3.webp\" alt=\"\" title=\"\" caption=\"Việt Nam cần một nền tảng truy xuất nguồn gốc dùng chung từ trung ương đến địa phương\" id=\"jm3j78u44\" width=\"900\" height=\"600\"><figcaption class=\"image-caption\">Việt Nam cần một nền tảng truy xuất nguồn gốc dùng chung từ trung ương đến địa phương</figcaption></figure><p class=\"text-node\" style=\"text-align: justify;\"></p><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Xu hướng triển khai Hộ chiếu số sản phẩm tại châu Âu cho thấy dữ liệu sản phẩm đang dần được quản lý theo mô hình hạ tầng dữ liệu dùng chung, thay vì các hệ thống rời rạc của từng doanh nghiệp. Điều này giúp nhiều bên trong chuỗi cung ứng từ nhà sản xuất, nhà phân phối đến cơ quan quản lý và người tiêu dùng – có thể truy cập và xác minh thông tin sản phẩm trên cùng một nền tảng.</span></p><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Tại Việt Nam, nhu cầu xây dựng hệ thống truy xuất nguồn gốc đang gia tăng, đặc biệt trong các ngành xuất khẩu như nông sản, thủy sản, thực phẩm và dệt may. Theo số liệu của Bộ Nông nghiệp và Phát triển Nông thôn, kim ngạch xuất khẩu nông lâm thủy sản của Việt Nam đạt khoảng 53,01 tỷ USD năm 2023, trong đó nhiều thị trường lớn như EU, Mỹ và Nhật Bản đang áp dụng ngày càng chặt chẽ các yêu cầu về minh bạch chuỗi cung ứng và truy xuất nguồn gốc.</span></p><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Tuy nhiên, hiện nay nhiều hệ thống truy xuất nguồn gốc tại Việt Nam vẫn được triển khai phân tán theo từng địa phương hoặc từng doanh nghiệp, khiến dữ liệu khó kết nối và thiếu một tiêu chuẩn chung để chia sẻ thông tin. Điều này có thể tạo ra rào cản khi doanh nghiệp cần chứng minh nguồn gốc sản phẩm cho các thị trường quốc tế.</span></p><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Vì vậy, việc xây dựng nền tảng truy xuất nguồn gốc dùng chung ở quy mô quốc gia được xem là một bước quan trọng để chuẩn hóa dữ liệu sản phẩm, tăng khả năng xác minh thông tin và hỗ trợ doanh nghiệp đáp ứng các tiêu chuẩn mới của thương mại toàn cầu.</span></p><h2 class=\"heading-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\"><strong>NDATrace – Nền tảng truy xuất nguồn gốc dùng chung phát triển trên NDAChain</strong></span></h2><figure class=\"image-container\"><img src=\"https://s3-sgn10.fptcloud.com/cdn/ndachain-portal/images/46f5d9887a09a92a_thtruemilk2.webp\" alt=\"\" title=\"\" caption=\"NDATrace - Nền tảng truy xuất nguồn gốc dùng chung tại Việt Nam\" id=\"j3a5uqlxg\" width=\"900\" height=\"600\"><figcaption class=\"image-caption\">NDATrace - Nền tảng truy xuất nguồn gốc dùng chung tại Việt Nam</figcaption></figure><p class=\"text-node\" style=\"text-align: justify;\"></p><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Trong bối cảnh đó, một số nền tảng công nghệ đang được phát triển nhằm xây dựng hệ thống truy xuất nguồn gốc dựa trên hạ tầng dữ liệu tin cậy. Điển hình là <strong>NDATrace</strong>, nền tảng định danh, xác thực và truy xuất nguồn gốc sản phẩm, hàng hoá.</span></p><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Ứng dụng công nghệ định danh phi tập trung (DID) trên nền tảng chuỗi khối NDAChain, mỗi sản phẩm được gắn một mã định danh duy nhất (UID), giúp theo dõi minh bạch toàn bộ vòng đời sản phẩm từ sản xuất, nhập khẩu, kiểm định, vận chuyển đến phân phối và tiêu dùng. Mọi thao tác xác thực của các chủ thể trong chuỗi cung ứng đều được ghi nhận một cách toàn vẹn, không thể làm giả, không thể chỉnh sửa.</span></p><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Một nền tảng truy xuất nguồn gốc dùng chung như NDATrace có thể mang lại nhiều giá trị cho hệ sinh thái dữ liệu sản phẩm tại Việt Nam, bao gồm:</span></p><ul class=\"list-node\"><li><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">Chuẩn hóa dữ liệu truy xuất nguồn gốc giữa doanh nghiệp và cơ quan quản lý</span></p></li><li><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">Kết nối dữ liệu chuỗi cung ứng giữa nhiều bên trong hệ sinh thái</span></p></li><li><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">Hỗ trợ doanh nghiệp đáp ứng yêu cầu truy xuất nguồn gốc của thị trường quốc tế</span></p></li><li><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">Tạo nền tảng để phát triển các mô hình dữ liệu sản phẩm trong tương lai, tương tự Digital Product Passport</span></p></li></ul><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Trong bối cảnh thương mại quốc tế ngày càng phụ thuộc vào minh bạch dữ liệu chuỗi cung ứng, các nền tảng truy xuất nguồn gốc dựa trên hạ tầng blockchain như NDAChain có thể trở thành một công cụ quan trọng giúp doanh nghiệp Việt Nam nâng cao năng lực cạnh tranh trên thị trường toàn cầu.</span></p><h2 class=\"heading-node\"><strong>Số hóa chuỗi cung ứng với DPP: Bước đi chiến lược cho doanh nghiệp Việt</strong></h2><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Hộ chiếu số sản phẩm đang dần trở thành chuẩn dữ liệu mới cho quản lý vòng đời sản phẩm và minh bạch chuỗi cung ứng tại nhiều thị trường, đặc biệt là châu Âu. Thông qua việc xây dựng hồ sơ dữ liệu số cho từng sản phẩm, DPP giúp các bên trong chuỗi cung ứng truy cập và xác minh thông tin về nguồn gốc, sản xuất và tái chế một cách minh bạch hơn.</span></p><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Trong mô hình này, blockchain được xem là công nghệ phù hợp để hỗ trợ ghi nhận và xác thực dữ liệu truy xuất nguồn gốc giữa nhiều bên. Đối với Việt Nam, việc phát triển các nền tảng truy xuất nguồn gốc dùng chung như NDATrace trên hạ tầng blockchain NDAChain có thể giúp chuẩn hóa dữ liệu sản phẩm, hỗ trợ doanh nghiệp đáp ứng yêu cầu minh bạch chuỗi cung ứng của các thị trường quốc tế.</span></p><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">👉 Tìm hiểu thêm về NDAChain – nền tảng blockchain hỗ trợ định danh dữ liệu và truy xuất nguồn gốc sản phẩm.</span></p>"
|
|
144
|
+
},
|
|
145
|
+
"translations": {
|
|
146
|
+
"en": {
|
|
147
|
+
"content": {
|
|
148
|
+
"htmlContent": "<h2 class=\"heading-node\">What is the EU Digital Product Passport (DPP)?</h2><figure class=\"image-container\"><img src=\"https://s3-sgn10.fptcloud.com/cdn/ndachain-portal/images/68feabe53052a343_1728713654980.webp\" alt=\"\" title=\"\" caption=\"EU Digital Product Passport (DPP)\" id=\"erwy7n194\" width=\"1065\" height=\"600\"><figcaption class=\"image-caption\">EU Digital Product Passport (DPP)</figcaption></figure><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Overview</span></p><p class=\"text-node\" style=\"text-align: justify;\">The Digital Product Passport (DPP) is a digital record that stores key information about a product, including its origin, composition, manufacturing process, and entire lifecycle. It was introduced by the European Union under the Ecodesign for Sustainable Products Regulation (ESPR) to create a transparent data system for supply chains and support the circular economy.</p><p class=\"text-node\">Unlike traditional traceability systems, which capture fragmented data at individual stages, DPP aims to build a continuous and unified dataset for each product, from raw material extraction and production to distribution, use, repair, recycling, or reuse.</p><p class=\"text-node\">Each product is assigned a unique digital identity, enabling stakeholders across the supply chain, regulators, and consumers to access information via technologies such as QR codes, NFC chips, or RFID.</p><h3 class=\"heading-node\">Implementation Context</h3><p class=\"text-node\">According to the European Commission, DPP will be rolled out progressively throughout this decade. Starting from 2026, key industries such as electric vehicle batteries, textiles, and electronics are expected to adopt DPP to standardize product data across their lifecycle.</p><p class=\"text-node\">A 2023 report by the European Commission highlights that DPP can:</p><ul class=\"list-node\"><li><p class=\"text-node\">Improve product traceability across supply chains</p></li><li><p class=\"text-node\">Support repair, reuse, and recycling models</p></li><li><p class=\"text-node\">Reduce industrial waste and carbon emissions</p></li></ul><p class=\"text-node\">DPP is also a critical component of the EU’s goal to achieve net-zero emissions by 2050.</p><h2 class=\"heading-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Case study: EU Battery Passport</span></h2><figure class=\"image-container\"><img src=\"https://s3-sgn10.fptcloud.com/cdn/ndachain-portal/images/77ed9dd825be7a7e_battery-pass_0.webp\" alt=\"\" title=\"\" caption=\"EU Battery passport (Source: European Union)\" id=\"62p29xx8v\" width=\"821\" height=\"600\"><figcaption class=\"image-caption\">EU Battery passport (Source: European Union)</figcaption></figure><p class=\"text-node\" style=\"text-align: justify;\"></p><p class=\"text-node\" style=\"text-align: justify;\">A prominent example of DPP is the Battery Passport for electric vehicle batteries. Under new EU regulations, from 2027, EV batteries sold in Europe must include a digital record containing:</p><ul class=\"list-node\"><li><p class=\"text-node\">Raw material sources (lithium, cobalt, nickel)</p></li><li><p class=\"text-node\">Battery production data</p></li><li><p class=\"text-node\">Carbon footprint</p></li><li><p class=\"text-node\">Lifecycle and recyclability information</p></li></ul><p class=\"text-node\">This data can be accessed through QR codes or other digital identifiers attached directly to the battery, enabling transparent and verifiable lifecycle tracking.</p><h3 class=\"heading-node\" style=\"text-align: justify;\">Real-World Impact</h3><p class=\"text-node\">In practice, the Digital Product Passport delivers several key benefits:</p><ul class=\"list-node\"><li><p class=\"text-node\">Product transparency: Consumers can verify origin and environmental data before purchasing</p></li><li><p class=\"text-node\">Lifecycle management: Businesses can track repair, reuse, and recycling processes</p></li><li><p class=\"text-node\">Data standardization: Enables seamless data sharing across organizations and regulators</p></li><li><p class=\"text-node\">Anti-counterfeiting: Product information can be independently verified</p></li></ul><p class=\"text-node\">By connecting data across the entire product lifecycle, DPP is becoming a foundational data layer for transparent supply chains and the circular economy.</p><h2 class=\"heading-node\" style=\"text-align: justify;\">Why is blockchain considered a suitable technology for the Digital Product Passport?</h2><h3 class=\"heading-node\">Challenges of traditional traceability systems</h3><p class=\"text-node\">In today’s supply chains, product data is often stored across multiple isolated systems operated by different organizations, such as ERP systems, warehouse management systems, logistics platforms, or supplier databases. The lack of a unified data-sharing mechanism leads to fragmented product lifecycle information.</p><p class=\"text-node\">According to the European Commission (2023), an average industrial product in Europe may pass through 10–15 companies within the supply chain before reaching the end consumer. In many cases, each company holds only a portion of the product data, making it difficult to trace the complete lifecycle.</p><p class=\"text-node\">The textile industry is a typical example. A study by the European Environment Agency shows that a garment sold in the EU may go through 6–8 production stages across multiple countries, including fiber production, weaving, dyeing, sewing, and distribution. Without connected data, verifying raw material origins or production conditions becomes nearly impossible in a timely manner.</p><p class=\"text-node\">Beyond data fragmentation, traditional traceability systems also face data integrity risks. When data is stored in centralized databases owned by individual organizations, information can be modified or altered without any independent verification mechanism.</p><p class=\"text-node\">A commonly cited example is the 2013 horse meat scandal in Europe, where products labeled as beef were found to contain horse meat. Tracing the origin of these products took more than two weeks due to fragmented supply chain data across multiple systems.</p><p class=\"text-node\">These limitations highlight that traditional traceability systems struggle to support global, multi-party supply chains, a challenge that the Digital Product Passport aims to address.</p><h2 class=\"heading-node\">What problems does blockchain solve?</h2><figure class=\"image-container\"><img src=\"https://s3-sgn10.fptcloud.com/cdn/ndachain-portal/images/08a52fbc9ec73240_Nhân_viên_(3).webp\" alt=\"\" title=\"\" caption=\"Blockchain enhances the authenticity of traceability data.\" id=\"bgkq1wagi\" width=\"1067\" height=\"600\"><figcaption class=\"image-caption\">Blockchain enhances the authenticity of traceability data.</figcaption></figure><p class=\"text-node\" style=\"text-align: justify;\"></p><p class=\"text-node\" style=\"text-align: justify;\">Blockchain is considered a technology that can significantly enhance the transparency and verifiability of traceability data.</p><p class=\"text-node\">First, blockchain leverages data immutability. Once information is recorded on the blockchain, any modification leaves a trace and requires network consensus. This helps reduce the risk of data manipulation within the supply chain.</p><p class=\"text-node\">Second, blockchain enables multi-party access and verification from a shared data source. This is especially important in supply chains involving multiple stakeholders.</p><p class=\"text-node\">A real-world example is IBM Food Trust, used by major European retailers such as Carrefour. Before adopting blockchain, tracing the origin of a food product could take 6–7 days. With blockchain implementation, this process can be reduced to just a few seconds.</p><p class=\"text-node\">In addition, blockchain supports product origin verification. As each step in the supply chain is recorded on the blockchain, consumers can verify product information through QR codes or digital identities.</p><p class=\"text-node\">Several European fashion brands, such as Arianee and the LVMH Aura Blockchain Consortium, have experimented with blockchain to assign digital identities to luxury products, allowing consumers to verify product origin and ownership history.</p><p class=\"text-node\">As the EU develops a large-scale product data system for the circular economy, blockchain is increasingly seen as a key technology for building a trusted data infrastructure for future supply chains.</p><h2 class=\"heading-node\" style=\"text-align: justify;\">Vietnam’s National Blockchain and the Need for a Unified Traceability Platform in Vietnam</h2><p class=\"text-node\" style=\"text-align: justify;\">The trend of implementing <strong>Digital Product Passports (DPP)</strong> in Europe indicates a global shift from fragmented data silos to <strong>shared data infrastructures</strong> for supply chains. In this model, data serves not only enterprises but also acts as a regulatory tool for authorities and a transparency foundation for consumers to verify product origins.</p><p class=\"text-node\">In Vietnam, the demand for robust traceability systems is surging, particularly in key export sectors such as agriculture, fisheries, textiles, and processed foods. According to the Ministry of Agriculture and Rural Development, Vietnam’s agricultural exports reached approximately $53 billion in 2023. Major markets, including the EU, US, and Japan, are imposing increasingly stringent requirements on supply chain transparency and traceability.</p><p class=\"text-node\" style=\"text-align: justify;\">Currently, many traceability systems in Vietnam remain fragmented, operating independently across different provinces, businesses, or industries. This fragmentation makes data synchronization and nationwide verification extremely difficult.</p><p class=\"text-node\" style=\"text-align: justify;\">In this context, developing a unified traceability platform based on National Blockchain Infrastructure is a high-potential strategic approach. Blockchain acts as a decentralized data layer where all stakeholders, from manufacturers and distributors to regulators, can record and verify product information securely.</p><p class=\"text-node\" style=\"text-align: justify;\">A unified traceability platform can help:</p><ul class=\"list-node\"><li><p class=\"text-node\">Standardize product data across the industry.</p></li><li><p class=\"text-node\">Bridge the data gap between enterprises and government authorities.</p></li><li><p class=\"text-node\">Support businesses in meeting strict international market requirements.</p></li><li><p class=\"text-node\">Establish a foundation for future models like the Digital Product Passport (DPP).</p></li></ul><p class=\"text-node\" style=\"text-align: justify;\">In an era where digital economy and global trade are increasingly data-driven, developing national blockchain infrastructure and shared traceability platforms is a vital step. This will enhance supply chain transparency and significantly boost the competitive advantage of Vietnamese goods in the international arena.</p><hr><h2 class=\"heading-node\"><strong>The Imperative for a Unified Traceability Platform in Vietnam</strong></h2><figure class=\"image-container\"><img src=\"https://s3-sgn10.fptcloud.com/cdn/ndachain-portal/images/d904d7cd1f7dde7a_3.webp\" alt=\"\" title=\"\" caption=\"Việt Nam cần một nền tảng truy xuất nguồn gốc dùng chung từ trung ương đến địa phương\" id=\"jm3j78u44\" width=\"900\" height=\"600\"><figcaption class=\"image-caption\">Việt Nam cần một nền tảng truy xuất nguồn gốc dùng chung từ trung ương đến địa phương</figcaption></figure><p class=\"text-node\" style=\"text-align: justify;\"></p><p class=\"text-node\" style=\"text-align: justify;\">The implementation of Digital Product Passports (DPP) in Europe signals a paradigm shift: product data is moving away from isolated company silos toward a shared data infrastructure. This model enables all stakeholders, from manufacturers and distributors to regulators and consumers, to access and verify product information on a single, unified platform.</p><p class=\"text-node\">In Vietnam, the demand for such systems is skyrocketing, particularly in high-stakes export sectors like agriculture, fisheries, food processing, and textiles. According to the Ministry of Agriculture and Rural Development, Vietnam’s agri-forestry-fishery exports reached $53.01 billion in 2023. However, major markets like the EU, US, and Japan are tightening their grip on supply chain transparency and traceability requirements.</p><p class=\"text-node\">Despite the growing need, many traceability systems in Vietnam remain fragmented, implemented locally or within individual enterprises. This lack of a common standard creates significant \"data islands,\" making it difficult to synchronize information and posing a major hurdle for businesses proving product origin to international auditors.</p><p class=\"text-node\">Establishing a national-scale unified traceability platform is no longer an option but a necessity. Such a foundation will:</p><ul class=\"list-node\"><li><p class=\"text-node\">Standardize product data to meet global compliance.</p></li><li><p class=\"text-node\">Enhance verification capabilities through a \"single source of truth.\"</p></li><li><p class=\"text-node\">Empower businesses to seamlessly adapt to the evolving standards of global trade.</p></li></ul><p class=\"text-node\">By bridging the gap between local production and international requirements, a unified platform will be the catalyst for Vietnam's sustainable export growth.</p><h2 class=\"heading-node\"><strong>NDATrace: A Unified Traceability Platform Built on NDAChain</strong></h2><figure class=\"image-container\"><img src=\"https://s3-sgn10.fptcloud.com/cdn/ndachain-portal/images/46f5d9887a09a92a_thtruemilk2.webp\" alt=\"\" title=\"\" caption=\"Vietnam requires a unified traceability platform integrated from central to local levels.\" id=\"j3a5uqlxg\" width=\"900\" height=\"600\"><figcaption class=\"image-caption\">Vietnam requires a unified traceability platform integrated from central to local levels.</figcaption></figure><p class=\"text-node\" style=\"text-align: justify;\"></p><p class=\"text-node\" style=\"text-align: justify;\">In response to global transparency trends, advanced technological platforms are being developed to establish traceability systems based on \"trusted data\" infrastructures. A prime example is NDATrace – a comprehensive platform for identity, authentication, and product traceability.</p><h3 class=\"heading-node\"><strong>Powered by Decentralized Identity (DID)</strong></h3><p class=\"text-node\">By leveraging Decentralized Identity (DID) on the NDAChain blockchain, every product is assigned a Unique Identifier (UID). This enables transparent tracking of the entire product lifecycle, from production, import, and inspection to transportation, distribution, and final consumption. Every authentication action by stakeholders across the supply chain is recorded with absolute integrity, tamper-proof and unalterable.</p><h3 class=\"heading-node\"><strong>Strategic Values for Vietnam's Data Ecosystem</strong></h3><p class=\"text-node\">A unified traceability platform like NDATrace delivers immense value to the national product data landscape:</p><ul class=\"list-node\"><li><p class=\"text-node\">Data Standardization: Aligning traceability data between enterprises and regulatory bodies.</p></li><li><p class=\"text-node\">Ecosystem Connectivity: Seamlessly linking supply chain data across multiple stakeholders.</p></li><li><p class=\"text-node\">Global Compliance: Empowering businesses to meet the stringent traceability requirements of international markets.</p></li><li><p class=\"text-node\">Future-Ready Infrastructure: Serving as the foundation for advanced data models like the Digital Product Passport (DPP).</p></li></ul><p class=\"text-node\">In an era where international trade increasingly depends on supply chain transparency, blockchain-based platforms like NDAChain are becoming vital tools. They not only ensure data integrity but also significantly enhance the global competitive advantage of Vietnamese enterprises.</p><h2 class=\"heading-node\"><strong>Digitalizing Supply Chains with DPP: A Strategic Move for Vietnamese Enterprises</strong></h2><p class=\"text-node\" style=\"text-align: justify;\">The <strong>Digital Product Passport (DPP)</strong> is rapidly becoming the new data standard for product lifecycle management and supply chain transparency across global markets, particularly in Europe. By creating a digital profile for every item, the DPP enables stakeholders to access and verify information regarding origin, production, and recycling with unprecedented clarity.</p><p class=\"text-node\" style=\"text-align: justify;\">In this ecosystem, Blockchain is recognized as the most vital technology to support the recording and authentication of traceability data among multiple parties. For Vietnam, developing shared traceability platforms like NDATrace on the NDAChain blockchain infrastructure provides a critical advantage:</p><ul class=\"list-node\"><li><p class=\"text-node\">Standardizing product data according to international norms.</p></li><li><p class=\"text-node\">Empowering businesses to meet the stringent transparency requirements of global markets.</p></li><li><p class=\"text-node\">Ensuring data integrity that is tamper-proof and verifiable at every stage.</p></li></ul><p class=\"text-node\">As \"transparency\" becomes a non-negotiable requirement for international trade, adopting blockchain-driven solutions like NDAChain is not just about compliance, it is about enhancing the global competitive edge of Vietnamese products.</p><p class=\"text-node\" style=\"text-align: justify;\">👉 Discover more about NDAChain – The blockchain infrastructure powering data identity and product traceability.</p>"
|
|
149
|
+
},
|
|
150
|
+
"description": "(ndachain.vn) Global supply chains are shifting toward data-driven management models, as goods move across multiple countries and intermediaries. To enhance transparency and traceability, the European Union has introduced the Digital Product Passport (DPP), a digital data record for each product that stores information from raw materials to recycling. In this model, blockchain is considered a key technology to ensure that traceability data remains transparent, verifiable, and tamper-resistant. This article explores how the Digital Product Passport works and the role of national blockchain infrastructure in supporting traceability systems across the EU.",
|
|
151
|
+
"name": "EU Digital Product Passport and the Role of National Blockchain in Traceability"
|
|
152
|
+
}
|
|
153
|
+
},
|
|
154
|
+
"createdAt": "2026-03-19T10:40:36.663837Z",
|
|
155
|
+
"updatedAt": "2026-03-19T11:26:23.480944Z",
|
|
156
|
+
"type": "manual",
|
|
157
|
+
"aiRequestId": ""
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
"id": "b274c162-f8d3-4c65-aa1b-ba442b415b4f",
|
|
161
|
+
"slug": "blockchain-layer-1-giup-giai-quyet-van-nan-bang-cap-gia-nhu-the-nao",
|
|
162
|
+
"name": "Blockchain Layer 1 giúp giải quyết vấn nạn bằng cấp giả như thế nào?",
|
|
163
|
+
"description": "(ndachain.vn) Theo World Economic Forum, khoảng 50% lực lượng lao động toàn cầu sẽ cần được đào tạo lại trước năm 2025. Khi giáo dục số phát triển mạnh, việc xác thực văn bằng trở thành một thách thức lớn. Từ châu Âu đến châu Á, nhiều chính phủ đang thử nghiệm blockchain để giải quyết bài toán này. Trong xu hướng đó, Blockchain Layer 1 được xem là hạ tầng tin cậy giúp xây dựng hệ thống giáo dục số minh bạch và an toàn.",
|
|
164
|
+
"thumbnail": "https://s3-sgn10.fptcloud.com/cdn/ndachain-portal/images/d7a06c2c007b1777_6.webp",
|
|
165
|
+
"publishedAt": "2026-03-19T10:00:00Z",
|
|
166
|
+
"status": "PUBLISHED",
|
|
167
|
+
"application": "ndachain",
|
|
168
|
+
"categoryIds": [
|
|
169
|
+
"59661128-acc7-4d6d-b04f-6ca9c9bcbc5b"
|
|
170
|
+
],
|
|
171
|
+
"content": {
|
|
172
|
+
"htmlContent": "<h2 class=\"heading-node\"><span style=\"color: hsl(var(--foreground));\"><strong>Lỗ hổng bảo mật và vấn nạn gian lận bằng cấp: Khi niềm tin bị lung lay</strong></span></h2><figure class=\"image-container\"><img src=\"https://s3-sgn10.fptcloud.com/cdn/ndachain-portal/images/4fbdfcbdb4e85634_3.webp\" alt=\"\" title=\"\" caption=\"Vấn nạn gian lận bằng cấp khiến niềm tin bị lung lay\" id=\"fslq9nxk7\" width=\"849\" height=\"477\"><figcaption class=\"image-caption\">Vấn nạn gian lận bằng cấp khiến niềm tin bị lung lay</figcaption></figure><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">Quá trình số hóa giáo dục đang tạo ra một lượng dữ liệu học tập khổng lồ, từ hồ sơ sinh viên, chứng chỉ kỹ năng, bằng tốt nghiệp cho đến dữ liệu từ các nền tảng đào tạo trực tuyến. Tuy nhiên, khi hệ thống giáo dục chuyển sang môi trường số, nhiều vấn đề về bảo mật và xác thực dữ liệu cũng dần bộc lộ.</span></p><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Phần lớn dữ liệu học tập hiện nay vẫn được lưu trữ rời rạc trong các hệ thống riêng của từng trường hoặc từng tổ chức đào tạo. Sự phân tán này khiến việc kiểm tra và đối chiếu thông tin trở nên khó khăn, đặc biệt trong các quy trình tuyển dụng quốc tế. Bên cạnh đó, sự phát triển của các nền tảng đào tạo trực tuyến cũng làm gia tăng nguy cơ gian lận chứng chỉ và bằng cấp giả.</span></p><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Trong thị trường lao động toàn cầu, nhà tuyển dụng thường phải mất nhiều thời gian để xác minh thông tin học tập của ứng viên. Việc liên hệ trực tiếp với các trường đại học hoặc kiểm tra hồ sơ theo cách thủ công không chỉ làm chậm quá trình tuyển dụng mà còn tạo ra nhiều rủi ro về độ chính xác của dữ liệu.</span></p><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Những hạn chế này cho thấy hệ thống giáo dục hiện nay đang thiếu một <strong>hạ tầng niềm tin</strong> đủ mạnh để đảm bảo dữ liệu học tập có thể được xác thực và chia sẻ một cách minh bạch. Trong bối cảnh đó, blockchain đang được nhiều tổ chức giáo dục và chính phủ nghiên cứu như một giải pháp công nghệ giúp tăng cường khả năng xác thực dữ liệu và giảm thiểu gian lận bằng cấp trong giáo dục số.</span></p><h2 class=\"heading-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\"><strong>Blockchain Layer 1 là gì? Hạ tầng dữ liệu cho giáo dục số</strong></span></h2><p class=\"text-node\" style=\"text-align: justify;\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" class=\"link\" href=\"https://ndachain.vn/vi/blogs/detail/blockchainlayer1lagicochehoatdongvavaitrothenchottronghesinhthaiblockchain\"><span style=\"color: hsl(var(--foreground));\"><u>Blockchain layer 1</u></span></a><span style=\"color: hsl(var(--foreground));\"> là lớp hạ tầng nền tảng của một mạng blockchain, nơi dữ liệu được ghi nhận, lưu trữ và xác thực trực tiếp bởi mạng lưới các node phân tán. Đây là lớp giao thức chính của một hệ thống Blockchain, nơi các giao dịch được xử lý và hoàn tất mà không cần sự hỗ trợ từ bất kỳ mạng lưới nào khác.</span></p><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Một hệ thống </span><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" class=\"link\" href=\"https://ndachain.vn/vi/blogs/detail/blockchainlayer1lagicochehoatdongvavaitrothenchottronghesinhthaiblockchain\"><span style=\"color: hsl(var(--foreground));\"><u>blockchain layer 1</u></span></a><span style=\"color: hsl(var(--foreground));\"> thường bao gồm mạng lưới node tham gia xác thực dữ liệu, cơ chế đồng thuận để đảm bảo các giao dịch được ghi nhận một cách thống nhất, hệ thống lưu trữ dữ liệu bất biến và nền tảng để phát triển các ứng dụng trên blockchain.</span></p><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Khác với các hệ thống cơ sở dữ liệu truyền thống, nơi dữ liệu thường được quản lý bởi một tổ chức trung tâm, blockchain cho phép nhiều tổ chức cùng tham gia xác thực và lưu trữ dữ liệu. Nhờ đó, dữ liệu có thể được chia sẻ và kiểm chứng giữa nhiều bên mà không phụ thuộc vào một đơn vị trung gian duy nhất.</span></p><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Đối với các hệ thống dữ liệu quy mô quốc gia hoặc liên tổ chức, một nền tảng </span><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" class=\"link\" href=\"https://ndachain.vn/vi/blogs/detail/blockchainlayer1lagicochehoatdongvavaitrothenchottronghesinhthaiblockchain\"><span style=\"color: hsl(var(--foreground));\"><u>blockchain layer 1</u></span></a><span style=\"color: hsl(var(--foreground));\"> thường cần đáp ứng một số tiêu chí quan trọng:</span></p><ul class=\"list-node\"><li><p class=\"text-node\" style=\"text-align: justify;\"><strong>Quản trị phân tán:</strong> Node vận hành bởi nhiều tổ chức (Trường học, Bộ ngành, Doanh nghiệp) để tăng độ tin cậy.</p></li><li><p class=\"text-node\" style=\"text-align: justify;\"><strong>Xác thực minh bạch:</strong> Mọi bên liên quan có thể kiểm chứng dữ liệu độc lập và tức thời.</p></li><li><p class=\"text-node\" style=\"text-align: justify;\"><strong>Khả năng tích hợp:</strong> Kết nối mượt mà với các hệ thống giáo dục và nền tảng số hiện có qua API.</p></li><li><p class=\"text-node\" style=\"text-align: justify;\"><strong>Bảo mật & Quyền riêng tư:</strong> Tuân thủ nghiêm ngặt các tiêu chuẩn bảo vệ dữ liệu cá nhân.</p></li><li><p class=\"text-node\" style=\"text-align: justify;\"><strong>Khả năng mở rộng:</strong> Không chỉ dừng lại ở bằng cấp, mà còn hỗ trợ định danh số (Digital ID) và dịch vụ công.</p></li></ul><figure class=\"image-container\"><img src=\"https://s3-sgn10.fptcloud.com/cdn/ndachain-portal/images/16d7b14b3cf3bfe6_5.webp\" alt=\"\" title=\"\" caption=\"Blockchain đóng vai trò là hạ tầng xác thực dữ liệu học tập\" id=\"rkx9ad7q6\" width=\"1023\" height=\"575\"><figcaption class=\"image-caption\">Blockchain đóng vai trò là hạ tầng xác thực dữ liệu học tập</figcaption></figure><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Trong lĩnh vực giáo dục, một nền tảng </span><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" class=\"link\" href=\"https://ndachain.vn/vi/blogs/detail/blockchainlayer1lagicochehoatdongvavaitrothenchottronghesinhthaiblockchain\"><span style=\"color: hsl(var(--foreground));\"><u>blockchain layer 1</u></span></a><span style=\"color: hsl(var(--foreground));\"> đáp ứng các tiêu chí trên có thể đóng vai trò như <strong>hạ tầng xác thực dữ liệu học tập</strong>, nơi các chứng chỉ, bằng cấp và hồ sơ đào tạo được ghi nhận dưới dạng dữ liệu số có thể kiểm chứng. Điều này giúp các tổ chức giáo dục, nhà tuyển dụng và cơ quan quản lý xác minh thông tin học tập một cách nhanh chóng và đáng tin cậy.</span></p><h2 class=\"heading-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\"><strong>Lợi ích của Blockchain Layer 1 trong lĩnh vực giáo dục</strong></span></h2><h3 class=\"heading-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\"><strong>Xác thực văn bằng nhanh chóng và minh bạch</strong></span></h3><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Blockchain layer 1 cho phép các tổ chức giáo dục phát hành văn bằng điện tử có thể kiểm chứng trực tiếp trên hệ thống dữ liệu phân tán. Thay vì phải liên hệ với trường đại học để xác minh thông tin học tập của ứng viên, nhà tuyển dụng có thể kiểm tra tính hợp lệ của văn bằng gần như ngay lập tức. Ví dụ, dự án </span><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" class=\"link\" href=\"https://www.blockcerts.org\"><span style=\"color: hsl(var(--foreground));\"><u>Blockcerts</u></span></a><span style=\"color: hsl(var(--foreground));\"> của MIT cho phép sinh viên nhận bằng tốt nghiệp dưới dạng chứng chỉ số và chia sẻ với nhà tuyển dụng thông qua một liên kết xác minh. Quá trình kiểm tra văn bằng chỉ mất vài giây thay vì nhiều ngày như trong quy trình truyền thống.</span></p><h3 class=\"heading-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\"><strong>Giảm gian lận bằng cấp và chứng chỉ học tập</strong></span></h3><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Một trong những thách thức lớn của hệ thống giáo dục hiện nay là tình trạng gian lận bằng cấp. Theo khảo sát của </span><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" class=\"link\" href=\"https://www.careerbuilder.com\"><span style=\"color: hsl(var(--foreground));\"><u>CareerBuilder,</u></span></a><span style=\"color: hsl(var(--foreground));\"> khoảng 58% nhà tuyển dụng từng phát hiện thông tin sai lệch trong hồ sơ ứng viên, trong đó có cả việc khai gian bằng cấp hoặc chứng chỉ. Blockchain giúp giảm rủi ro này nhờ đặc tính dữ liệu bất biến: khi thông tin văn bằng đã được ghi nhận trên blockchain, dữ liệu gần như không thể bị chỉnh sửa hoặc giả mạo. Điều này giúp tăng độ tin cậy của hệ thống cấp bằng và hỗ trợ các tổ chức giáo dục bảo vệ uy tín của mình.</span></p><h3 class=\"heading-node\"><span style=\"color: hsl(var(--foreground));\"><strong>Tăng khả năng chia sẻ dữ liệu giáo dục giữa các quốc gia</strong></span></h3><figure class=\"image-container\"><img src=\"https://s3-sgn10.fptcloud.com/cdn/ndachain-portal/images/fa4da5a0ffd083e4_1.webp\" alt=\"\" title=\"\" caption=\"Blockchain giúp chia sẻ hồ sơ học tập giữa các quốc gia\" id=\"9jh7nioy1\" width=\"1067\" height=\"600\"><figcaption class=\"image-caption\">Blockchain giúp chia sẻ hồ sơ học tập giữa các quốc gia</figcaption></figure><p class=\"text-node\" style=\"text-align: justify;\"><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" class=\"link\" href=\"https://ndachain.vn/vi/blogs/detail/blockchainlayer1lagicochehoatdongvavaitrothenchottronghesinhthaiblockchain\"><span style=\"color: hsl(var(--foreground));\"><u>Blockchain layer 1</u></span></a><span style=\"color: hsl(var(--foreground));\"> cũng cho phép xây dựng hồ sơ học tập số suốt đời, nơi người học có thể lưu trữ toàn bộ quá trình đào tạo của mình trong một hệ thống dữ liệu thống nhất. Hồ sơ này có thể bao gồm bằng đại học, chứng chỉ nghề, khóa học trực tuyến và các chứng nhận kỹ năng. Theo báo cáo <em>Future of Jobs</em> của World Economic Forum, khoảng 50% lực lượng lao động toàn cầu sẽ cần được đào tạo lại hoặc nâng cấp kỹ năng trước năm 2025. Việc xây dựng hồ sơ học tập số giúp người lao động dễ dàng chứng minh năng lực và cập nhật kỹ năng trong suốt sự nghiệp.</span></p><h3 class=\"heading-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\"><strong>Xây dựng hồ sơ học tập số suốt đời cho người học</strong></span></h3><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Blockchain có thể hỗ trợ chuẩn hóa dữ liệu văn bằng và cho phép các tổ chức giáo dục xác minh chứng chỉ học tập xuyên biên giới. Ví dụ, Liên minh châu Âu đang triển khai hệ thống European Digital Credentials for Learning, cho phép phát hành và xác minh chứng chỉ học tập trên toàn khu vực EU. Hệ thống này được xây dựng trên European Blockchain Services Infrastructure (EBSI), giúp các tổ chức giáo dục và doanh nghiệp xác minh văn bằng của người lao động giữa các quốc gia một cách nhanh chóng.</span></p><h3 class=\"heading-node\" style=\"text-align: justify;\"><strong>Thúc đẩy hệ sinh thái giáo dục số minh bạch hơn</strong></h3><p class=\"text-node\" style=\"text-align: justify;\">Khi dữ liệu học tập được xác thực trên blockchain, nhiều dịch vụ giáo dục số mới có thể được phát triển, bao gồm hệ thống bằng cấp điện tử quốc gia, nền tảng xác minh chứng chỉ trực tuyến và các hệ thống tuyển dụng dựa trên dữ liệu kỹ năng. Theo báo cáo của HolonIQ, thị trường công nghệ giáo dục toàn cầu có thể đạt 404 tỷ USD vào năm 2025, cho thấy nhu cầu ngày càng lớn đối với các hạ tầng dữ liệu giáo dục đáng tin cậy. Blockchain layer 1 vì vậy được xem như một lớp hạ tầng công nghệ giúp xây dựng hệ sinh thái giáo dục minh bạch và đáng tin cậy hơn.</p><h2 class=\"heading-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\"><strong>Case study quốc tế về ứng dụng blockchain trong giáo dục</strong></span></h2><h3 class=\"heading-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">MIT Digital Diplomas</span></h3><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Viện Công nghệ Massachusetts (MIT) là một trong những tổ chức tiên phong ứng dụng blockchain trong việc cấp phát và xác thực văn bằng. Thông qua dự án Blockcerts do MIT Media Lab phát triển, trường đã triển khai hệ thống bằng tốt nghiệp điện tử được ghi nhận trên blockchain. Sinh viên có thể nhận văn bằng dưới dạng dữ liệu số, lưu trữ trong ví điện tử cá nhân và chia sẻ trực tiếp với nhà tuyển dụng hoặc các tổ chức khác. Nhờ cơ chế xác thực trên blockchain, thông tin bằng cấp có thể được kiểm tra gần như ngay lập tức mà không cần liên hệ trực tiếp với trường đại học.</span></p><h3 class=\"heading-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">European Digital Credentials for Learning (EU)</span></h3><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Liên minh châu Âu đang phát triển hệ thống European Digital Credentials for Learning (EDC) nhằm chuẩn hóa cách phát hành và xác minh chứng chỉ học tập trong toàn khu vực. Hệ thống này được tích hợp với European Blockchain Services Infrastructure (EBSI) – nền tảng blockchain do EU xây dựng để hỗ trợ các dịch vụ công số. Thông qua EDC, các tổ chức giáo dục có thể phát hành văn bằng điện tử có thể được xác minh giữa các quốc gia thành viên. Mô hình này hướng tới việc chuẩn hóa dữ liệu học tập, hỗ trợ xác minh văn bằng xuyên biên giới và thúc đẩy sự di chuyển của người lao động trong thị trường chung châu Âu.</span></p><h3 class=\"heading-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Singapore OpenCerts</span></h3><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Singapore là một trong những quốc gia sớm triển khai blockchain cho hệ thống xác thực văn bằng ở cấp quốc gia thông qua nền tảng OpenCerts. Hệ thống này cho phép các tổ chức giáo dục phát hành chứng chỉ dưới dạng dữ liệu số và lưu trữ trên blockchain. Người sử dụng hoặc nhà tuyển dụng có thể truy cập hệ thống để kiểm tra tính hợp lệ của văn bằng chỉ trong vài bước đơn giản. Việc áp dụng blockchain trong OpenCerts giúp giảm nguy cơ gian lận bằng cấp, đơn giản hóa quy trình xác minh văn bằng và nâng cao tính minh bạch của dữ liệu giáo dục.</span></p><h3 class=\"heading-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">VerifyEd</span></h3><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">VerifyEd là một nền tảng công nghệ cho phép các tổ chức giáo dục phát hành và xác thực chứng chỉ học tập trên blockchain. Thông qua hệ thống này, các trường và tổ chức đào tạo có thể cấp chứng chỉ điện tử cho người học, đồng thời cho phép chia sẻ và xác minh văn bằng trên phạm vi toàn cầu. VerifyEd cũng có khả năng tích hợp với các hệ thống quản lý học tập trực tuyến (LMS), giúp tự động hóa quá trình phát hành và xác minh chứng chỉ trong môi trường giáo dục số.</span></p><h2 class=\"heading-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\"><strong>Blockchain Layer 1 và hạ tầng giáo dục quốc gia</strong></span></h2><figure class=\"image-container\"><img src=\"https://s3-sgn10.fptcloud.com/cdn/ndachain-portal/images/3a024e23af01996a_Nhân_viên_(2).webp\" alt=\"\" title=\"\" caption=\"Việt Nam định hướng xây dựng hạ tầng dữ liệu tin cậy cho hệ sinh thái số\" id=\"m00q47idt\" width=\"967\" height=\"544\"><figcaption class=\"image-caption\">Việt Nam định hướng xây dựng hạ tầng dữ liệu tin cậy cho hệ sinh thái số</figcaption></figure><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Trong quá trình chuyển đổi số, nhiều quốc gia đang nghiên cứu xây dựng các nền tảng blockchain quốc gia để hỗ trợ hệ thống giáo dục. Trên nền tảng blockchain layer 1, dữ liệu học tập có thể được ghi nhận và xác thực trong một hạ tầng chung, giúp các tổ chức giáo dục, doanh nghiệp và cơ quan quản lý dễ dàng kiểm chứng thông tin.</span></p><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Hạ tầng này có thể hỗ trợ các dịch vụ như bằng cấp điện tử quốc gia, định danh học tập số, xác thực chứng chỉ xuyên biên giới và chia sẻ dữ liệu giáo dục giữa nhiều tổ chức khác nhau. Điều này đặc biệt quan trọng khi dữ liệu học tập ngày càng trở thành một phần của nền kinh tế kỹ năng và thị trường lao động toàn cầu.</span></p><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Tại Việt Nam, </span><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" class=\"link\" href=\"https://ndachain.vn/vi\"><span style=\"color: hsl(var(--foreground));\">NDAChain – nền tảng blockchain layer 1</span></a><span style=\"color: hsl(var(--foreground));\"><strong> </strong>đang hướng tới việc xây dựng hạ tầng dữ liệu tin cậy cho các hệ sinh thái số, trong đó có khả năng ứng dụng trong giáo dục để xác thực văn bằng và quản lý dữ liệu học tập minh bạch hơn.</span></p><h2 class=\"heading-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\"><strong>Tương lai của giáo dục số</strong></span></h2><figure class=\"image-container\"><img src=\"https://s3-sgn10.fptcloud.com/cdn/ndachain-portal/images/ffd1a5e45241a2ff_2.webp\" alt=\"\" title=\"\" caption=\"Blockchain định hình tương lai của giáo dục số\" id=\"bsop6a5in\" width=\"1030\" height=\"579\"><figcaption class=\"image-caption\">Blockchain định hình tương lai của giáo dục số</figcaption></figure><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Sự phát triển của giáo dục trực tuyến và học tập suốt đời đang làm thay đổi cách dữ liệu học tập được tạo ra và sử dụng. Theo World Economic Forum, khoảng 50% lực lượng lao động toàn cầu sẽ cần được đào tạo lại hoặc nâng cấp kỹ năng trước năm 2025, trong khi thị trường công nghệ giáo dục được HolonIQ dự báo đạt 404 tỷ USD vào năm 2025. Điều này cho thấy nhu cầu ngày càng lớn đối với các hệ thống quản lý và xác thực dữ liệu học tập đáng tin cậy.</span></p><p class=\"text-node\" style=\"text-align: justify;\"><span style=\"color: hsl(var(--foreground));\">Trong bối cảnh đó, blockchain layer 1 đóng vai trò như một lớp hạ tầng giúp bảo vệ tính toàn vẹn của dữ liệu học tập, tăng khả năng xác thực bằng cấp và xây dựng hệ sinh thái giáo dục minh bạch hơn. Khi nhiều quốc gia phát triển các nền tảng blockchain cấp quốc gia, công nghệ này có thể trở thành một phần quan trọng của hệ thống giáo dục số.</span></p><p class=\"text-node\"><span style=\"color: hsl(var(--foreground));\">Tại Việt Nam, NDAChain – nền tảng blockchain layer 1 đang hướng tới xây dựng hạ tầng dữ liệu tin cậy cho các hệ sinh thái số, trong đó có các ứng dụng trong giáo dục và xác thực dữ liệu học tập. Tìm hiểu thêm tại: </span><a target=\"_blank\" rel=\"noopener noreferrer nofollow\" class=\"link\" href=\"https://ndachain.vn\"><span style=\"color: hsl(var(--foreground));\"><u>https://ndachain.vn</u></span></a></p>"
|
|
173
|
+
},
|
|
174
|
+
"translations": {
|
|
175
|
+
"en": {
|
|
176
|
+
"content": {
|
|
177
|
+
"htmlContent": "<h2 class=\"heading-node\"><strong>Security Gaps and Diploma Fraud: When Trust Is Undermined</strong></h2><figure class=\"image-container\"><img src=\"https://s3-sgn10.fptcloud.com/cdn/ndachain-portal/images/4fbdfcbdb4e85634_3.webp\" alt=\"\" title=\"\" caption=\"Diploma Fraud Undermines Trust in the Education System\" id=\"fslq9nxk7\" width=\"849\" height=\"477\"><figcaption class=\"image-caption\">Diploma Fraud Undermines Trust in the Education System</figcaption></figure><p class=\"text-node\">The digital transformation of education is generating massive volumes of learning data, from student records and skill certificates to diplomas and data from online learning platforms. However, as education systems move into digital environments, issues related to data security and verification are becoming increasingly evident.</p><p class=\"text-node\">Most academic data today is still stored in fragmented systems managed separately by each university or training organization. This fragmentation makes it difficult to verify and cross-check information, especially in international recruitment processes. At the same time, the growth of online learning platforms has increased the risk of credential fraud and fake diplomas.</p><p class=\"text-node\">In the global labor market, employers often spend significant time verifying candidates’ academic information. Contacting universities directly or manually reviewing records not only slows down recruitment but also introduces risks related to data accuracy.</p><p class=\"text-node\">These limitations highlight a critical issue: the current education system lacks a strong trust infrastructure to ensure that learning data can be verified and shared transparently. In this context, blockchain is being explored by educational institutions and governments as a technological solution to enhance data verification and reduce credential fraud in digital education.</p><h2 class=\"heading-node\"><strong>What Is Layer 1 Blockchain? A Data Infrastructure for Digital Education</strong></h2><p class=\"text-node\">Layer 1 blockchain is the foundational infrastructure of a blockchain network, where data is recorded, stored, and validated directly by a distributed network of nodes. It represents the core protocol layer of a blockchain system, where transactions are processed and finalized without relying on any external network.</p><p class=\"text-node\">A Layer 1 blockchain system typically includes a network of nodes responsible for data validation, a consensus mechanism to ensure consistency, immutable data storage, and a platform for building applications on top of the blockchain.</p><p class=\"text-node\">Unlike traditional database systems, where data is controlled by a central authority, blockchain allows multiple organizations to participate in validating and storing data. As a result, information can be shared and independently verified across multiple parties without relying on a single intermediary.</p><p class=\"text-node\">For large-scale or cross-organizational data systems, a Layer 1 blockchain platform should meet several key requirements:</p><ul class=\"list-node\"><li><p class=\"text-node\"><strong>Decentralized governance</strong>: Nodes are operated by multiple stakeholders (universities, government agencies, enterprises) to enhance trust</p></li><li><p class=\"text-node\"><strong>Transparent verification</strong>: All parties can independently and instantly verify data</p></li><li><p class=\"text-node\"><strong>Interoperability</strong>: Seamless integration with existing education systems and digital platforms via APIs</p></li><li><p class=\"text-node\"><strong>Security & privacy</strong>: Compliance with strict personal data protection standards</p></li><li><p class=\"text-node\"><strong>Scalability</strong>: Support not only diplomas but also digital identity (Digital ID) and public services</p></li></ul><figure class=\"image-container\"><img src=\"https://s3-sgn10.fptcloud.com/cdn/ndachain-portal/images/16d7b14b3cf3bfe6_5.webp\" alt=\"\" title=\"\" caption=\"Blockchain Serves as the Infrastructure for Verifying Academic Data\" id=\"rkx9ad7q6\" width=\"1023\" height=\"575\"><figcaption class=\"image-caption\">Blockchain Serves as the Infrastructure for Verifying Academic Data</figcaption></figure><p class=\"text-node\">In the education sector, a Layer 1 blockchain platform that meets these criteria can serve as a trusted infrastructure for academic data verification. Diplomas, certificates, and training records can be issued as verifiable digital data, enabling educational institutions, employers, and regulators to validate information quickly and reliably.</p><h2 class=\"heading-node\"><strong>Benefits of Layer 1 Blockchain in Education</strong></h2><h3 class=\"heading-node\"><strong>Fast and Transparent Credential Verification</strong></h3><p class=\"text-node\">Layer 1 blockchain enables educational institutions to issue digital diplomas that can be verified directly on a distributed data network. Instead of contacting universities to validate a candidate’s academic background, employers can verify credentials almost instantly.</p><p class=\"text-node\">For example, MIT’s Blockcerts project allows students to receive digital diplomas and share them with employers via a verification link. The verification process takes only seconds instead of days as in traditional methods.</p><h3 class=\"heading-node\"><strong>Reducing Diploma and Credential Fraud</strong></h3><p class=\"text-node\">Credential fraud remains a major challenge in education. According to CareerBuilder, about 58% of employers have encountered false information in candidate profiles, including fake degrees or certificates.</p><p class=\"text-node\">Blockchain addresses this issue through immutability, once credential data is recorded on the blockchain, it cannot be altered or forged. This significantly increases trust in credential systems and helps institutions protect their reputation.</p><h3 class=\"heading-node\"><strong>Building Lifelong Digital Learning Records</strong></h3><p class=\"text-node\">Layer 1 blockchain enables the creation of lifelong digital learning profiles, where individuals can store their entire educational journey in a unified system.</p><p class=\"text-node\">These profiles may include:</p><ul class=\"list-node\"><li><p class=\"text-node\">University degrees</p></li><li><p class=\"text-node\">Professional certifications</p></li><li><p class=\"text-node\">Online courses</p></li><li><p class=\"text-node\">Skill-based credentials</p></li></ul><p class=\"text-node\">According to the World Economic Forum’s <em>Future of Jobs</em> report, around 50% of the global workforce will need reskilling by 2025. Lifelong learning records allow individuals to continuously update and prove their skills throughout their careers.</p><h3 class=\"heading-node\"><strong>Enhancing Cross-Border Education Data Sharing</strong></h3><figure class=\"image-container\"><img src=\"https://s3-sgn10.fptcloud.com/cdn/ndachain-portal/images/fa4da5a0ffd083e4_1.webp\" alt=\"\" title=\"\" caption=\"Blockchain Enables Cross-Border Sharing of Academic Records\" id=\"9jh7nioy1\" width=\"1067\" height=\"600\"><figcaption class=\"image-caption\">Blockchain Enables Cross-Border Sharing of Academic Records</figcaption></figure><p class=\"text-node\"></p><p class=\"text-node\">Blockchain supports standardized credential data, enabling cross-border verification of academic records.</p><p class=\"text-node\">For example, the European Union is implementing <strong>European Digital Credentials for Learning (EDC)</strong> on the <strong>European Blockchain Services Infrastructure (EBSI)</strong>. This allows institutions and employers to verify credentials across countries quickly and reliably.</p><h3 class=\"heading-node\"><strong>Driving a More Transparent Digital Education Ecosystem</strong></h3><p class=\"text-node\">When academic data is verified on blockchain, new digital education services can emerge, including:</p><ul class=\"list-node\"><li><p class=\"text-node\">National digital diploma systems</p></li><li><p class=\"text-node\">Online credential verification platforms</p></li><li><p class=\"text-node\">Skills-based recruitment systems</p></li></ul><p class=\"text-node\">According to HolonIQ, the global EdTech market could reach $404 billion by 2025, highlighting the growing demand for trusted education data infrastructure.</p><p class=\"text-node\">Layer 1 blockchain is therefore becoming a foundational technology for building transparent and reliable digital education ecosystems.</p><h2 class=\"heading-node\"><strong>Global Case Studies of Blockchain in Education</strong></h2><h3 class=\"heading-node\"><strong>MIT Digital Diplomas</strong></h3><p class=\"text-node\">The Massachusetts Institute of Technology (MIT) is a pioneer in blockchain-based credential issuance. Through the Blockcerts project developed by MIT Media Lab, diplomas are issued as digital credentials stored in personal wallets and shared directly with employers. Verification can be completed instantly without contacting the university.</p><h3 class=\"heading-node\"><strong>European Digital Credentials for Learning (EU)</strong></h3><p class=\"text-node\">The European Union is developing EDC to standardize credential issuance and verification across member states. Built on EBSI, the system enables cross-border verification and supports workforce mobility within the EU.</p><h3 class=\"heading-node\"><strong>Singapore OpenCerts</strong></h3><p class=\"text-node\">Singapore has implemented OpenCerts, a national blockchain-based platform for issuing and verifying certificates. Users and employers can verify credentials in just a few steps, reducing fraud and improving transparency.</p><h3 class=\"heading-node\"><strong>VerifyEd</strong></h3><p class=\"text-node\">VerifyEd is a global platform that enables educational institutions to issue and verify credentials on blockchain. It integrates with Learning Management Systems (LMS), automating credential issuance and verification in digital education environments.</p><h2 class=\"heading-node\"><strong>Layer 1 Blockchain and National Education Infrastructure</strong></h2><figure class=\"image-container\"><img src=\"https://s3-sgn10.fptcloud.com/cdn/ndachain-portal/images/3a024e23af01996a_Nhân_viên_(2).webp\" alt=\"\" title=\"\" caption=\"Vietnam Aims to Build Trusted Data Infrastructure for the Digital Ecosystem\" id=\"m00q47idt\" width=\"967\" height=\"544\"><figcaption class=\"image-caption\">Vietnam Aims to Build Trusted Data Infrastructure for the Digital Ecosystem</figcaption></figure><p class=\"text-node\">As part of digital transformation, many countries are exploring national blockchain platforms to support education systems. On Layer 1 blockchain, academic data can be recorded and verified within a shared infrastructure, enabling institutions, businesses, and regulators to validate information efficiently.</p><p class=\"text-node\">This infrastructure can support:</p><ul class=\"list-node\"><li><p class=\"text-node\">National digital diploma systems</p></li><li><p class=\"text-node\">Digital student identity</p></li><li><p class=\"text-node\">Cross-border credential verification</p></li><li><p class=\"text-node\">Education data sharing across organizations</p></li></ul><p class=\"text-node\">In Vietnam, <strong>NDAChain</strong>, a Layer 1 blockchain platform, is being developed to build trusted data infrastructure for digital ecosystems, including applications in education and credential verification.</p><h2 class=\"heading-node\"><strong>The Future of Digital Education</strong></h2><figure class=\"image-container\"><img src=\"https://s3-sgn10.fptcloud.com/cdn/ndachain-portal/images/ffd1a5e45241a2ff_2.webp\" alt=\"\" title=\"\" caption=\"Blockchain technology is shaping the future of digital education\" id=\"bsop6a5in\" width=\"1030\" height=\"579\"><figcaption class=\"image-caption\">Blockchain technology is shaping the future of digital education</figcaption></figure><p class=\"text-node\">The growth of online learning and lifelong education is reshaping how learning data is created and used. According to the World Economic Forum, around 50% of the global workforce will need reskilling, while HolonIQ projects the EdTech market to reach $404 billion by 2025.</p><p class=\"text-node\">This highlights the increasing demand for reliable systems to manage and verify academic data.</p><p class=\"text-node\">In this context, Layer 1 blockchain acts as a foundational infrastructure that:</p><ul class=\"list-node\"><li><p class=\"text-node\">Ensures data integrity</p></li><li><p class=\"text-node\">Enables instant credential verification</p></li><li><p class=\"text-node\">Builds transparent education ecosystems</p></li></ul><p class=\"text-node\">As more countries develop national blockchain platforms, this technology is expected to become a core component of digital education systems worldwide.</p><p class=\"text-node\">👉 Learn more about <strong>NDAChain</strong> – a Layer 1 blockchain platform building trusted data infrastructure for digital ecosystems: <a target=\"_blank\" rel=\"noopener noreferrer nofollow\" class=\"link\" href=\"https://ndachain.vn\">https://ndachain.vn</a></p>"
|
|
178
|
+
},
|
|
179
|
+
"description": "(ndachain.vn) According to the World Economic Forum, around 50% of the global workforce will need reskilling by 2025. As digital education expands rapidly, credential verification has become a major challenge. From Europe to Asia, governments are experimenting with blockchain to address this issue. In this trend, Layer 1 blockchain is emerging as a trusted infrastructure for building transparent and secure digital education systems.",
|
|
180
|
+
"name": "How Layer 1 Blockchain Solves Diploma Fraud in Digital Education?"
|
|
181
|
+
}
|
|
182
|
+
},
|
|
183
|
+
"createdAt": "2026-03-19T06:53:05.965415Z",
|
|
184
|
+
"updatedAt": "2026-03-19T09:12:52.323828Z",
|
|
185
|
+
"type": "manual",
|
|
186
|
+
"aiRequestId": ""
|
|
187
|
+
}
|
|
188
|
+
];
|
|
189
|
+
|
|
190
|
+
const MOCK_CATEGORIES: BlogCategory[] = [
|
|
191
|
+
{
|
|
192
|
+
id: "180b7e6a-af39-4311-a69b-ed676ca1f181",
|
|
193
|
+
name: "Kiến thức",
|
|
194
|
+
application: "ndachain",
|
|
195
|
+
translations: { en: { name: "Knowledge" } },
|
|
196
|
+
createdAt: "2026-03-09T06:49:17.970811Z",
|
|
197
|
+
updatedAt: "2026-03-10T07:10:50.597389Z",
|
|
198
|
+
legacyId: "",
|
|
199
|
+
slug: "kien-thuc",
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
id: "59661128-acc7-4d6d-b04f-6ca9c9bcbc5b",
|
|
203
|
+
name: "Sản phẩm",
|
|
204
|
+
application: "ndachain",
|
|
205
|
+
translations: { en: { name: "Product", values: { name: "Product" } } },
|
|
206
|
+
createdAt: null,
|
|
207
|
+
updatedAt: "2026-03-10T07:10:57.717023Z",
|
|
208
|
+
legacyId: "68ac1cf4ce53ed5459fa6342",
|
|
209
|
+
slug: "san-pham",
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
id: "5cf1a285-7df7-4554-bd10-7f844f27a92a",
|
|
213
|
+
name: "Công nghệ",
|
|
214
|
+
application: "ndachain",
|
|
215
|
+
translations: { en: { name: "Technology", values: { name: "Technology" } } },
|
|
216
|
+
createdAt: null,
|
|
217
|
+
updatedAt: "2026-03-10T07:11:04.151260Z",
|
|
218
|
+
legacyId: "6852911b3914c57c00c33bb5",
|
|
219
|
+
slug: "cong-nghe",
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
id: "8f27e69e-00cc-4bb9-a2c5-4d636f0e9da5",
|
|
223
|
+
name: "Tin tức",
|
|
224
|
+
application: "ndachain",
|
|
225
|
+
translations: { en: { name: "News", values: { name: "News" } } },
|
|
226
|
+
createdAt: null,
|
|
227
|
+
updatedAt: "2026-03-10T07:11:09.429186Z",
|
|
228
|
+
legacyId: "68ac235cce53ed5459fa6344",
|
|
229
|
+
slug: "tin-tuc",
|
|
230
|
+
},
|
|
231
|
+
];
|
|
232
|
+
|
|
233
|
+
// ---------------------------------------------------------------------------
|
|
234
|
+
// Public API functions
|
|
235
|
+
// ---------------------------------------------------------------------------
|
|
236
|
+
|
|
237
|
+
/** Fetch blogs filtered by category — used by /api/blogs route for client-side TanStack Query. */
|
|
238
|
+
export async function getBlogsByCategory({
|
|
239
|
+
category,
|
|
240
|
+
page = 1,
|
|
241
|
+
pageSize = 9999,
|
|
242
|
+
}: {
|
|
243
|
+
category: string;
|
|
244
|
+
page?: number;
|
|
245
|
+
pageSize?: number;
|
|
246
|
+
}): Promise<Blog[]> {
|
|
247
|
+
if (NEXT_PUBLIC_BLOG_API) {
|
|
248
|
+
const params = new URLSearchParams({
|
|
249
|
+
page: String(page),
|
|
250
|
+
pageSize: String(pageSize),
|
|
251
|
+
applicationFilter: BLOG_API_APPLICATION,
|
|
252
|
+
statusFilter: 'PUBLISHED',
|
|
253
|
+
});
|
|
254
|
+
if (category !== "all") params.set("categorySlugFilter", category);
|
|
255
|
+
const res = await fetch(`${NEXT_PUBLIC_BLOG_API}/blogs?${params}`, { next: { revalidate: 60 } });
|
|
256
|
+
return extractBlogs(await res.json());
|
|
257
|
+
}
|
|
258
|
+
const catId = MOCK_CATEGORIES.find((c) => c.slug === category)?.id;
|
|
259
|
+
const filtered = category !== "all" && catId ? MOCK_BLOGS.filter((p) => p.categoryIds?.includes(catId)) : MOCK_BLOGS;
|
|
260
|
+
return filtered.slice((page - 1) * pageSize, page * pageSize);
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
/** Fetch all blogs (latest N for homepage section). */
|
|
264
|
+
export async function getBlogs(limit?: number): Promise<Blog[]> {
|
|
265
|
+
if (NEXT_PUBLIC_BLOG_API) {
|
|
266
|
+
const params = new URLSearchParams({
|
|
267
|
+
applicationFilter: BLOG_API_APPLICATION,
|
|
268
|
+
statusFilter: 'PUBLISHED',
|
|
269
|
+
});
|
|
270
|
+
if (limit) params.set("pageSize", String(limit));
|
|
271
|
+
const res = await fetch(`${NEXT_PUBLIC_BLOG_API}/blogs?${params}`, { next: { revalidate: 60 } });
|
|
272
|
+
return extractBlogs(await res.json());
|
|
273
|
+
}
|
|
274
|
+
return limit ? MOCK_BLOGS.slice(0, limit) : MOCK_BLOGS;
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
/** Fetch paginated + filtered blogs for the blog list page. */
|
|
278
|
+
export async function getBlogsPaginated({
|
|
279
|
+
page = 1,
|
|
280
|
+
pageSize = 6,
|
|
281
|
+
category,
|
|
282
|
+
}: {
|
|
283
|
+
page?: number;
|
|
284
|
+
pageSize?: number;
|
|
285
|
+
category?: string;
|
|
286
|
+
}): Promise<BlogListResult> {
|
|
287
|
+
if (NEXT_PUBLIC_BLOG_API) {
|
|
288
|
+
const params = new URLSearchParams({ page: String(page), pageSize: String(pageSize), applicationFilter: BLOG_API_APPLICATION });
|
|
289
|
+
if (category) params.set("categorySlugFilter", category);
|
|
290
|
+
const res = await fetch(`${NEXT_PUBLIC_BLOG_API}/blogs?${params}`, { next: { revalidate: 60 } });
|
|
291
|
+
const data: ApiListResponse = await res.json();
|
|
292
|
+
const blogs = extractBlogs(data);
|
|
293
|
+
const { total, totalPages } = extractPagination(data);
|
|
294
|
+
return { blogs, total, totalPages };
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
const catId = category ? MOCK_CATEGORIES.find((c) => c.slug === category)?.id : undefined;
|
|
298
|
+
const filtered = catId ? MOCK_BLOGS.filter((p) => p.categoryIds?.includes(catId)) : MOCK_BLOGS;
|
|
299
|
+
const total = filtered.length;
|
|
300
|
+
const blogs = filtered.slice((page - 1) * pageSize, page * pageSize);
|
|
301
|
+
return { blogs, total, totalPages: Math.ceil(total / pageSize) };
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
/** Fetch all categories. */
|
|
305
|
+
export async function getBlogCategories(): Promise<BlogCategory[]> {
|
|
306
|
+
if (NEXT_PUBLIC_BLOG_API) {
|
|
307
|
+
const params = new URLSearchParams({ applicationFilter: BLOG_API_APPLICATION });
|
|
308
|
+
const res = await fetch(`${NEXT_PUBLIC_BLOG_API}/categories?${params}`, { next: { revalidate: 3600 } });
|
|
309
|
+
const data: ApiListResponse = await res.json();
|
|
310
|
+
return data.categories ?? [];
|
|
311
|
+
}
|
|
312
|
+
return MOCK_CATEGORIES;
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
/** Fetch a single blog by slug — API uses slugFilter query param, returns array, take first. */
|
|
316
|
+
export async function getBlogBySlug(slug: string): Promise<Blog | null> {
|
|
317
|
+
if (NEXT_PUBLIC_BLOG_API) {
|
|
318
|
+
const params = new URLSearchParams({ applicationFilter: BLOG_API_APPLICATION, slugFilter: slug });
|
|
319
|
+
const res = await fetch(`${NEXT_PUBLIC_BLOG_API}/blogs?${params}`, { next: { revalidate: 60 } });
|
|
320
|
+
if (!res.ok) return null;
|
|
321
|
+
const blogs = extractBlogs(await res.json());
|
|
322
|
+
return blogs[0] ?? null;
|
|
323
|
+
}
|
|
324
|
+
return MOCK_BLOGS.find((p) => p.slug === slug) ?? null;
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
/** Fetch related blogs (same category, excluding current slug). */
|
|
328
|
+
export async function getRelatedBlogs(category: string, excludeId: string): Promise<Blog[]> {
|
|
329
|
+
if (NEXT_PUBLIC_BLOG_API) {
|
|
330
|
+
const params = new URLSearchParams({ applicationFilter: BLOG_API_APPLICATION, category, exclude: excludeId });
|
|
331
|
+
const res = await fetch(`${NEXT_PUBLIC_BLOG_API}/blogs?${params}`);
|
|
332
|
+
return extractBlogs(await res.json());
|
|
333
|
+
}
|
|
334
|
+
const catId = MOCK_CATEGORIES.find((c) => c.slug === category)?.id ?? category;
|
|
335
|
+
return MOCK_BLOGS.filter((p) => p.categoryIds?.includes(catId) && p.id !== excludeId);
|
|
336
|
+
}
|