Merge version_1_1781697218156 into main #1

Merged
bender merged 2 commits from version_1_1781697218156 into main 2026-06-17 11:54:58 +00:00

View File

@@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Home",
"href": "#hero"
"name": "Home", "href": "#hero"
},
{
"name": "Series",
"href": "#features"
"name": "Series", "href": "#features"
},
{
"name": "Membership",
"href": "#pricing"
"name": "Membership", "href": "#pricing"
},
{
"name": "Team",
"href": "#team"
"name": "Team", "href": "#team"
},
{
"name": "Bento",
"href": "#bento"
"name": "Bento", "href": "#bento"
},
{
"name": "Metrics",
"href": "#metrics"
"name": "Metrics", "href": "#metrics"
},
{
"name": "Testimonials",
"href": "#testimonials"
"name": "Testimonials", "href": "#testimonials"
}
];
@@ -43,10 +36,9 @@ export default function Layout() {
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="AnimeHub"
logoImageSrc="http://img.b2bpic.net/free-photo/3d-tiktok-logo_23-2152000226.jpg"
ctaButton={{
text: "Get Started",
href: "#contact",
}}
text: "Get Started", href: "#contact"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
@@ -56,29 +48,19 @@ export default function Layout() {
<FooterBasic
columns={[
{
title: "Platform",
items: [
title: "Platform", items: [
{
label: "About",
href: "#",
},
label: "About", href: "#"},
{
label: "Jobs",
href: "#",
},
label: "Jobs", href: "#"},
],
},
{
title: "Support",
items: [
title: "Support", items: [
{
label: "Help",
href: "#",
},
label: "Help", href: "#"},
{
label: "FAQs",
href: "#",
},
label: "FAQs", href: "#"},
],
},
]}