pdfequips-footer 0.1.10 → 0.1.12

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.
@@ -0,0 +1,4 @@
1
+ {
2
+ "recommendations": ["astro-build.astro-vscode"],
3
+ "unwantedRecommendations": []
4
+ }
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": "0.2.0",
3
+ "configurations": [
4
+ {
5
+ "command": "./node_modules/.bin/astro dev",
6
+ "name": "Development server",
7
+ "request": "launch",
8
+ "type": "node-terminal"
9
+ }
10
+ ]
11
+ }
package/README.md CHANGED
@@ -1,40 +1,43 @@
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).
1
+ # Astro Starter Kit: Minimal
2
2
 
3
- ## Getting Started
4
-
5
- First, run the development server:
6
-
7
- ```bash
8
- npm run dev
9
- # or
10
- yarn dev
11
- # or
12
- pnpm dev
13
- # or
14
- bun dev
3
+ ```sh
4
+ npm create astro@latest -- --template minimal
15
5
  ```
16
6
 
17
- Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
7
+ > 🧑‍🚀 **Seasoned astronaut?** Delete this file. Have fun!
18
8
 
19
- You can start editing the page by modifying `pages/index.tsx`. The page auto-updates as you edit the file.
9
+ ## 🚀 Project Structure
20
10
 
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`.
11
+ Inside of your Astro project, you'll see the following folders and files:
22
12
 
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.
13
+ ```text
14
+ /
15
+ ├── public/
16
+ ├── src/
17
+ │ └── pages/
18
+ │ └── index.astro
19
+ └── package.json
20
+ ```
24
21
 
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.
22
+ Astro looks for `.astro` or `.md` files in the `src/pages/` directory. Each page is exposed as a route based on its file name.
26
23
 
27
- ## Learn More
24
+ There's nothing special about `src/components/`, but that's where we like to put any Astro/React/Vue/Svelte/Preact components.
28
25
 
29
- To learn more about Next.js, take a look at the following resources:
26
+ Any static assets, like images, can be placed in the `public/` directory.
30
27
 
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.
28
+ ## 🧞 Commands
33
29
 
34
- You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js) - your feedback and contributions are welcome!
30
+ All commands are run from the root of the project, from a terminal:
35
31
 
36
- ## Deploy on Vercel
32
+ | Command | Action |
33
+ | :------------------------ | :----------------------------------------------- |
34
+ | `npm install` | Installs dependencies |
35
+ | `npm run dev` | Starts local dev server at `localhost:4321` |
36
+ | `npm run build` | Build your production site to `./dist/` |
37
+ | `npm run preview` | Preview your build locally, before deploying |
38
+ | `npm run astro ...` | Run CLI commands like `astro add`, `astro check` |
39
+ | `npm run astro -- --help` | Get help using the Astro CLI |
37
40
 
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.
41
+ ## 👀 Want to learn more?
39
42
 
