mirror of
https://github.com/domfelipe/mika-agent-assist.git
synced 2026-08-07 08:36:44 +00:00
Changes
Co-authored-by: domfelipe <53182096+domfelipe@users.noreply.github.com>
This commit is contained in:
parent
c65eea1e38
commit
be2c9a2f6c
8 changed files with 16 additions and 16 deletions
|
|
@ -57,7 +57,7 @@ export function LandingHeader() {
|
|||
<ThemeToggle />
|
||||
{user ? (
|
||||
<Button asChild className="rounded-lg bg-primary hover:bg-primary-dark text-primary-foreground transition-all duration-150 active:scale-[0.98]">
|
||||
<Link to="/painel">Ir para o painel</Link>
|
||||
<Link to="/painel" search={{}}>Ir para o painel</Link>
|
||||
</Button>
|
||||
) : (
|
||||
<>
|
||||
|
|
@ -98,7 +98,7 @@ export function LandingHeader() {
|
|||
<div className="mt-6 flex flex-col gap-3">
|
||||
{user ? (
|
||||
<Button asChild className="rounded-lg w-full bg-primary hover:bg-primary-dark text-primary-foreground">
|
||||
<Link to="/painel" onClick={() => setOpen(false)}>Ir para o painel</Link>
|
||||
<Link to="/painel" search={{}} onClick={() => setOpen(false)}>Ir para o painel</Link>
|
||||
</Button>
|
||||
) : (
|
||||
<>
|
||||
|
|
|
|||
|
|
@ -324,7 +324,7 @@ export function CronjobWizard({ onCreated, onCancel }: Props) {
|
|||
Conecte as integrações faltantes antes de criar.
|
||||
</p>
|
||||
<Button asChild size="sm" variant="outline" className="mt-2">
|
||||
<Link to="/painel/integracoes">Ir para Integrações</Link>
|
||||
<Link to="/painel/integracoes" search={{}}>Ir para Integrações</Link>
|
||||
</Button>
|
||||
</div>
|
||||
)}
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@ export function IntegrationsDashboardWidget() {
|
|||
</div>
|
||||
</div>
|
||||
<Button asChild variant="ghost" size="sm" className="text-primary hover:text-primary">
|
||||
<Link to="/painel/integracoes">
|
||||
<Link to="/painel/integracoes" search={{}}>
|
||||
Gerenciar <ArrowRight className="ml-1 h-3.5 w-3.5" />
|
||||
</Link>
|
||||
</Button>
|
||||
|
|
@ -52,7 +52,7 @@ export function IntegrationsDashboardWidget() {
|
|||
Conecte serviços como Gmail, Notion e Cal.com para ampliar seu Mika.
|
||||
</p>
|
||||
<Button asChild size="sm" variant="outline" className="rounded-lg">
|
||||
<Link to="/painel/integracoes">Explorar integrações</Link>
|
||||
<Link to="/painel/integracoes" search={{}}>Explorar integrações</Link>
|
||||
</Button>
|
||||
</div>
|
||||
) : (
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue