pdfequips-footer 0.1.5 → 0.1.7

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.
@@ -108,6 +108,9 @@ export const Footer = ({
108
108
  <li>
109
109
  <a href="/blog" className="text-muted">{footer.bottom_row.blog}</a>
110
110
  </li>
111
+ <li>
112
+ <a href="/contact" className="text-muted">{footer.bottom_row.contact}</a>
113
+ </li>
111
114
  </ul>
112
115
  </div>
113
116
  <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.5",
3
+ "version": "0.1.7",
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"
@@ -10,9 +11,9 @@
10
11
  "dependencies": {
11
12
  "cssmolecule": "^1.0.2",
12
13
  "custom-bs": "^1.3.0",
13
- "next": "15.0.3",
14
- "react": "19.0.0-rc-66855b96-20241106",
15
- "react-dom": "19.0.0-rc-66855b96-20241106",
14
+ "next": "^13.4.19",
15
+ "react": "^18.2.0",
16
+ "react-dom": "^18.2.0",
16
17
  "react-icons": "^5.3.0"
17
18
  },
18
19
  "devDependencies": {
@@ -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
  }