Update src/app/contact/page.tsx
This commit is contained in:
@@ -32,9 +32,7 @@ export default function ContactPage() {
|
||||
{ name: "FAQ", id: "faq" },
|
||||
]}
|
||||
button={{
|
||||
text: "Get Started",
|
||||
href: "#contact",
|
||||
}}
|
||||
text: "Get Started", href: "#contact"}}
|
||||
animateOnLoad={true}
|
||||
/>
|
||||
</div>
|
||||
@@ -47,7 +45,7 @@ export default function ContactPage() {
|
||||
{ text: "Schedule Consultation", href: "mailto:invest@cryptofund.io" },
|
||||
{ text: "View Prospectus", href: "#" },
|
||||
]}
|
||||
background={{ variant: "circleGradient" }}
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
@@ -56,47 +54,30 @@ export default function ContactPage() {
|
||||
<FaqSplitText
|
||||
faqs={[
|
||||
{
|
||||
id: "1",
|
||||
title: "What is the minimum investment required?",
|
||||
content:
|
||||
"Minimum investments vary based on fund type. Our institutional funds typically require $100,000 minimum, while our diversified funds start at $50,000. We also offer structured products for smaller investors. Contact our sales team for specific fund details.",
|
||||
},
|
||||
id: "1", title: "What is the minimum investment required?", content:
|
||||
"Minimum investments vary based on fund type. Our institutional funds typically require $100,000 minimum, while our diversified funds start at $50,000. We also offer structured products for smaller investors. Contact our sales team for specific fund details."},
|
||||
{
|
||||
id: "2",
|
||||
title: "How do you ensure security of assets?",
|
||||
content:
|
||||
"We employ multi-layer security protocols including cold storage infrastructure, institutional custody partnerships, and blockchain-level verification. Our security is audited quarterly by leading cyber security firms, and we maintain 99.9% uptime.",
|
||||
},
|
||||
id: "2", title: "How do you ensure security of assets?", content:
|
||||
"We employ multi-layer security protocols including cold storage infrastructure, institutional custody partnerships, and blockchain-level verification. Our security is audited quarterly by leading cyber security firms, and we maintain 99.9% uptime."},
|
||||
{
|
||||
id: "3",
|
||||
title: "What are your management fees?",
|
||||
content:
|
||||
"Management fees typically range from 1-2% annually depending on fund size and strategy. We also charge a performance fee of 20% on profits above a benchmark. We believe in aligning our success with yours.",
|
||||
},
|
||||
id: "3", title: "What are your management fees?", content:
|
||||
"Management fees typically range from 1-2% annually depending on fund size and strategy. We also charge a performance fee of 20% on profits above a benchmark. We believe in aligning our success with yours."},
|
||||
{
|
||||
id: "4",
|
||||
title: "How transparent is the reporting?",
|
||||
content:
|
||||
"We provide monthly detailed reports with real-time portfolio valuation, transaction history, and performance analytics. All reports are accessible through our secure investor portal with full audit trails.",
|
||||
},
|
||||
id: "4", title: "How transparent is the reporting?", content:
|
||||
"We provide monthly detailed reports with real-time portfolio valuation, transaction history, and performance analytics. All reports are accessible through our secure investor portal with full audit trails."},
|
||||
{
|
||||
id: "5",
|
||||
title: "What cryptocurrencies do you invest in?",
|
||||
content:
|
||||
"We focus on established cryptocurrencies (Bitcoin, Ethereum) and select altcoins meeting strict criteria for liquidity, security, and institutional adoption. Our investment committee continuously evaluates emerging opportunities.",
|
||||
},
|
||||
id: "5", title: "What cryptocurrencies do you invest in?", content:
|
||||
"We focus on established cryptocurrencies (Bitcoin, Ethereum) and select altcoins meeting strict criteria for liquidity, security, and institutional adoption. Our investment committee continuously evaluates emerging opportunities."},
|
||||
{
|
||||
id: "6",
|
||||
title: "Are there lock-up periods?",
|
||||
content:
|
||||
"Most of our funds have quarterly redemption windows with 30-day notice. Certain strategies may have longer lock-up periods with corresponding fee reductions. Details are outlined in each fund's prospectus.",
|
||||
},
|
||||
id: "6", title: "Are there lock-up periods?", content:
|
||||
"Most of our funds have quarterly redemption windows with 30-day notice. Certain strategies may have longer lock-up periods with corresponding fee reductions. Details are outlined in each fund's prospectus."},
|
||||
]}
|
||||
sideTitle="Frequently Asked Questions"
|
||||
sideDescription="Find answers to common questions about our crypto fund management services"
|
||||
textPosition="left"
|
||||
useInvertedBackground={true}
|
||||
animationType="smooth"
|
||||
faqsAnimation="smooth"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -107,25 +88,13 @@ export default function ContactPage() {
|
||||
tagAnimation="slide-up"
|
||||
metrics={[
|
||||
{
|
||||
id: "1",
|
||||
value: "invest@cryptofund.io",
|
||||
description: "Primary email for investment inquiries and account management",
|
||||
},
|
||||
id: "1", value: "invest@cryptofund.io", description: "Primary email for investment inquiries and account management"},
|
||||
{
|
||||
id: "2",
|
||||
value: "+1 (555) 123-4567",
|
||||
description: "Direct line to our institutional sales and support team",
|
||||
},
|
||||
id: "2", value: "+1 (555) 123-4567", description: "Direct line to our institutional sales and support team"},
|
||||
{
|
||||
id: "3",
|
||||
value: "24/7",
|
||||
description: "Real-time support for urgent portfolio or security matters",
|
||||
},
|
||||
id: "3", value: "24/7", description: "Real-time support for urgent portfolio or security matters"},
|
||||
{
|
||||
id: "4",
|
||||
value: "Zoom",
|
||||
description: "Video consultations and presentations with our investment advisors",
|
||||
},
|
||||
id: "4", value: "Zoom", description: "Video consultations and presentations with our investment advisors"},
|
||||
]}
|
||||
metricsAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
@@ -138,8 +107,7 @@ export default function ContactPage() {
|
||||
copyrightText="© 2025 CryptoFund Management. All rights reserved."
|
||||
columns={[
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "/about" },
|
||||
{ label: "Services", href: "/services" },
|
||||
{ label: "Team", href: "#team" },
|
||||
@@ -147,8 +115,7 @@ export default function ContactPage() {
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
title: "Legal", items: [
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
{ label: "Terms of Service", href: "#" },
|
||||
{ label: "Compliance", href: "#" },
|
||||
@@ -156,8 +123,7 @@ export default function ContactPage() {
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact",
|
||||
items: [
|
||||
title: "Contact", items: [
|
||||
{ label: "Email", href: "mailto:info@cryptofund.io" },
|
||||
{ label: "LinkedIn", href: "https://linkedin.com" },
|
||||
{ label: "Twitter", href: "https://twitter.com" },
|
||||
|
||||
Reference in New Issue
Block a user