Merge version_1_1782050820162 into main #1

Merged
bender merged 2 commits from version_1_1782050820162 into main 2026-06-21 14:08:05 +00:00

View File

@@ -8,32 +8,19 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Home",
"href": "/"
"name": "Home", "href": "/"
},
{
"name": "Assessment",
"href": "/assessment"
"name": "Assessment", "href": "/assessment"
},
{
"name": "Evidence",
"href": "/evidence"
"name": "Evidence", "href": "/evidence"
},
{
"name": "Reflections",
"href": "/reflections"
"name": "Reflections", "href": "/reflections"
},
{
"name": "Retrospection",
"href": "/retrospection"
},
{
"name": "Hero",
"href": "#hero"
},
{
"name": "Philosophy",
"href": "#philosophy"
"name": "Retrospection", "href": "/retrospection"
}
];
@@ -44,9 +31,7 @@ export default function Layout() {
<NavbarDropdown
logo="E-Portfolio"
ctaButton={{
text: "Contact",
href: "/contact",
}}
text: "Contact", href: "/contact"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
@@ -57,33 +42,30 @@ export default function Layout() {
brand="Pre-Service E-Portfolio"
columns={[
{
title: "Navigation",
items: [
title: "Navigation", items: [
{
label: "Home",
href: "/",
},
label: "Home", href: "/"},
{
label: "Assessment",
href: "/assessment",
},
label: "Assessment", href: "/assessment"},
],
},
{
title: "Links",
items: [
title: "Links", items: [
{
label: "Evidence",
href: "/evidence",
},
label: "Evidence", href: "/evidence"},
{
label: "Retrospection",
href: "/retrospection",
},
label: "Retrospection", href: "/retrospection"},
],
},
]}
copyright="© 2024 Pre-Service Educator."
links={[
{ label: "Home", href: "/" },
{ label: "Assessment", href: "/assessment" },
{ label: "Evidence", href: "/evidence" },
{ label: "Reflections", href: "/reflections" },
{ label: "Retrospection", href: "/retrospection" }
]}
/>
</SectionErrorBoundary>
</StyleProvider>