We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1fda992 commit 44e822cCopy full SHA for 44e822c
apps/languagesv2/languages-v2-web/src/pages/Home.tsx
@@ -1,6 +1,9 @@
1
import React, { useState } from 'react';
2
import VietnameseWords, { VietnameseWord } from './VietnameseWords';
3
4
+// Example build version, replace this with an environment variable if needed.
5
+const buildVersion = '1.0.0';
6
+
7
const frequentVietnameseWords = VietnameseWords;
8
9
function Home() {
@@ -88,6 +91,9 @@ function Home() {
88
91
<div className="text-center text-gray-800 text-sm">
89
92
Made with <span className="text-red-500 animate-pulse">❤️</span> by <strong className="text-indigo-800">Thảnh Thơi Team</strong>
90
93
</div>
94
+ <div className="text-center text-gray-600 mt-2">
95
+ Build Version: <span className="font-semibold">{buildVersion}</span>
96
+ </div>
97
</footer>
98
99
);
0 commit comments