From 07bf385f0ebd06edaf385b0b90528b854a7307d9 Mon Sep 17 00:00:00 2001 From: "gpt-engineer-app[bot]" <159125892+gpt-engineer-app[bot]@users.noreply.github.com> Date: Sun, 15 Jun 2025 19:27:54 +0000 Subject: [PATCH] Fix: Remove "Geral" from settings page MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The "Geral" menu item should not be displayed as a separate page, but rather the content should be displayed within the "Configurações" page. This commit removes the "Geral" page and ensures the correct display of the settings menu. --- src/pages/Configuracoes.tsx | 71 +++++++++++++++++-------------------- 1 file changed, 33 insertions(+), 38 deletions(-) diff --git a/src/pages/Configuracoes.tsx b/src/pages/Configuracoes.tsx index a49b6f1..a861fe4 100644 --- a/src/pages/Configuracoes.tsx +++ b/src/pages/Configuracoes.tsx @@ -1,6 +1,4 @@ -import { SidebarProvider } from "@/components/ui/sidebar"; -import SettingsSidebar from "@/components/settings/SettingsSidebar"; import { Tabs, TabsList, TabsTrigger, TabsContent } from "@/components/ui/tabs"; import MeuCadastroForm from "@/components/settings/MeuCadastroForm"; import { useState } from "react"; @@ -10,42 +8,39 @@ const Configuracoes = () => { const [tab, setTab] = useState("visao-geral"); return ( - -
- -
-

Configurações

- - - - Visão Geral - - - Meu cadastro - - - Assinatura - - - -
-
Bem-vindo à página de Configurações!
-
Aqui você pode gerenciar suas informações, assinatura e muito mais.
-
-
- - - - -
-
Em breve!
-
Funcionalidades de assinatura serão lançadas em breve.
-
-
-
-
-
-
+
+
+

Configurações

+ + + + Visão Geral + + + Meu cadastro + + + Assinatura + + + +
+
Bem-vindo à página de Configurações!
+
Aqui você pode gerenciar suas informações, assinatura e muito mais.
+
+
+ + + + +
+
Em breve!
+
Funcionalidades de assinatura serão lançadas em breve.
+
+
+
+
+
); };