veslx 0.1.46 → 0.1.47
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.
|
@@ -1,19 +1,6 @@
|
|
|
1
|
-
import { jsx
|
|
2
|
-
import packageJson from "../package.json.js";
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
3
2
|
function Footer() {
|
|
4
|
-
return /* @__PURE__ */ jsx("footer", { className: "py-4 mx-auto w-full max-w-[var(--content-width)] px-[var(--page-padding)]"
|
|
5
|
-
"a",
|
|
6
|
-
{
|
|
7
|
-
href: "https://github.com/eoinmurray/veslx",
|
|
8
|
-
target: "_blank",
|
|
9
|
-
rel: "noopener noreferrer",
|
|
10
|
-
className: "font-mono text-xs text-muted-foreground/50 hover:text-muted-foreground transition-colors",
|
|
11
|
-
children: [
|
|
12
|
-
"veslx v",
|
|
13
|
-
packageJson.version
|
|
14
|
-
]
|
|
15
|
-
}
|
|
16
|
-
) }) });
|
|
3
|
+
return /* @__PURE__ */ jsx("footer", { className: "py-4 mx-auto w-full max-w-[var(--content-width)] px-[var(--page-padding)]" });
|
|
17
4
|
}
|
|
18
5
|
export {
|
|
19
6
|
Footer
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"footer.js","sources":["../../../src/components/footer.tsx"],"sourcesContent":["
|
|
1
|
+
{"version":3,"file":"footer.js","sources":["../../../src/components/footer.tsx"],"sourcesContent":["export function Footer() {\n return (\n <footer className=\"py-4 mx-auto w-full max-w-[var(--content-width)] px-[var(--page-padding)]\" />\n );\n}\n"],"names":[],"mappings":";AAAO,SAAS,SAAS;AACvB,SACE,oBAAC,UAAA,EAAO,WAAU,4EAAA,CAA4E;AAElG;"}
|
package/package.json
CHANGED
|
@@ -1,18 +1,5 @@
|
|
|
1
|
-
import packageJson from "../../package.json";
|
|
2
|
-
|
|
3
1
|
export function Footer() {
|
|
4
2
|
return (
|
|
5
|
-
<footer className="py-4 mx-auto w-full max-w-[var(--content-width)] px-[var(--page-padding)]"
|
|
6
|
-
<div className="flex justify-end">
|
|
7
|
-
<a
|
|
8
|
-
href="https://github.com/eoinmurray/veslx"
|
|
9
|
-
target="_blank"
|
|
10
|
-
rel="noopener noreferrer"
|
|
11
|
-
className="font-mono text-xs text-muted-foreground/50 hover:text-muted-foreground transition-colors"
|
|
12
|
-
>
|
|
13
|
-
veslx v{packageJson.version}
|
|
14
|
-
</a>
|
|
15
|
-
</div>
|
|
16
|
-
</footer>
|
|
3
|
+
<footer className="py-4 mx-auto w-full max-w-[var(--content-width)] px-[var(--page-padding)]" />
|
|
17
4
|
);
|
|
18
5
|
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"package.json.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;"}
|