Update src/components/Layout.tsx
This commit is contained in:
@@ -8,28 +8,22 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
|
||||
export default function Layout() {
|
||||
const navItems = [
|
||||
{
|
||||
"name": "Início",
|
||||
"href": "#hero"
|
||||
"name": "Início", "href": "#hero"
|
||||
},
|
||||
{
|
||||
"name": "Matrículas",
|
||||
"href": "#contact"
|
||||
"name": "Matrículas", "href": "#contact"
|
||||
},
|
||||
{
|
||||
"name": "Turmas",
|
||||
"href": "#turmas"
|
||||
"name": "Turmas", "href": "#turmas"
|
||||
},
|
||||
{
|
||||
"name": "Mural",
|
||||
"href": "#mural"
|
||||
"name": "Mural", "href": "#mural"
|
||||
},
|
||||
{
|
||||
"name": "Metrics",
|
||||
"href": "#metrics"
|
||||
"name": "Metrics", "href": "#metrics"
|
||||
},
|
||||
{
|
||||
"name": "Team",
|
||||
"href": "#team"
|
||||
"name": "Team", "href": "#team"
|
||||
}
|
||||
];
|
||||
|
||||
@@ -39,10 +33,9 @@ export default function Layout() {
|
||||
<SectionErrorBoundary name="navbar">
|
||||
<NavbarFloatingLogo
|
||||
logo="Escolinha de Basquete"
|
||||
logoImageSrc="http://img.b2bpic.net/free-photo/high-view-basketball-asphalt_23-2148239552.jpg"
|
||||
ctaButton={{
|
||||
text: "Painel Professor",
|
||||
href: "#",
|
||||
}}
|
||||
text: "Painel Professor", href: "#"}}
|
||||
navItems={navItems} />
|
||||
</SectionErrorBoundary>
|
||||
<main className="flex-grow">
|
||||
@@ -53,42 +46,28 @@ export default function Layout() {
|
||||
brand="Escolinha de Basquete"
|
||||
columns={[
|
||||
{
|
||||
title: "Sistema",
|
||||
items: [
|
||||
title: "Sistema", items: [
|
||||
{
|
||||
label: "Cronômetro",
|
||||
href: "#",
|
||||
},
|
||||
label: "Cronômetro", href: "#"},
|
||||
{
|
||||
label: "Placar",
|
||||
href: "#",
|
||||
},
|
||||
label: "Placar", href: "#"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
title: "Legal", items: [
|
||||
{
|
||||
label: "Autorizações",
|
||||
href: "#",
|
||||
},
|
||||
label: "Autorizações", href: "#"},
|
||||
{
|
||||
label: "Exame Médico",
|
||||
href: "#",
|
||||
},
|
||||
label: "Exame Médico", href: "#"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
copyright="© 2026 Escolinha de Basquete. Prof. Diego & Francesco."
|
||||
links={[
|
||||
{
|
||||
label: "Privacidade",
|
||||
href: "#",
|
||||
},
|
||||
label: "Privacidade", href: "#"},
|
||||
{
|
||||
label: "Termos",
|
||||
href: "#",
|
||||
},
|
||||
label: "Termos", href: "#"},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
|
||||
Reference in New Issue
Block a user