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.
@@ -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>
@@ -1,6 +1,4 @@
1
- import type { NextConfig } from "next";
2
-
3
- const nextConfig: NextConfig = {
1
+ const nextConfig = {
4
2
  /* config options here */
5
3
  reactStrictMode: true,
6
4
  };
package/package.json CHANGED
@@ -1,8 +1,9 @@
1
1
  {
2
2
  "name": "pdfequips-footer",
3
- "version": "0.1.6",
3
+ "version": "0.1.8",
4
+ "type": "module",
4
5
  "scripts": {
5
- "dev": "next dev --turbopack",
6
+ "dev": "next dev",
6
7
  "build": "next build",
7
8
  "start": "next start",
8
9
  "lint": "next lint"
package/scss/_footer.scss CHANGED
@@ -27,6 +27,13 @@ footer {
27
27
  align-self: stretch;
28
28
  }
29
29
 
30
+ .buy-me-coffee-btn {
31
+ img {
32
+ height: 60px !important;
33
+ width: 217px !important;
34
+ }
35
+ }
36
+
30
37
  .socials {
31
38
  @include extend("col d-flex justify-content-between align-items-center");
32
39
 
@@ -14,7 +14,8 @@ export const footer: _footer = {
14
14
  title: "قانوني",
15
15
  terms: "شروط الخدمة",
16
16
  privacy_policy: "سياسة الخصوصية",
17
- }
17
+ },
18
+ contact: "اتصل بنا"
18
19
  }
19
20
  };
20
21
 
@@ -15,7 +15,8 @@ export const footer: _footer = {
15
15
  title: "Legal",
16
16
  terms: "Términos del Servicio",
17
17
  privacy_policy: "Política de Privacidad",
18
- }
18
+ },
19
+ contact: "Contáctanos"
19
20
  }
20
21
  };
21
22
 
@@ -15,7 +15,8 @@ export const footer: _footer = {
15
15
  title: "Légal",
16
16
  terms: "Conditions d'Utilisation",
17
17
  privacy_policy: "Politique de Confidentialité",
18
- }
18
+ },
19
+ contact: "Contactez-nous"
19
20
  }
20
21
  };
21
22
 
@@ -15,7 +15,8 @@ export const footer: _footer = {
15
15
  title: "कानूनी",
16
16
  terms: "सेवा की शर्तें",
17
17
  privacy_policy: "गोपनीयता नीति",
18
- }
18
+ },
19
+ contact: "हमसे संपर्क करें"
19
20
  }
20
21
  };
21
22
 
@@ -15,7 +15,8 @@ export const footer: _footer = {
15
15
  title: "法律",
16
16
  terms: "服务条款",
17
17
  privacy_policy: "隐私政策",
18
- }
18
+ },
19
+ contact: "联系我们"
19
20
  }
20
21
  };
21
22
 
@@ -6,6 +6,7 @@ export const footer = {
6
6
  languages: "Languages",
7
7
  company: "Company",
8
8
  about: "About Us",
9
+ contact: "Contact",
9
10
  faq: "FAQ",
10
11
  blog: "Blog",
11
12
  legal: {
package/tsconfig.json CHANGED
@@ -17,6 +17,6 @@
17
17
  "@/*": ["./*"]
18
18
  }
19
19
  },
20
- "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
20
+ "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", "next.config.js"],
21
21
  "exclude": ["node_modules"]
22
22
  }