diff --git a/public/robots.txt b/public/robots.txt index 87e8514..26b117e 100644 --- a/public/robots.txt +++ b/public/robots.txt @@ -1,4 +1,5 @@ User-agent: * Allow: / - +User-agent: * +Disallow: /pricing Sitemap: https://afipsdk.com/sitemap-index.xml \ No newline at end of file diff --git a/src/components/layout/footer.astro b/src/components/layout/footer.astro index 7964e4b..6ac619a 100644 --- a/src/components/layout/footer.astro +++ b/src/components/layout/footer.astro @@ -60,6 +60,12 @@ const { className } = Astro.props; > Comunidad + + Precio + diff --git a/src/config/nav-menu.ts b/src/config/nav-menu.ts index da81170..e5d92eb 100644 --- a/src/config/nav-menu.ts +++ b/src/config/nav-menu.ts @@ -24,6 +24,12 @@ export const navMenuConfig: NavMenuConfig = { description: "", image: "", }, + { + title: "Precio", + href: "/pricing", + description: "", + image: "", + }, ], }, ], diff --git a/src/config/site.ts b/src/config/site.ts index 69161b9..02af7ee 100644 --- a/src/config/site.ts +++ b/src/config/site.ts @@ -11,6 +11,7 @@ export const siteConfig: SiteConfig = { discord: "https://discord.gg/A6TuHEyAZm", github: "https://github.com/afipsdk", docs: "https://docs.afipsdk.com", + productionDocs: "https://docs.afipsdk.com/paso-a-paso/ir-a-produccion", sdkPython: 'https://github.com/afipsdk/afip.py', sdkJs: 'https://github.com/afipsdk/afip.js', sdkPhp: 'https://github.com/afipsdk/afip.php', diff --git a/src/layouts/main-layout.astro b/src/layouts/main-layout.astro index 5bbefdf..094690c 100644 --- a/src/layouts/main-layout.astro +++ b/src/layouts/main-layout.astro @@ -34,7 +34,7 @@ const { title, description, mainClass } = Astro.props;
Blog @@ -57,6 +57,12 @@ const { title, description, mainClass } = Astro.props; > Comunidad + + Precio +
+
+
+

+ Precio simple +

+

+ Desbloquea el acceso a producción. +

+
+
+
+

+ Que incluye +

+
    +
  • + Acceso a Producción +
  • +
  • + CUITs Ilimitados +
  • +
  • + Requests Ilimitados +
  • +
  • + Certificados Ilimitados +
  • +
  • + PDFs Ilimitados +
  • +
  • + Soporte prioritario +
  • +
+
+
+
+

19 U$D

+

+ Mensual +

+

+ 30% de descuento pagando anual +

+
+ + Ir a producción + +
+
+
+

+ Para usarlo en modo desarrollo no necesitas registrarte. + Ver documentacion +

+
+
+ \ No newline at end of file diff --git a/src/types/index.d.ts b/src/types/index.d.ts index fcef946..4bca312 100644 --- a/src/types/index.d.ts +++ b/src/types/index.d.ts @@ -40,6 +40,7 @@ export type SiteConfig = { discord: string; github: string; docs: string; + productionDocs: string; sdkJs: string; sdkPhp: string; sdkPython: string;