@0xchain/footer 1.1.0-beta.51 → 1.1.0-beta.53
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/index.js +1 -1
- package/package.json +5 -5
- package/src/index.tsx +1 -1
package/dist/index.js
CHANGED
|
@@ -28,7 +28,7 @@ function Footer() {
|
|
|
28
28
|
/* @__PURE__ */ jsxs("div", { className: "flex flex-col md:flex-row justify-between shrink-0 w-full md:w-1/2", children: [
|
|
29
29
|
/* @__PURE__ */ jsxs("div", { className: "flex flex-col gap-3 py-3 md:py-0", children: [
|
|
30
30
|
/* @__PURE__ */ jsx("div", { className: "text-foreground", children: /* @__PURE__ */ jsx(Translation, { value: "product", parentKey: "footer" }) }),
|
|
31
|
-
/* @__PURE__ */ jsx("div", { className: "text-muted-foreground flex flex-col gap-3", children: /* @__PURE__ */ jsx(LinkBar, { href: "/token-list", baseUrl: process.env.
|
|
31
|
+
/* @__PURE__ */ jsx("div", { className: "text-muted-foreground flex flex-col gap-3", children: /* @__PURE__ */ jsx(LinkBar, { href: "/token-list", baseUrl: process.env.NEXT_PUBLIC_APP_URL, children: /* @__PURE__ */ jsx(Translation, { value: "tokenList", parentKey: "footer" }) }) })
|
|
32
32
|
] }),
|
|
33
33
|
/* @__PURE__ */ jsxs("div", { className: "flex flex-col gap-3 py-3 md:py-0", children: [
|
|
34
34
|
/* @__PURE__ */ jsx("div", { className: "text-foreground", children: /* @__PURE__ */ jsx(Translation, { value: "contactUs", parentKey: "footer" }) }),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@0xchain/footer",
|
|
3
|
-
"version": "1.1.0-beta.
|
|
3
|
+
"version": "1.1.0-beta.53",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.js",
|
|
@@ -32,10 +32,10 @@
|
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"lucide-react": "0.539.0",
|
|
35
|
-
"@0xchain/i18n": "1.1.0-beta.
|
|
36
|
-
"@0xchain/image": "1.1.0-beta.
|
|
37
|
-
"@0xchain/link": "1.1.0-beta.
|
|
38
|
-
"@0xchain/translation": "1.1.0-beta.
|
|
35
|
+
"@0xchain/i18n": "1.1.0-beta.53",
|
|
36
|
+
"@0xchain/image": "1.1.0-beta.53",
|
|
37
|
+
"@0xchain/link": "1.1.0-beta.53",
|
|
38
|
+
"@0xchain/translation": "1.1.0-beta.53"
|
|
39
39
|
},
|
|
40
40
|
"nx": {
|
|
41
41
|
"tags": [
|
package/src/index.tsx
CHANGED
|
@@ -18,7 +18,7 @@ export default function Footer() {
|
|
|
18
18
|
<div className="flex flex-col gap-3 py-3 md:py-0">
|
|
19
19
|
<div className="text-foreground"><Translation value="product" parentKey='footer' /></div>
|
|
20
20
|
<div className="text-muted-foreground flex flex-col gap-3">
|
|
21
|
-
<LinkBar href="/token-list" baseUrl={process.env.
|
|
21
|
+
<LinkBar href="/token-list" baseUrl={process.env.NEXT_PUBLIC_APP_URL}><Translation value="tokenList" parentKey='footer' /></LinkBar>
|
|
22
22
|
</div>
|
|
23
23
|
</div>
|
|
24
24
|
<div className="flex flex-col gap-3 py-3 md:py-0">
|