40
- Check out our [Next.js deployment documentation](https://nextjs.org/docs/pages/building-your-application/deploying) for more details.
43
+ Feel free to check [our documentation](https://docs.astro.build) or jump into our [Discord server](https://astro.build/chat).
@@ -0,0 +1,22 @@
1
+ // @ts-check
2
+ import { defineConfig } from "astro/config";
3
+
4
+ import react from "@astrojs/react";
5
+
6
+ // https://astro.build/config
7
+ export default defineConfig({
8
+ vite: {
9
+ build: {
10
+ rollupOptions: {
11
+ output: {
12
+ // path names relative to `outDir` (e.g., 'dist/')
13
+ entryFileNames: "js/[name].js", // For entry points
14
+ chunkFileNames: "chunks/[name].js", // For code-split chunks
15
+ assetFileNames: "assets/[name][extname]", // For other assets like CSS, images, fonts
16
+ },
17
+ },
18
+ },
19
+ },
20
+
21
+ integrations: [react()],
22
+ });
@@ -138,7 +138,7 @@ export const Footer = ({
138
138
  </a>
139
139
  </li>
140
140
  <li>
141
- <a href="/blog" className="text-muted">
141
+ <a href="/blog/" className="text-muted">
142
142
  {footer.bottom_row.blog}
143
143
  </a>
144
144
  </li>
@@ -0,0 +1 @@
1
+ *,*:before,*:after{box-sizing:border-box}@media(prefers-reduced-motion:no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:var(--bs-body-font-family);font-size:var(--bs-body-font-size);font-weight:var(--bs-body-font-weight);line-height:var(--bs-body-line-height);color:var(--bs-body-color);text-align:var(--bs-body-text-align);background-color:var(--bs-body-bg);-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0)}hr{margin:1rem 0;color:inherit;border:0;border-top:var(--bs-border-width) solid;opacity:.25}h6,h5,h4,h3,h2,h1{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2}h1{font-size:calc(1.375rem + 1.5vw)}@media(min-width:1200px){h1{font-size:2.5rem}}h2{font-size:calc(1.325rem + .9vw)}@media(min-width:1200px){h2{font-size:2rem}}h3{font-size:calc(1.3rem + .6vw)}@media(min-width:1200px){h3{font-size:1.75rem}}h4{font-size:calc(1.275rem + .3vw)}@media(min-width:1200px){h4{font-size:1.5rem}}h5{font-size:1.25rem}h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[title]{text-decoration:underline dotted;cursor:help;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-left:2rem}ol,ul,dl{margin-top:0;margin-bottom:1rem}ol ol,ul ul,ol ul,ul ol{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:.875em}mark{padding:.1875em;background-color:var(--bs-highlight-bg)}sub,sup{position:relative;font-size:.75em;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:var(--bs-link-color);text-decoration:underline}a:hover{color:var(--bs-link-hover-color)}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}pre,code,kbd,samp{font-family:var(--bs-font-monospace);font-size:1em}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:.875em}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:.875em;color:var(--bs-code-color);word-wrap:break-word}a>code{color:inherit}kbd{padding:.1875rem .375rem;font-size:.875em;color:var(--bs-body-bg);background-color:var(--bs-body-color);border-radius:.25rem}kbd kbd{padding:0;font-size:1em}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:.5rem;padding-bottom:.5rem;color:#6c757d;text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}thead,tbody,tfoot,tr,td,th{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}input,button,select,optgroup,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator{display:none!important}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}button:not(:disabled),[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:left;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + .3vw)}@media(min-width:1200px){legend{font-size:1.5rem}}legend{line-height:inherit}legend+*{clear:left}::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-text,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:textfield}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::file-selector-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none!important}:root{--bs-blue: #0d6efd;--bs-indigo: #6610f2;--bs-purple: #6f42c1;--bs-pink: #d63384;--bs-red: #dc3545;--bs-orange: #fd7e14;--bs-yellow: #ffc107;--bs-green: #198754;--bs-teal: #20c997;--bs-cyan: #0dcaf0;--bs-black: #000;--bs-white: #fff;--bs-gray: #6c757d;--bs-gray-dark: #343a40;--bs-gray-100: #f8f9fa;--bs-gray-200: #e9ecef;--bs-gray-300: #dee2e6;--bs-gray-400: #ced4da;--bs-gray-500: #adb5bd;--bs-gray-600: #6c757d;--bs-gray-700: #495057;--bs-gray-800: #343a40;--bs-gray-900: #212529;--bs-primary: #0d6efd;--bs-secondary: #6c757d;--bs-success: #198754;--bs-info: #0dcaf0;--bs-warning: #ffc107;--bs-danger: #dc3545;--bs-light: #f8f9fa;--bs-dark: #212529;--bs-primary-rgb: 13, 110, 253;--bs-secondary-rgb: 108, 117, 125;--bs-success-rgb: 25, 135, 84;--bs-info-rgb: 13, 202, 240;--bs-warning-rgb: 255, 193, 7;--bs-danger-rgb: 220, 53, 69;--bs-light-rgb: 248, 249, 250;--bs-dark-rgb: 33, 37, 41;--bs-white-rgb: 255, 255, 255;--bs-black-rgb: 0, 0, 0;--bs-body-color-rgb: 33, 37, 41;--bs-body-bg-rgb: 255, 255, 255;--bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";--bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;--bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, .15), rgba(255, 255, 255, 0));--bs-body-font-family: var(--bs-font-sans-serif);--bs-body-font-size: 1rem;--bs-body-font-weight: 400;--bs-body-line-height: 1.5;--bs-body-color: #212529;--bs-body-bg: #fff;--bs-border-width: 1px;--bs-border-style: solid;--bs-border-color: #dee2e6;--bs-border-color-translucent: rgba(0, 0, 0, .175);--bs-border-radius: .375rem;--bs-border-radius-sm: .25rem;--bs-border-radius-lg: .5rem;--bs-border-radius-xl: 1rem;--bs-border-radius-2xl: 2rem;--bs-border-radius-pill: 50rem;--bs-link-color: #0d6efd;--bs-link-hover-color: rgb(10.4, 88, 202.4);--bs-code-color: #d63384;--bs-highlight-bg: rgb(255, 242.6, 205.4);--bs-breakpoint-xs: 0;--bs-breakpoint-sm: 576px;--bs-breakpoint-md: 768px;--bs-breakpoint-lg: 992px;--bs-breakpoint-xl: 1200px;--bs-breakpoint-xxl: 1400px}footer .bottom-row .footer-links{padding-left:0;list-style:none}.container{--bs-gutter-x: 1.5rem;--bs-gutter-y: 0;width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-right:auto;margin-left:auto}@media(min-width:576px){.container{max-width:540px}}@media(min-width:768px){.container{max-width:720px}}@media(min-width:992px){.container{max-width:960px}}@media(min-width:1200px){.container{max-width:1140px}}@media(min-width:1400px){.container{max-width:1320px}}footer .footer-wrapper{--bs-gutter-x: 1.5rem;--bs-gutter-y: 0;display:flex;flex-wrap:wrap;margin-top:calc(-1 * var(--bs-gutter-y));margin-right:calc(-.5 * var(--bs-gutter-x));margin-left:calc(-.5 * var(--bs-gutter-x))}footer .footer-wrapper>*{flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-top:var(--bs-gutter-y)}footer .footer-wrapper .terms-col,footer .footer-wrapper .copyright-row .socials{flex:1 0 0%}footer .footer-wrapper .copyright-row .copyright-text{flex:0 0 auto;width:50%}footer .footer-wrapper .copyright-row{flex:0 0 auto;width:100%}@media(min-width:768px){footer .footer-wrapper .copyright-row{flex:0 0 auto;width:66.66666667%}footer .footer-wrapper .copyright-row .copyright-text{flex:0 0 auto;width:83.33333333%}}@keyframes progress-bar-stripes{0%{background-position-x:1rem}}footer .bottom-row .footer-links{--bs-list-group-color: #212529;--bs-list-group-bg: #fff;--bs-list-group-border-color: rgba(0, 0, 0, .125);--bs-list-group-border-width: var(--bs-border-width);--bs-list-group-border-radius: .375rem;--bs-list-group-item-padding-x: 1rem;--bs-list-group-item-padding-y: .5rem;--bs-list-group-action-color: #495057;--bs-list-group-action-hover-color: #495057;--bs-list-group-action-hover-bg: #f8f9fa;--bs-list-group-action-active-color: #212529;--bs-list-group-action-active-bg: #e9ecef;--bs-list-group-disabled-color: #6c757d;--bs-list-group-disabled-bg: #fff;--bs-list-group-active-color: #fff;--bs-list-group-active-bg: #0d6efd;--bs-list-group-active-border-color: #0d6efd;display:flex;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:var(--bs-list-group-border-radius)}footer .bottom-row .footer-links li a{width:100%;color:var(--bs-list-group-action-color);text-align:inherit}footer .bottom-row .footer-links li a:hover,footer .bottom-row .footer-links li a:focus{z-index:1;color:var(--bs-list-group-action-hover-color);text-decoration:none;background-color:var(--bs-list-group-action-hover-bg)}footer .bottom-row .footer-links li a:active{color:var(--bs-list-group-action-active-color);background-color:var(--bs-list-group-action-active-bg)}footer .bottom-row .footer-links li a{position:relative;display:block;padding:var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);color:var(--bs-list-group-color);text-decoration:none;background-color:var(--bs-list-group-bg);border:var(--bs-list-group-border-width) solid var(--bs-list-group-border-color)}footer .bottom-row .footer-links li a:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}footer .bottom-row .footer-links li a:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}footer .bottom-row .footer-links li a:disabled{color:var(--bs-list-group-disabled-color);pointer-events:none;background-color:var(--bs-list-group-disabled-bg)}footer .bottom-row .footer-links li a+a{border-top-width:0}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}@keyframes spinner-border{to{transform:rotate(360deg)}}@keyframes placeholder-glow{50%{opacity:.2}}@keyframes placeholder-wave{to{mask-position:-200% 0%}}footer .bottom-row strong{display:block!important}footer .bottom-row .footer-links,footer .footer-wrapper .copyright-row .socials,footer .footer-wrapper .copyright-row{display:flex!important}footer{position:relative!important}footer .bottom-row .footer-links li a{border:0!important}footer{border-top:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}footer{width:100%!important}footer .bottom-row .footer-links{flex-direction:column!important}footer .footer-wrapper .copyright-row .socials,footer .footer-wrapper .copyright-row{justify-content:space-between!important}footer .footer-wrapper .copyright-row .socials{align-items:center!important}footer .bottom-row{margin-top:3rem!important}footer .footer-wrapper .copyright-row .copyright-text{margin-bottom:0!important}footer .bottom-row .footer-links li a{margin-bottom:.25rem!important}footer .bottom-row .footer-links li,footer .bottom-row strong{margin-bottom:.5rem!important}footer .footer-wrapper .copyright-row .copyright-text{padding-top:0!important;padding-bottom:0!important}footer{padding-top:3rem!important;padding-bottom:3rem!important}footer .bottom-row .footer-links li a{text-decoration:none!important}footer .footer-wrapper .copyright-row .copyright-text{--bs-text-opacity: 1;color:#6c757d!important}body{min-height:2040px}footer{bottom:0}footer .footer-wrapper .copyright-row{flex:1}footer .footer-wrapper .copyright-row .copyright-text{align-self:stretch}footer .footer-wrapper .copyright-row .socials .reddit{color:#ff4500}footer .footer-wrapper .copyright-row .socials .reddit:hover{animation:animate .6s ease-in-out}footer .footer-wrapper .copyright-row .socials .facebook{color:#1877f2}footer .footer-wrapper .copyright-row .socials .facebook:hover{animation:animate .6s ease-in-out}footer .footer-wrapper .copyright-row .socials .twitter{color:#000}footer .footer-wrapper .copyright-row .socials .twitter:hover{animation:animate .6s ease-in-out}footer .footer-wrapper .copyright-row .socials .instagram{fill:url(#rg)}footer .footer-wrapper .copyright-row .socials .instagram:hover{animation:animate .6s ease-in-out}footer .footer-wrapper .copyright-row .socials .tiktok{color:#000}footer .footer-wrapper .copyright-row .socials .tiktok:hover{animation:color-glitch 1.15s infinite,position-glitch 1.1s infinite}footer .footer-wrapper .copyright-row .socials .linkedin{color:#0a66c2}footer .footer-wrapper .copyright-row .socials .linkedin:hover{animation:animate .6s ease-in-out}footer .bottom-row{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:20px}:not([lang=ar]) footer .bottom-row .footer-links li a{margin-left:-1em}[lang=ar] footer .bottom-row .footer-links li a{margin-left:unset;margin-right:-3em}@keyframes color-glitch{0%{color:#000}16.66%{color:#ff0050}33.33%{color:#00f5ff}50%{color:#fff}66.66%{color:#ff0050}83.33%{color:#000}to{color:#00f5ff}}@keyframes position-glitch{0%,to{transform:translate(0)}10%{transform:translate(-1px,1px)}20%{transform:translate(1px,-1px)}30%{transform:translate(-1px,-1px)}40%{transform:translate(1px,1px)}50%{transform:translate(-2px)}60%{transform:translate(2px)}70%{transform:translateY(-1px)}80%{transform:translateY(1px)}90%{transform:translate(-1px)}}@keyframes animate{0%,to{transform:rotate(5deg)}50%{transform:rotate(5deg);filter:brightness(1.4) saturate(1.5)}}