pdfequips-footer 0.1.6 → 0.1.8
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/components/Footer.tsx +12 -0
- package/{next.config.ts → next.config.js} +1 -3
- package/package.json +3 -2
- package/scss/_footer.scss +7 -0
- package/src/content/content-ar.ts +2 -1
- package/src/content/content-es.ts +2 -1
- package/src/content/content-fr.ts +2 -1
- package/src/content/content-hi.ts +2 -1
- package/src/content/content-zh.ts +2 -1
- package/src/content/content.ts +1 -0
- package/tsconfig.json +1 -1
package/components/Footer.tsx
CHANGED
|
@@ -94,6 +94,15 @@ export const Footer = ({
|
|
|
94
94
|
<li>
|
|
95
95
|
<a href="/zh/" className="text-muted">中文</a>
|
|
96
96
|
</li>
|
|
97
|
+
<li>
|
|
98
|
+
<a href="https://www.buymeacoffee.com/sanusi" target="_blank"
|
|
99
|
+
><img
|
|
100
|
+
src="https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png"
|
|
101
|
+
alt="Buy Me A Coffee"
|
|
102
|
+
style={{ height: "60px !important", width: "217px !important" }}
|
|
103
|
+
/>
|
|
104
|
+
</a>
|
|
105
|
+
</li>
|
|
97
106
|
</ul>
|
|
98
107
|
</div>
|
|
99
108
|
<div>
|
|
@@ -108,6 +117,9 @@ export const Footer = ({
|
|
|
108
117
|
<li>
|
|
109
118
|
<a href="/blog" className="text-muted">{footer.bottom_row.blog}</a>
|
|
110
119
|
</li>
|
|
120
|
+
<li>
|
|
121
|
+
<a href="/contact" className="text-muted">{footer.bottom_row.contact}</a>
|
|
122
|
+
</li>
|
|
111
123
|
</ul>
|
|
112
124
|
</div>
|
|
113
125
|
<div>
|
package/package.json
CHANGED
package/scss/_footer.scss
CHANGED
package/src/content/content.ts
CHANGED