@ansiversa/components 0.0.10 → 0.0.11

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ansiversa/components",
3
- "version": "0.0.10",
3
+ "version": "0.0.11",
4
4
  "description": "Shared UI components and layouts for the Ansiversa ecosystem",
5
5
  "type": "module",
6
6
  "exports": {
@@ -1,6 +1,5 @@
1
1
  ---
2
2
  import AvButton from "./AvButton.astro";
3
- import { actions } from "astro:actions";
4
3
 
5
4
  interface NavLink {
6
5
  label: string;
@@ -61,15 +60,15 @@ function renderIcon(label: string) {
61
60
 
62
61
  // ALWAYS SHOW THESE LINKS
63
62
  const baseLinks: NavLink[] = [
64
- { label: "Apps", href: "/apps" },
65
- { label: "Pricing", href: "/pricing" },
66
- { label: "About", href: "/about" },
63
+ { label: "Apps", href: "https://www.ansiversa.com/apps" },
64
+ { label: "Pricing", href: "https://www.ansiversa.com/pricing" },
65
+ { label: "About", href: "https://www.ansiversa.com/about" },
67
66
  ];
68
67
 
69
68
  // SIGN-IN link only for guests
70
69
  const authLink: NavLink = {
71
70
  label: "Sign in",
72
- href: "/login",
71
+ href: "https://www.ansiversa.com/login",
73
72
  variant: "primary",
74
73
  };
75
74