Update src/app/privacy/page.tsx

This commit is contained in:
2026-03-28 10:12:16 +00:00
parent c9f5648579
commit feb2eaa10b

View File

@@ -6,8 +6,9 @@ import FaqDouble from '@/components/sections/faq/FaqDouble';
import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import { Lock, FileText } from "lucide-react";
export default function LandingPage() {
export default function PrivacyPage() {
return (
<ThemeProvider
defaultButtonVariant="hover-bubble"
@@ -22,162 +23,72 @@ export default function LandingPage() {
headingFontWeight="normal"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "/",
},
{
name: "About",
id: "/about",
},
{
name: "Team",
id: "/team",
},
{
name: "Investments",
id: "/investments",
},
{
name: "Contact",
id: "/contact",
},
]}
brandName="MGI Holdings"
/>
</div>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Team", id: "/team" },
{ name: "Investments", id: "/investments" },
{ name: "Contact", id: "/contact" },
]}
brandName="MGI Holdings"
button={{ text: "Get In Touch", href: "/contact" }}
/>
</div>
<div id="privacy-text" data-section="privacy-text">
<FaqDouble
textboxLayout="default"
useInvertedBackground={false}
faqs={[
{
id: "1",
title: "Data Collection",
content: "MGI Holdings collects data only for professional investment communication purposes.",
},
{
id: "2",
title: "Data Usage",
content: "Information is strictly confidential and shared only with mandated institutional partners.",
},
{
id: "3",
title: "Rights",
content: "You may request deletion or access to your data at any time via written request.",
},
]}
title="Privacy Policy"
description="Your data security and privacy is our institutional priority."
faqsAnimation="slide-up"
/>
</div>
<div id="privacy-text" data-section="privacy-text">
<FaqDouble
textboxLayout="default"
useInvertedBackground={false}
faqs={[
{ id: "1", title: "Data Collection", content: "MGI Holdings collects data only for professional investment communication purposes." },
{ id: "2", title: "Data Usage", content: "Information is strictly confidential and shared only with mandated institutional partners." },
{ id: "3", title: "Rights", content: "You may request deletion or access to your data at any time via written request." }
]}
title="Privacy Policy"
description="Your data security and privacy is our institutional priority."
faqsAnimation="slide-up"
/>
</div>
<div id="faq" data-section="faq">
<FaqDouble
textboxLayout="default"
useInvertedBackground={false}
title="Legal Documentation"
description="Institutional terms and data management."
faqs={[
{
id: "1",
title: "Data Privacy",
content: "We protect your data.",
},
{
id: "2",
title: "Compliance",
content: "Fully FCA regulated.",
},
]}
faqsAnimation="slide-up"
/>
</div>
<div id="faq" data-section="faq">
<FaqDouble
textboxLayout="default"
useInvertedBackground={false}
title="Legal Documentation"
description="Institutional terms and data management."
faqs={[
{ id: "1", title: "Data Privacy", content: "We protect your data." },
{ id: "2", title: "Compliance", content: "Fully FCA regulated." }
]}
faqsAnimation="slide-up"
/>
</div>
<div id="feature" data-section="feature">
<FeatureCardTwentySix
textboxLayout="default"
useInvertedBackground={false}
title="Compliance Standards"
description="Operating at the highest levels of professional integrity."
features={[
{
title: "Security",
description: "Encryption and secure protocols.",
buttonIcon: "Lock",
},
{
title: "Audit",
description: "Annual third-party verification.",
buttonIcon: "FileText",
},
]}
/>
</div>
<div id="feature" data-section="feature">
<FeatureCardTwentySix
textboxLayout="default"
useInvertedBackground={false}
title="Compliance Standards"
description="Operating at the highest levels of professional integrity."
features={[
{ title: "Security", description: "Encryption and secure protocols.", buttonIcon: Lock },
{ title: "Audit", description: "Annual third-party verification.", buttonIcon: FileText }
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseReveal
columns={[
{
title: "MGI Holdings",
items: [
{
label: "Home",
href: "/",
},
{
label: "About",
href: "/about",
},
{
label: "Team",
href: "/team",
},
{
label: "Investments",
href: "/investments",
},
{
label: "Contact",
href: "/contact",
},
],
},
{
title: "Legal",
items: [
{
label: "Privacy Policy",
href: "/privacy",
},
],
},
{
title: "Contact",
items: [
{
label: "13 Hanover Square, Mayfair, London",
href: "#",
},
{
label: "+44 20 3982 6789",
href: "tel:+442039826789",
},
{
label: "Mon-Fri: 10AM-6PM",
href: "#",
},
],
},
]}
copyrightText="© 2024 MGI Holdings. All rights reserved."
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseReveal
columns={[
{ title: "MGI Holdings", items: [{ label: "Home", href: "/" }, { label: "About", href: "/about" }, { label: "Team", href: "/team" }, { label: "Investments", href: "/investments" }, { label: "Contact", href: "/contact" }] },
{ title: "Legal", items: [{ label: "Privacy Policy", href: "/privacy" }] },
{ title: "Contact", items: [{ label: "13 Hanover Square, Mayfair, London", href: "#" }, { label: "+44 20 3982 6789", href: "tel:+442039826789" }, { label: "Mon-Fri: 10AM-6PM", href: "#" }] }
]}
copyrightText="© 2024 MGI Holdings. All rights reserved."
/>
</div>
</ReactLenis>
</ThemeProvider>
);