Merge version_1_1782217645457 into main #1

Merged
bender merged 1 commits from version_1_1782217645457 into main 2026-06-23 12:28:20 +00:00

View File

@@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Home",
"href": "#"
"name": "Home", "href": "#"
},
{
"name": "Courses",
"href": "#courses"
"name": "Courses", "href": "#courses"
},
{
"name": "About",
"href": "#about"
"name": "About", "href": "#about"
},
{
"name": "Hero",
"href": "#hero"
"name": "Hero", "href": "#hero"
},
{
"name": "Metrics",
"href": "#metrics"
"name": "Metrics", "href": "#metrics"
},
{
"name": "Faq",
"href": "#faq"
"name": "Faq", "href": "#faq"
},
{
"name": "Contact",
"href": "#contact"
"name": "Contact", "href": "#contact"
}
];
@@ -44,9 +37,7 @@ export default function Layout() {
<NavbarInline
logo="doaa.classroom"
ctaButton={{
text: "Instagram",
href: "https://instagram.com/doaa.classroom",
}}
text: "Instagram", href: "https://instagram.com/doaa.classroom"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
@@ -58,41 +49,27 @@ export default function Layout() {
copyright="© 2026 Brand. All rights reserved."
columns={[
{
heading: "Product",
links: [
title: "Product", links: [
{
text: "Features",
href: "#features",
},
label: "Features", href: "#features"},
{
text: "Pricing",
href: "#pricing",
},
label: "Pricing", href: "#pricing"},
],
},
{
heading: "Company",
links: [
title: "Company", links: [
{
text: "About",
href: "#about",
},
label: "About", href: "#about"},
{
text: "Contact",
href: "#contact",
},
label: "Contact", href: "#contact"},
],
},
]}
links={[
{
text: "Privacy",
href: "#",
},
label: "Privacy", href: "#"},
{
text: "Terms",
href: "#",
},
label: "Terms", href: "#"},
]}
/>
</SectionErrorBoundary>