Update src/app/ecosystem/page.tsx

This commit is contained in:
2026-05-18 13:02:11 +00:00
parent c99de30121
commit 476e7593fb

View File

@@ -22,55 +22,55 @@ export default function LandingPage() {
headingFontWeight="medium"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Practice Areas", id: "/practice" },
{ name: "Ecosystem", id: "/ecosystem" },
{ name: "Contact", id: "/contact" },
]}
brandName="TMI"
/>
</div>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Practice Areas", id: "/practice" },
{ name: "Ecosystem", id: "/ecosystem" },
{ name: "Contact", id: "/contact" },
]}
brandName="TMI"
/>
</div>
<div id="legal" data-section="legal">
<LegalSection
layout="page"
title="Our Ecosystem"
sections={[
{
heading: "Network Philosophy", content: { type: "paragraph", text: "We believe in a cohesive ecosystem of experts collaborating across borders." },
},
]}
/>
</div>
<div id="legal" data-section="legal">
<LegalSection
layout="page"
title="Our Ecosystem"
sections={[
{
heading: "Network Philosophy", content: { text: "We believe in a cohesive ecosystem of experts collaborating across borders." },
},
]}
/>
</div>
<div id="faq" data-section="faq">
<FaqBase
textboxLayout="default"
useInvertedBackground={false}
title="Ecosystem Queries"
description="How the TMI ecosystem supports your legal needs."
faqsAnimation="blur-reveal"
faqs={[
{ id: "e1", title: "How to join?", content: "Contact us via our partnership portal." },
]}
/>
</div>
<div id="faq" data-section="faq">
<FaqBase
textboxLayout="default"
useInvertedBackground={false}
title="Ecosystem Queries"
description="How the TMI ecosystem supports your legal needs."
faqsAnimation="blur-reveal"
faqs={[
{ id: "e1", title: "How to join?", content: "Contact us via our partnership portal." },
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=rv0ebt"
logoText="TMI"
columns={[
{ title: "Navigation", items: [{ label: "Home", href: "/" }, { label: "About", href: "/about" }] },
{ title: "Resources", items: [{ label: "Legal Review", href: "#" }, { label: "Contact", href: "/contact" }] },
]}
copyrightText="© 2025 The Majesty International. All Rights Reserved."
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=rv0ebt"
logoText="TMI"
columns={[
{ title: "Navigation", items: [{ label: "Home", href: "/" }, { label: "About", href: "/about" }] },
{ title: "Resources", items: [{ label: "Legal Review", href: "#" }, { label: "Contact", href: "/contact" }] },
]}
copyrightText="© 2025 The Majesty International. All Rights Reserved."
/>
</div>
</ReactLenis>
</ThemeProvider>
);