Skip to content

Commit

Permalink
Add info about ARCA integration
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanalemunioz committed Nov 6, 2024
1 parent 8c2df18 commit 0cd4eeb
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/layouts/main-layout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import { navMenuConfig } from "@/config/nav-menu";
import { siteConfig } from "@/config/site";
import { Icon } from "astro-icon/components";
import { buttonVariants } from "@/components/ui/button";
import { Info } from "lucide-react";
type Props = {
title: string;
Expand All @@ -20,6 +21,17 @@ const { title, description, mainClass } = Astro.props;
---

<BaseLayout title={title} description={description}>
<div
class="bg-yellow-500 dark:bg-yellow-600 px-2 py-1.5 text-white text-xs relative"
>
<div class="flex items-center justify-center space-x-2">
<Info className="h-4 w-4 md:h-3 md:w-3" />
<p class="font-medium">
Afip SDK también funcionará con <a href="https://www.argentina.gob.ar/arca" target="_blank" rel="noopener noreferrer">ARCA</a>, sin cambios necesarios.
</p>
</div>
</div>

<Header className="">
<!-- if using only normals links -->
<!-- <MainNav items={marketingConfig.mainNav} slot="left-header" />
Expand Down

0 comments on commit 0cd4eeb

Please sign in to comment.