Merge version_6 into main #18
@@ -122,7 +122,7 @@ export default function LoginPage() {
|
||||
<div className="flex gap-3">
|
||||
<ButtonDirectionalHover
|
||||
text={isLoading ? "Entrando..." : "Entrar"}
|
||||
onClick={handleLogin}
|
||||
onClick={(e) => handleLogin(e as unknown as React.FormEvent)}
|
||||
disabled={isLoading}
|
||||
className="flex-1"
|
||||
/>
|
||||
|
||||
@@ -166,7 +166,7 @@ export default function RegisterPage() {
|
||||
<div className="flex gap-3">
|
||||
<ButtonDirectionalHover
|
||||
text={isLoading ? "Registrando..." : "Criar Conta"}
|
||||
onClick={handleRegister}
|
||||
onClick={(e) => handleRegister(e as unknown as React.FormEvent)}
|
||||
disabled={isLoading}
|
||||
className="flex-1"
|
||||
/>
|
||||
|
||||
@@ -7,7 +7,7 @@ import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
||||
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||
import { useState } from 'react';
|
||||
import { Flame, Target, TrendingDown, TrendingUp, Mail } from 'lucide-react';
|
||||
import { Flame, Mail } from 'lucide-react';
|
||||
|
||||
interface Recipe {
|
||||
id: string;
|
||||
@@ -193,7 +193,6 @@ export default function RecipesPage() {
|
||||
: 'bg-secondary-cta bg-opacity-50 hover:bg-opacity-100'
|
||||
}`}
|
||||
>
|
||||
<TrendingDown className="w-4 h-4" />
|
||||
Perda de Peso
|
||||
</button>
|
||||
<button
|
||||
@@ -204,7 +203,6 @@ export default function RecipesPage() {
|
||||
: 'bg-secondary-cta bg-opacity-50 hover:bg-opacity-100'
|
||||
}`}
|
||||
>
|
||||
<TrendingUp className="w-4 h-4" />
|
||||
Ganho de Massa
|
||||
</button>
|
||||
</div>
|
||||
@@ -216,6 +214,8 @@ export default function RecipesPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
title="Nossas Receitas"
|
||||
description="Receitas personalizadas para seus objetivos"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user