pdfequips-footer 0.0.1 → 0.1.3
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/README.md +32 -42
- package/{src → components}/Footer.tsx +1 -1
- package/{src → components}/FooterLinks.tsx +2 -3
- package/{src/index.scss → index.scss} +2 -2
- package/next.config.ts +8 -0
- package/package.json +13 -20
- package/pages/_app.tsx +6 -0
- package/pages/_document.tsx +13 -0
- package/pages/index.tsx +11 -0
- package/public/favicon.ico +0 -0
- package/public/file.svg +1 -0
- package/public/globe.svg +1 -0
- package/public/next.svg +1 -0
- package/public/vercel.svg +1 -0
- package/public/window.svg +1 -0
- package/src/content/content-ar.ts +33 -33
- package/src/content/content-es.ts +33 -33
- package/src/content/content-fr.ts +33 -33
- package/src/content/content-hi.ts +33 -33
- package/src/content/content-zh.ts +33 -33
- package/tsconfig.json +20 -5
- package/content.d.ts +0 -1
- package/eslint.config.js +0 -28
- package/index.html +0 -13
- package/public/vite.svg +0 -1
- package/src/assets/react.svg +0 -1
- package/src/main.tsx +0 -10
- package/src/vite-env.d.ts +0 -1
- package/tsconfig.app.json +0 -26
- package/tsconfig.node.json +0 -24
- package/vite.config.ts +0 -7
- /package/{src/scss → scss}/_footer.scss +0 -0
- /package/{src/scss → scss}/_mixins.scss +0 -0
package/README.md
CHANGED
|
@@ -1,50 +1,40 @@
|
|
|
1
|
-
|
|
1
|
+
This is a [Next.js](https://nextjs.org) project bootstrapped with [`create-next-app`](https://nextjs.org/docs/pages/api-reference/create-next-app).
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
## Getting Started
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
First, run the development server:
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
|
|
7
|
+
```bash
|
|
8
|
+
npm run dev
|
|
9
|
+
# or
|
|
10
|
+
yarn dev
|
|
11
|
+
# or
|
|
12
|
+
pnpm dev
|
|
13
|
+
# or
|
|
14
|
+
bun dev
|
|
15
|
+
```
|
|
9
16
|
|
|
10
|
-
|
|
17
|
+
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
|
|
11
18
|
|
|
12
|
-
|
|
19
|
+
You can start editing the page by modifying `pages/index.tsx`. The page auto-updates as you edit the file.
|
|
13
20
|
|
|
14
|
-
-
|
|
21
|
+
[API routes](https://nextjs.org/docs/pages/building-your-application/routing/api-routes) can be accessed on [http://localhost:3000/api/hello](http://localhost:3000/api/hello). This endpoint can be edited in `pages/api/hello.ts`.
|
|
15
22
|
|
|
16
|
-
|
|
17
|
-
export default tseslint.config({
|
|
18
|
-
languageOptions: {
|
|
19
|
-
// other options...
|
|
20
|
-
parserOptions: {
|
|
21
|
-
project: ['./tsconfig.node.json', './tsconfig.app.json'],
|
|
22
|
-
tsconfigRootDir: import.meta.dirname,
|
|
23
|
-
},
|
|
24
|
-
},
|
|
25
|
-
})
|
|
26
|
-
```
|
|
23
|
+
The `pages/api` directory is mapped to `/api/*`. Files in this directory are treated as [API routes](https://nextjs.org/docs/pages/building-your-application/routing/api-routes) instead of React pages.
|
|
27
24
|
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
// other rules...
|
|
45
|
-
// Enable its recommended rules
|
|
46
|
-
...react.configs.recommended.rules,
|
|
47
|
-
...react.configs['jsx-runtime'].rules,
|
|
48
|
-
},
|
|
49
|
-
})
|
|
50
|
-
```
|
|
25
|
+
This project uses [`next/font`](https://nextjs.org/docs/pages/building-your-application/optimizing/fonts) to automatically optimize and load [Geist](https://vercel.com/font), a new font family for Vercel.
|
|
26
|
+
|
|
27
|
+
## Learn More
|
|
28
|
+
|
|
29
|
+
To learn more about Next.js, take a look at the following resources:
|
|
30
|
+
|
|
31
|
+
- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
|
|
32
|
+
- [Learn Next.js](https://nextjs.org/learn-pages-router) - an interactive Next.js tutorial.
|
|
33
|
+
|
|
34
|
+
You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js) - your feedback and contributions are welcome!
|
|
35
|
+
|
|
36
|
+
## Deploy on Vercel
|
|
37
|
+
|
|
38
|
+
The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.
|
|
39
|
+
|
|
40
|
+
Check out our [Next.js deployment documentation](https://nextjs.org/docs/pages/building-your-application/deploying) for more details.
|
|
@@ -68,7 +68,7 @@ export const Footer = ({
|
|
|
68
68
|
<div className="bottom-row">
|
|
69
69
|
<div>
|
|
70
70
|
<strong>{footer.bottom_row.pdf_tools}</strong>
|
|
71
|
-
<FooterLinks links={footerLinks}
|
|
71
|
+
<FooterLinks links={footerLinks} />
|
|
72
72
|
</div>
|
|
73
73
|
<div>
|
|
74
74
|
<strong>{footer.bottom_row.languages}</strong>
|
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
interface FooterLinkProps {
|
|
2
2
|
links: { URL: string, text: string }[];
|
|
3
|
-
lang: string;
|
|
4
3
|
}
|
|
5
4
|
|
|
6
|
-
const FooterLinks: React.FC<FooterLinkProps> = ({ links
|
|
5
|
+
const FooterLinks: React.FC<FooterLinkProps> = ({ links }) => {
|
|
7
6
|
return (
|
|
8
7
|
<ul className="footer-links">
|
|
9
8
|
{links.map((link, index) => (
|
|
10
9
|
<li key={index}>
|
|
11
|
-
<a href={`${
|
|
10
|
+
<a href={`${link.URL}`} target="_blank" rel="noopener noreferrer">
|
|
12
11
|
{link.text}
|
|
13
12
|
</a>
|
|
14
13
|
</li>
|
package/next.config.ts
ADDED
package/package.json
CHANGED
|
@@ -1,32 +1,25 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pdfequips-footer",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"type": "module",
|
|
3
|
+
"version": "0.1.3",
|
|
5
4
|
"scripts": {
|
|
6
|
-
"dev": "
|
|
7
|
-
"build": "
|
|
8
|
-
"
|
|
9
|
-
"
|
|
5
|
+
"dev": "next dev --turbopack",
|
|
6
|
+
"build": "next build",
|
|
7
|
+
"start": "next start",
|
|
8
|
+
"lint": "next lint"
|
|
10
9
|
},
|
|
11
10
|
"dependencies": {
|
|
12
|
-
"cssmolecule": "^1.0.
|
|
11
|
+
"cssmolecule": "^1.0.2",
|
|
13
12
|
"custom-bs": "^1.3.0",
|
|
14
|
-
"
|
|
15
|
-
"react
|
|
13
|
+
"next": "15.0.3",
|
|
14
|
+
"react": "19.0.0-rc-66855b96-20241106",
|
|
15
|
+
"react-dom": "19.0.0-rc-66855b96-20241106",
|
|
16
16
|
"react-icons": "^5.3.0"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
|
-
"@
|
|
20
|
-
"@types/react": "^18
|
|
21
|
-
"@types/react-dom": "^18
|
|
22
|
-
"@vitejs/plugin-react-swc": "^3.5.0",
|
|
23
|
-
"eslint": "^9.13.0",
|
|
24
|
-
"eslint-plugin-react-hooks": "^5.0.0",
|
|
25
|
-
"eslint-plugin-react-refresh": "^0.4.14",
|
|
26
|
-
"globals": "^15.11.0",
|
|
19
|
+
"@types/node": "^20",
|
|
20
|
+
"@types/react": "^18",
|
|
21
|
+
"@types/react-dom": "^18",
|
|
27
22
|
"sass": "^1.80.6",
|
|
28
|
-
"typescript": "
|
|
29
|
-
"typescript-eslint": "^8.11.0",
|
|
30
|
-
"vite": "^5.4.10"
|
|
23
|
+
"typescript": "^5"
|
|
31
24
|
}
|
|
32
25
|
}
|
package/pages/_app.tsx
ADDED
package/pages/index.tsx
ADDED
|
Binary file
|
package/public/file.svg
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg fill="none" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.5 13.5V5.41a1 1 0 0 0-.3-.7L9.8.29A1 1 0 0 0 9.08 0H1.5v13.5A2.5 2.5 0 0 0 4 16h8a2.5 2.5 0 0 0 2.5-2.5m-1.5 0v-7H8v-5H3v12a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1M9.5 5V2.12L12.38 5zM5.13 5h-.62v1.25h2.12V5zm-.62 3h7.12v1.25H4.5zm.62 3h-.62v1.25h7.12V11z" clip-rule="evenodd" fill="#666" fill-rule="evenodd"/></svg>
|
package/public/globe.svg
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><g clip-path="url(#a)"><path fill-rule="evenodd" clip-rule="evenodd" d="M10.27 14.1a6.5 6.5 0 0 0 3.67-3.45q-1.24.21-2.7.34-.31 1.83-.97 3.1M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16m.48-1.52a7 7 0 0 1-.96 0H7.5a4 4 0 0 1-.84-1.32q-.38-.89-.63-2.08a40 40 0 0 0 3.92 0q-.25 1.2-.63 2.08a4 4 0 0 1-.84 1.31zm2.94-4.76q1.66-.15 2.95-.43a7 7 0 0 0 0-2.58q-1.3-.27-2.95-.43a18 18 0 0 1 0 3.44m-1.27-3.54a17 17 0 0 1 0 3.64 39 39 0 0 1-4.3 0 17 17 0 0 1 0-3.64 39 39 0 0 1 4.3 0m1.1-1.17q1.45.13 2.69.34a6.5 6.5 0 0 0-3.67-3.44q.65 1.26.98 3.1M8.48 1.5l.01.02q.41.37.84 1.31.38.89.63 2.08a40 40 0 0 0-3.92 0q.25-1.2.63-2.08a4 4 0 0 1 .85-1.32 7 7 0 0 1 .96 0m-2.75.4a6.5 6.5 0 0 0-3.67 3.44 29 29 0 0 1 2.7-.34q.31-1.83.97-3.1M4.58 6.28q-1.66.16-2.95.43a7 7 0 0 0 0 2.58q1.3.27 2.95.43a18 18 0 0 1 0-3.44m.17 4.71q-1.45-.12-2.69-.34a6.5 6.5 0 0 0 3.67 3.44q-.65-1.27-.98-3.1" fill="#666"/></g><defs><clipPath id="a"><path fill="#fff" d="M0 0h16v16H0z"/></clipPath></defs></svg>
|
package/public/next.svg
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 394 80"><path fill="#000" d="M262 0h68.5v12.7h-27.2v66.6h-13.6V12.7H262V0ZM149 0v12.7H94v20.4h44.3v12.6H94v21h55v12.6H80.5V0h68.7zm34.3 0h-17.8l63.8 79.4h17.9l-32-39.7 32-39.6h-17.9l-23 28.6-23-28.6zm18.3 56.7-9-11-27.1 33.7h17.8l18.3-22.7z"/><path fill="#000" d="M81 79.3 17 0H0v79.3h13.6V17l50.2 62.3H81Zm252.6-.4c-1 0-1.8-.4-2.5-1s-1.1-1.6-1.1-2.6.3-1.8 1-2.5 1.6-1 2.6-1 1.8.3 2.5 1a3.4 3.4 0 0 1 .6 4.3 3.7 3.7 0 0 1-3 1.8zm23.2-33.5h6v23.3c0 2.1-.4 4-1.3 5.5a9.1 9.1 0 0 1-3.8 3.5c-1.6.8-3.5 1.3-5.7 1.3-2 0-3.7-.4-5.3-1s-2.8-1.8-3.7-3.2c-.9-1.3-1.4-3-1.4-5h6c.1.8.3 1.6.7 2.2s1 1.2 1.6 1.5c.7.4 1.5.5 2.4.5 1 0 1.8-.2 2.4-.6a4 4 0 0 0 1.6-1.8c.3-.8.5-1.8.5-3V45.5zm30.9 9.1a4.4 4.4 0 0 0-2-3.3 7.5 7.5 0 0 0-4.3-1.1c-1.3 0-2.4.2-3.3.5-.9.4-1.6 1-2 1.6a3.5 3.5 0 0 0-.3 4c.3.5.7.9 1.3 1.2l1.8 1 2 .5 3.2.8c1.3.3 2.5.7 3.7 1.2a13 13 0 0 1 3.2 1.8 8.1 8.1 0 0 1 3 6.5c0 2-.5 3.7-1.5 5.1a10 10 0 0 1-4.4 3.5c-1.8.8-4.1 1.2-6.8 1.2-2.6 0-4.9-.4-6.8-1.2-2-.8-3.4-2-4.5-3.5a10 10 0 0 1-1.7-5.6h6a5 5 0 0 0 3.5 4.6c1 .4 2.2.6 3.4.6 1.3 0 2.5-.2 3.5-.6 1-.4 1.8-1 2.4-1.7a4 4 0 0 0 .8-2.4c0-.9-.2-1.6-.7-2.2a11 11 0 0 0-2.1-1.4l-3.2-1-3.8-1c-2.8-.7-5-1.7-6.6-3.2a7.2 7.2 0 0 1-2.4-5.7 8 8 0 0 1 1.7-5 10 10 0 0 1 4.3-3.5c2-.8 4-1.2 6.4-1.2 2.3 0 4.4.4 6.2 1.2 1.8.8 3.2 2 4.3 3.4 1 1.4 1.5 3 1.5 5h-5.8z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1155 1000"><path d="m577.3 0 577.4 1000H0z" fill="#fff"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill-rule="evenodd" clip-rule="evenodd" d="M1.5 2.5h13v10a1 1 0 0 1-1 1h-11a1 1 0 0 1-1-1zM0 1h16v11.5a2.5 2.5 0 0 1-2.5 2.5h-11A2.5 2.5 0 0 1 0 12.5zm3.75 4.5a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5M7 4.75a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0m1.75.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5" fill="#666"/></svg>
|
|
@@ -23,135 +23,135 @@ import { footerLinksType } from "./content";
|
|
|
23
23
|
|
|
24
24
|
export const footerLinks: footerLinksType = [
|
|
25
25
|
{
|
|
26
|
-
"URL": "https://www.pdfequips.com/pdf-to-psd",
|
|
26
|
+
"URL": "https://www.pdfequips.com/ar/pdf-to-psd",
|
|
27
27
|
"text": "تحويل PDF إلى PSD"
|
|
28
28
|
},
|
|
29
29
|
{
|
|
30
|
-
"URL": "https://www.pdfequips.com/pdf-to-webp",
|
|
30
|
+
"URL": "https://www.pdfequips.com/ar/pdf-to-webp",
|
|
31
31
|
"text": "تحويل PDF إلى WebP"
|
|
32
32
|
},
|
|
33
33
|
{
|
|
34
|
-
"URL": "https://www.pdfequips.com/tiff-to-pdf",
|
|
34
|
+
"URL": "https://www.pdfequips.com/ar/tiff-to-pdf",
|
|
35
35
|
"text": "تحويل TIFF إلى PDF"
|
|
36
36
|
},
|
|
37
37
|
{
|
|
38
|
-
"URL": "https://www.pdfequips.com/pdf-to-tiff",
|
|
38
|
+
"URL": "https://www.pdfequips.com/ar/pdf-to-tiff",
|
|
39
39
|
"text": "تحويل PDF إلى TIFF"
|
|
40
40
|
},
|
|
41
41
|
{
|
|
42
|
-
"URL": "https://www.pdfequips.com/svg-to-pdf",
|
|
42
|
+
"URL": "https://www.pdfequips.com/ar/svg-to-pdf",
|
|
43
43
|
"text": "تحويل SVG إلى PDF"
|
|
44
44
|
},
|
|
45
45
|
{
|
|
46
|
-
"URL": "https://www.pdfequips.com/png-to-pdf",
|
|
46
|
+
"URL": "https://www.pdfequips.com/ar/png-to-pdf",
|
|
47
47
|
"text": "تحويل PNG إلى PDF"
|
|
48
48
|
},
|
|
49
49
|
{
|
|
50
|
-
"URL": "https://www.pdfequips.com/pdf-to-png",
|
|
50
|
+
"URL": "https://www.pdfequips.com/ar/pdf-to-png",
|
|
51
51
|
"text": "تحويل PDF إلى PNG"
|
|
52
52
|
},
|
|
53
53
|
{
|
|
54
|
-
"URL": "https://www.pdfequips.com/pdf-to-heif-heic",
|
|
54
|
+
"URL": "https://www.pdfequips.com/ar/pdf-to-heif-heic",
|
|
55
55
|
"text": "تحويل PDF إلى HEIF/HEIC"
|
|
56
56
|
},
|
|
57
57
|
{
|
|
58
|
-
"URL": "https://www.pdfequips.com/remove-pages",
|
|
58
|
+
"URL": "https://www.pdfequips.com/ar/remove-pages",
|
|
59
59
|
"text": "إزالة الصفحات من PDF"
|
|
60
60
|
},
|
|
61
61
|
{
|
|
62
|
-
"URL": "https://www.pdfequips.com/read-pdf",
|
|
62
|
+
"URL": "https://www.pdfequips.com/ar/read-pdf",
|
|
63
63
|
"text": "قراءة ملفات PDF"
|
|
64
64
|
},
|
|
65
65
|
{
|
|
66
|
-
"URL": "https://www.pdfequips.com/epub-to-pdf",
|
|
66
|
+
"URL": "https://www.pdfequips.com/ar/epub-to-pdf",
|
|
67
67
|
"text": "تحويل EPUB إلى PDF"
|
|
68
68
|
},
|
|
69
69
|
{
|
|
70
|
-
"URL": "https://www.pdfequips.com/heif-heic-to-pdf",
|
|
70
|
+
"URL": "https://www.pdfequips.com/ar/heif-heic-to-pdf",
|
|
71
71
|
"text": "تحويل HEIF/HEIC إلى PDF"
|
|
72
72
|
},
|
|
73
73
|
{
|
|
74
|
-
"URL": "https://www.pdfequips.com/rtf-to-pdf",
|
|
74
|
+
"URL": "https://www.pdfequips.com/ar/rtf-to-pdf",
|
|
75
75
|
"text": "تحويل RTF إلى PDF"
|
|
76
76
|
},
|
|
77
77
|
{
|
|
78
|
-
"URL": "https://www.pdfequips.com/pdf-to-svg",
|
|
78
|
+
"URL": "https://www.pdfequips.com/ar/pdf-to-svg",
|
|
79
79
|
"text": "تحويل PDF إلى SVG"
|
|
80
80
|
},
|
|
81
81
|
{
|
|
82
|
-
"URL": "https://www.pdfequips.com/pdf-to-gif",
|
|
82
|
+
"URL": "https://www.pdfequips.com/ar/pdf-to-gif",
|
|
83
83
|
"text": "تحويل PDF إلى GIF"
|
|
84
84
|
},
|
|
85
85
|
{
|
|
86
|
-
"URL": "https://www.pdfequips.com/sign-pdf",
|
|
86
|
+
"URL": "https://www.pdfequips.com/ar/sign-pdf",
|
|
87
87
|
"text": "توقيع مستندات PDF"
|
|
88
88
|
},
|
|
89
89
|
{
|
|
90
|
-
"URL": "https://www.pdfequips.com/pdf-to-rtf",
|
|
90
|
+
"URL": "https://www.pdfequips.com/ar/pdf-to-rtf",
|
|
91
91
|
"text": "تحويل PDF إلى RTF"
|
|
92
92
|
},
|
|
93
93
|
{
|
|
94
|
-
"URL": "https://www.pdfequips.com/webp-to-pdf",
|
|
94
|
+
"URL": "https://www.pdfequips.com/ar/webp-to-pdf",
|
|
95
95
|
"text": "تحويل WebP إلى PDF"
|
|
96
96
|
},
|
|
97
97
|
{
|
|
98
|
-
"URL": "https://www.pdfequips.com/bmp-to-pdf",
|
|
98
|
+
"URL": "https://www.pdfequips.com/ar/bmp-to-pdf",
|
|
99
99
|
"text": "تحويل BMP إلى PDF"
|
|
100
100
|
},
|
|
101
101
|
{
|
|
102
|
-
"URL": "https://www.pdfequips.com/pdf-to-bmp",
|
|
102
|
+
"URL": "https://www.pdfequips.com/ar/pdf-to-bmp",
|
|
103
103
|
"text": "تحويل PDF إلى BMP"
|
|
104
104
|
},
|
|
105
105
|
{
|
|
106
|
-
"URL": "https://www.pdfequips.com/crop-pdf",
|
|
106
|
+
"URL": "https://www.pdfequips.com/ar/crop-pdf",
|
|
107
107
|
"text": "قص صفحات PDF"
|
|
108
108
|
},
|
|
109
109
|
{
|
|
110
|
-
"URL": "https://www.pdfequips.com/resize-pdf",
|
|
110
|
+
"URL": "https://www.pdfequips.com/ar/resize-pdf",
|
|
111
111
|
"text": "تغيير حجم صفحات PDF"
|
|
112
112
|
},
|
|
113
113
|
{
|
|
114
|
-
"URL": "https://www.pdfequips.com/pdf-to-image",
|
|
114
|
+
"URL": "https://www.pdfequips.com/ar/pdf-to-image",
|
|
115
115
|
"text": "تحويل PDF إلى صورة"
|
|
116
116
|
},
|
|
117
117
|
{
|
|
118
|
-
"URL": "https://www.pdfequips.com/psd-to-pdf",
|
|
118
|
+
"URL": "https://www.pdfequips.com/ar/psd-to-pdf",
|
|
119
119
|
"text": "تحويل PSD إلى PDF"
|
|
120
120
|
},
|
|
121
121
|
{
|
|
122
|
-
"URL": "https://www.pdfequips.com/pdf-to-csv",
|
|
122
|
+
"URL": "https://www.pdfequips.com/ar/pdf-to-csv",
|
|
123
123
|
"text": "تحويل PDF إلى CSV"
|
|
124
124
|
},
|
|
125
125
|
{
|
|
126
|
-
"URL": "https://www.pdfequips.com/merge-pages",
|
|
126
|
+
"URL": "https://www.pdfequips.com/ar/merge-pages",
|
|
127
127
|
"text": "دمج صفحات PDF"
|
|
128
128
|
},
|
|
129
129
|
{
|
|
130
|
-
"URL": "https://www.pdfequips.com/image-to-pdf",
|
|
130
|
+
"URL": "https://www.pdfequips.com/ar/image-to-pdf",
|
|
131
131
|
"text": "تحويل صورة إلى PDF"
|
|
132
132
|
},
|
|
133
133
|
{
|
|
134
|
-
"URL": "https://www.pdfequips.com/excel-to-pdf",
|
|
134
|
+
"URL": "https://www.pdfequips.com/ar/excel-to-pdf",
|
|
135
135
|
"text": "تحويل Excel إلى PDF"
|
|
136
136
|
},
|
|
137
137
|
{
|
|
138
|
-
"URL": "https://www.pdfequips.com/html-to-pdf",
|
|
138
|
+
"URL": "https://www.pdfequips.com/ar/html-to-pdf",
|
|
139
139
|
"text": "تحويل HTML إلى PDF"
|
|
140
140
|
},
|
|
141
141
|
{
|
|
142
|
-
"URL": "https://www.pdfequips.com/text-to-pdf",
|
|
142
|
+
"URL": "https://www.pdfequips.com/ar/text-to-pdf",
|
|
143
143
|
"text": "تحويل نص إلى PDF"
|
|
144
144
|
},
|
|
145
145
|
{
|
|
146
|
-
"URL": "https://www.pdfequips.com/gif-to-pdf",
|
|
146
|
+
"URL": "https://www.pdfequips.com/ar/gif-to-pdf",
|
|
147
147
|
"text": "تحويل GIF إلى PDF"
|
|
148
148
|
},
|
|
149
149
|
{
|
|
150
|
-
"URL": "https://www.pdfequips.com/csv-to-pdf",
|
|
150
|
+
"URL": "https://www.pdfequips.com/ar/csv-to-pdf",
|
|
151
151
|
"text": "تحويل CSV إلى PDF"
|
|
152
152
|
},
|
|
153
153
|
{
|
|
154
|
-
"URL": "https://www.pdfequips.com/pdf-to-epub",
|
|
154
|
+
"URL": "https://www.pdfequips.com/ar/pdf-to-epub",
|
|
155
155
|
"text": "تحويل PDF إلى EPUB"
|
|
156
156
|
}
|
|
157
157
|
];
|
|
@@ -23,135 +23,135 @@ export const footer: _footer = {
|
|
|
23
23
|
|
|
24
24
|
export const footerLinks: footerLinksType = [
|
|
25
25
|
{
|
|
26
|
-
"URL": "https://www.pdfequips.com/pdf-to-psd",
|
|
26
|
+
"URL": "https://www.pdfequips.com/es/pdf-to-psd",
|
|
27
27
|
"text": "Convertir PDF a PSD"
|
|
28
28
|
},
|
|
29
29
|
{
|
|
30
|
-
"URL": "https://www.pdfequips.com/pdf-to-webp",
|
|
30
|
+
"URL": "https://www.pdfequips.com/es/pdf-to-webp",
|
|
31
31
|
"text": "Convertir PDF a WebP"
|
|
32
32
|
},
|
|
33
33
|
{
|
|
34
|
-
"URL": "https://www.pdfequips.com/tiff-to-pdf",
|
|
34
|
+
"URL": "https://www.pdfequips.com/es/tiff-to-pdf",
|
|
35
35
|
"text": "Convertir TIFF a PDF"
|
|
36
36
|
},
|
|
37
37
|
{
|
|
38
|
-
"URL": "https://www.pdfequips.com/pdf-to-tiff",
|
|
38
|
+
"URL": "https://www.pdfequips.com/es/pdf-to-tiff",
|
|
39
39
|
"text": "Convertir PDF a TIFF"
|
|
40
40
|
},
|
|
41
41
|
{
|
|
42
|
-
"URL": "https://www.pdfequips.com/svg-to-pdf",
|
|
42
|
+
"URL": "https://www.pdfequips.com/es/svg-to-pdf",
|
|
43
43
|
"text": "Convertir SVG a PDF"
|
|
44
44
|
},
|
|
45
45
|
{
|
|
46
|
-
"URL": "https://www.pdfequips.com/png-to-pdf",
|
|
46
|
+
"URL": "https://www.pdfequips.com/es/png-to-pdf",
|
|
47
47
|
"text": "Convertir PNG a PDF"
|
|
48
48
|
},
|
|
49
49
|
{
|
|
50
|
-
"URL": "https://www.pdfequips.com/pdf-to-png",
|
|
50
|
+
"URL": "https://www.pdfequips.com/es/pdf-to-png",
|
|
51
51
|
"text": "Convertir PDF a PNG"
|
|
52
52
|
},
|
|
53
53
|
{
|
|
54
|
-
"URL": "https://www.pdfequips.com/pdf-to-heif-heic",
|
|
54
|
+
"URL": "https://www.pdfequips.com/es/pdf-to-heif-heic",
|
|
55
55
|
"text": "Convertir PDF a HEIF/HEIC"
|
|
56
56
|
},
|
|
57
57
|
{
|
|
58
|
-
"URL": "https://www.pdfequips.com/remove-pages",
|
|
58
|
+
"URL": "https://www.pdfequips.com/es/remove-pages",
|
|
59
59
|
"text": "Eliminar páginas de PDF"
|
|
60
60
|
},
|
|
61
61
|
{
|
|
62
|
-
"URL": "https://www.pdfequips.com/read-pdf",
|
|
62
|
+
"URL": "https://www.pdfequips.com/es/read-pdf",
|
|
63
63
|
"text": "Leer archivos PDF"
|
|
64
64
|
},
|
|
65
65
|
{
|
|
66
|
-
"URL": "https://www.pdfequips.com/epub-to-pdf",
|
|
66
|
+
"URL": "https://www.pdfequips.com/es/epub-to-pdf",
|
|
67
67
|
"text": "Convertir EPUB a PDF"
|
|
68
68
|
},
|
|
69
69
|
{
|
|
70
|
-
"URL": "https://www.pdfequips.com/heif-heic-to-pdf",
|
|
70
|
+
"URL": "https://www.pdfequips.com/es/heif-heic-to-pdf",
|
|
71
71
|
"text": "Convertir HEIF/HEIC a PDF"
|
|
72
72
|
},
|
|
73
73
|
{
|
|
74
|
-
"URL": "https://www.pdfequips.com/rtf-to-pdf",
|
|
74
|
+
"URL": "https://www.pdfequips.com/es/rtf-to-pdf",
|
|
75
75
|
"text": "Convertir RTF a PDF"
|
|
76
76
|
},
|
|
77
77
|
{
|
|
78
|
-
"URL": "https://www.pdfequips.com/pdf-to-svg",
|
|
78
|
+
"URL": "https://www.pdfequips.com/es/pdf-to-svg",
|
|
79
79
|
"text": "Convertir PDF a SVG"
|
|
80
80
|
},
|
|
81
81
|
{
|
|
82
|
-
"URL": "https://www.pdfequips.com/pdf-to-gif",
|
|
82
|
+
"URL": "https://www.pdfequips.com/es/pdf-to-gif",
|
|
83
83
|
"text": "Convertir PDF a GIF"
|
|
84
84
|
},
|
|
85
85
|
{
|
|
86
|
-
"URL": "https://www.pdfequips.com/sign-pdf",
|
|
86
|
+
"URL": "https://www.pdfequips.com/es/sign-pdf",
|
|
87
87
|
"text": "Firmar documentos PDF"
|
|
88
88
|
},
|
|
89
89
|
{
|
|
90
|
-
"URL": "https://www.pdfequips.com/pdf-to-rtf",
|
|
90
|
+
"URL": "https://www.pdfequips.com/es/pdf-to-rtf",
|
|
91
91
|
"text": "Convertir PDF a RTF"
|
|
92
92
|
},
|
|
93
93
|
{
|
|
94
|
-
"URL": "https://www.pdfequips.com/webp-to-pdf",
|
|
94
|
+
"URL": "https://www.pdfequips.com/es/webp-to-pdf",
|
|
95
95
|
"text": "Convertir WebP a PDF"
|
|
96
96
|
},
|
|
97
97
|
{
|
|
98
|
-
"URL": "https://www.pdfequips.com/bmp-to-pdf",
|
|
98
|
+
"URL": "https://www.pdfequips.com/es/bmp-to-pdf",
|
|
99
99
|
"text": "Convertir BMP a PDF"
|
|
100
100
|
},
|
|
101
101
|
{
|
|
102
|
-
"URL": "https://www.pdfequips.com/pdf-to-bmp",
|
|
102
|
+
"URL": "https://www.pdfequips.com/es/pdf-to-bmp",
|
|
103
103
|
"text": "Convertir PDF a BMP"
|
|
104
104
|
},
|
|
105
105
|
{
|
|
106
|
-
"URL": "https://www.pdfequips.com/crop-pdf",
|
|
106
|
+
"URL": "https://www.pdfequips.com/es/crop-pdf",
|
|
107
107
|
"text": "Recortar páginas PDF"
|
|
108
108
|
},
|
|
109
109
|
{
|
|
110
|
-
"URL": "https://www.pdfequips.com/resize-pdf",
|
|
110
|
+
"URL": "https://www.pdfequips.com/es/resize-pdf",
|
|
111
111
|
"text": "Redimensionar páginas PDF"
|
|
112
112
|
},
|
|
113
113
|
{
|
|
114
|
-
"URL": "https://www.pdfequips.com/pdf-to-image",
|
|
114
|
+
"URL": "https://www.pdfequips.com/es/pdf-to-image",
|
|
115
115
|
"text": "Convertir PDF a imagen"
|
|
116
116
|
},
|
|
117
117
|
{
|
|
118
|
-
"URL": "https://www.pdfequips.com/psd-to-pdf",
|
|
118
|
+
"URL": "https://www.pdfequips.com/es/psd-to-pdf",
|
|
119
119
|
"text": "Convertir PSD a PDF"
|
|
120
120
|
},
|
|
121
121
|
{
|
|
122
|
-
"URL": "https://www.pdfequips.com/pdf-to-csv",
|
|
122
|
+
"URL": "https://www.pdfequips.com/es/pdf-to-csv",
|
|
123
123
|
"text": "Convertir PDF a CSV"
|
|
124
124
|
},
|
|
125
125
|
{
|
|
126
|
-
"URL": "https://www.pdfequips.com/merge-pages",
|
|
126
|
+
"URL": "https://www.pdfequips.com/es/merge-pages",
|
|
127
127
|
"text": "Unir páginas PDF"
|
|
128
128
|
},
|
|
129
129
|
{
|
|
130
|
-
"URL": "https://www.pdfequips.com/image-to-pdf",
|
|
130
|
+
"URL": "https://www.pdfequips.com/es/image-to-pdf",
|
|
131
131
|
"text": "Convertir imagen a PDF"
|
|
132
132
|
},
|
|
133
133
|
{
|
|
134
|
-
"URL": "https://www.pdfequips.com/excel-to-pdf",
|
|
134
|
+
"URL": "https://www.pdfequips.com/es/excel-to-pdf",
|
|
135
135
|
"text": "Convertir Excel a PDF"
|
|
136
136
|
},
|
|
137
137
|
{
|
|
138
|
-
"URL": "https://www.pdfequips.com/html-to-pdf",
|
|
138
|
+
"URL": "https://www.pdfequips.com/es/html-to-pdf",
|
|
139
139
|
"text": "Convertir HTML a PDF"
|
|
140
140
|
},
|
|
141
141
|
{
|
|
142
|
-
"URL": "https://www.pdfequips.com/text-to-pdf",
|
|
142
|
+
"URL": "https://www.pdfequips.com/es/text-to-pdf",
|
|
143
143
|
"text": "Convertir texto a PDF"
|
|
144
144
|
},
|
|
145
145
|
{
|
|
146
|
-
"URL": "https://www.pdfequips.com/gif-to-pdf",
|
|
146
|
+
"URL": "https://www.pdfequips.com/es/gif-to-pdf",
|
|
147
147
|
"text": "Convertir GIF a PDF"
|
|
148
148
|
},
|
|
149
149
|
{
|
|
150
|
-
"URL": "https://www.pdfequips.com/csv-to-pdf",
|
|
150
|
+
"URL": "https://www.pdfequips.com/es/csv-to-pdf",
|
|
151
151
|
"text": "Convertir CSV a PDF"
|
|
152
152
|
},
|
|
153
153
|
{
|
|
154
|
-
"URL": "https://www.pdfequips.com/pdf-to-epub",
|
|
154
|
+
"URL": "https://www.pdfequips.com/es/pdf-to-epub",
|
|
155
155
|
"text": "Convertir PDF a EPUB"
|
|
156
156
|
}
|
|
157
157
|
];
|