Add src/app/terms/page.tsx
This commit is contained in:
200
src/app/terms/page.tsx
Normal file
200
src/app/terms/page.tsx
Normal file
@@ -0,0 +1,200 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
|
||||
import LegalSection from "@/components/legal/LegalSection";
|
||||
import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
|
||||
|
||||
export default function TermsPage() {
|
||||
const navItems = [
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Investment Strategy", id: "/investment-strategy" },
|
||||
{ name: "Portfolio", id: "/portfolio" },
|
||||
{ name: "About Us", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
{ name: "Privacy Policy", id: "/privacy" },
|
||||
{ name: "Terms of Service", id: "/terms" },
|
||||
];
|
||||
|
||||
const footerColumns = [
|
||||
{
|
||||
items: [
|
||||
{ label: "Home", href: "/" },
|
||||
{ label: "Investment Strategy", href: "/investment-strategy" },
|
||||
{ label: "Portfolio", href: "/portfolio" },
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{ label: "About Us", href: "/about" },
|
||||
{ label: "Team", href: "/about" },
|
||||
{ label: "Contact", href: "/contact" },
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{ label: "LinkedIn", href: "https://linkedin.com" },
|
||||
{ label: "Twitter", href: "https://twitter.com" },
|
||||
{ label: "Crunchbase", href: "https://crunchbase.com" },
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{ label: "Privacy Policy", href: "/privacy" },
|
||||
{ label: "Terms of Service", href: "/terms" },
|
||||
{ label: "Compliance", href: "/compliance" },
|
||||
],
|
||||
},
|
||||
];
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-bubble"
|
||||
defaultTextAnimation="background-highlight"
|
||||
borderRadius="pill"
|
||||
contentWidth="mediumLarge"
|
||||
sizing="medium"
|
||||
background="circleGradient"
|
||||
cardStyle="layered-gradient"
|
||||
primaryButtonStyle="radial-glow"
|
||||
secondaryButtonStyle="layered"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={navItems}
|
||||
brandName="InvestTech Capital"
|
||||
bottomLeftText="Global Software Investment"
|
||||
bottomRightText="hello@investtech.com"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="legal" data-section="legal">
|
||||
<LegalSection
|
||||
layout="page"
|
||||
title="Terms of Service"
|
||||
subtitle="Last updated: January 15, 2025"
|
||||
sections={[
|
||||
{
|
||||
heading: "1. Agreement to Terms", content: [
|
||||
{
|
||||
type: "paragraph", text: "These Terms of Service (\"Terms\") constitute a legally binding agreement between you and InvestTech Capital (\"Company,\" \"we,\" \"us,\" \"our\"). By accessing and using our website, applications, and services (collectively, the \"Services\"), you agree to be bound by these Terms."},
|
||||
{
|
||||
type: "paragraph", text: "If you do not agree to these Terms, you must not use our Services. We reserve the right to modify these Terms at any time. Your continued use of our Services following any changes constitutes your acceptance of the revised Terms."},
|
||||
],
|
||||
},
|
||||
{
|
||||
heading: "2. Use License", content: [
|
||||
{
|
||||
type: "paragraph", text: "We grant you a limited, non-exclusive, non-transferable license to access and use our Services for lawful purposes only. You agree not to:"},
|
||||
{
|
||||
type: "list", items: [
|
||||
"Reproduce, duplicate, copy, or sell any portion of our Services", "Attempt to gain unauthorized access to our systems or networks", "Interfere with or disrupt the operation of our Services", "Use our Services for any illegal, fraudulent, or harmful purposes", "Harass, defame, or discriminate against any individual or entity", "Collect or aggregate personal data without authorization"],
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
heading: "3. Intellectual Property Rights", content: [
|
||||
{
|
||||
type: "paragraph", text: "All content, materials, and functionality on our Services, including but not limited to text, graphics, logos, images, software, and code, are the property of InvestTech Capital or our licensors and are protected by copyright, trademark, and other intellectual property laws."},
|
||||
{
|
||||
type: "paragraph", text: "You acknowledge that you do not acquire any ownership interest in or to any of our intellectual property through your use of the Services. Unauthorized use or reproduction of our intellectual property is strictly prohibited."},
|
||||
],
|
||||
},
|
||||
{
|
||||
heading: "4. User Responsibilities", content: [
|
||||
{
|
||||
type: "paragraph", text: "You are responsible for:"},
|
||||
{
|
||||
type: "list", items: [
|
||||
"Maintaining the confidentiality of your account credentials", "All activities that occur under your account", "Ensuring your use of the Services complies with applicable laws", "Notifying us immediately of any unauthorized use of your account"],
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
heading: "5. Investment Information Disclaimer", content: [
|
||||
{
|
||||
type: "paragraph", text: "The information provided through our Services is for educational and informational purposes only and should not be construed as investment advice, a recommendation, or an offer to buy or sell any security."},
|
||||
{
|
||||
type: "paragraph", text: "Past performance is not indicative of future results. All investments carry risk, including potential loss of principal. Before making any investment decision, consult with a qualified financial advisor."},
|
||||
],
|
||||
},
|
||||
{
|
||||
heading: "6. Limitation of Liability", content: [
|
||||
{
|
||||
type: "paragraph", text: "To the fullest extent permitted by law, InvestTech Capital shall not be liable for any indirect, incidental, special, consequential, or punitive damages arising from your use of or inability to use our Services, even if we have been advised of the possibility of such damages."},
|
||||
{
|
||||
type: "paragraph", text: "Our total liability to you for any claims arising from these Terms or your use of our Services shall not exceed $100."},
|
||||
],
|
||||
},
|
||||
{
|
||||
heading: "7. Disclaimer of Warranties", content: [
|
||||
{
|
||||
type: "paragraph", text: "Our Services are provided on an \"AS IS\" and \"AS AVAILABLE\" basis without warranties of any kind, express or implied. We disclaim all warranties, including implied warranties of merchantability, fitness for a particular purpose, and non-infringement."},
|
||||
],
|
||||
},
|
||||
{
|
||||
heading: "8. Indemnification", content: [
|
||||
{
|
||||
type: "paragraph", text: "You agree to indemnify, defend, and hold harmless InvestTech Capital and its officers, directors, employees, and agents from any claims, liabilities, damages, and expenses (including reasonable attorneys' fees) arising from your violation of these Terms or your use of our Services."},
|
||||
],
|
||||
},
|
||||
{
|
||||
heading: "9. Termination", content: [
|
||||
{
|
||||
type: "paragraph", text: "We reserve the right to terminate or restrict your access to our Services at any time, with or without cause, and without notice or liability. Upon termination, your right to use the Services ceases immediately."},
|
||||
],
|
||||
},
|
||||
{
|
||||
heading: "10. Third-Party Content and Services", content: [
|
||||
{
|
||||
type: "paragraph", text: "Our Services may contain links to third-party websites and services. We are not responsible for the content, accuracy, or practices of these external sites. Your use of third-party services is governed by their respective terms and policies."},
|
||||
],
|
||||
},
|
||||
{
|
||||
heading: "11. Governing Law", content: [
|
||||
{
|
||||
type: "paragraph", text: "These Terms shall be governed by and construed in accordance with the laws of [Your Jurisdiction], without regard to its conflict of law principles."},
|
||||
],
|
||||
},
|
||||
{
|
||||
heading: "12. Dispute Resolution", content: [
|
||||
{
|
||||
type: "paragraph", text: "Any dispute arising from these Terms or your use of our Services shall be resolved through binding arbitration or mediation in accordance with the applicable rules, unless prohibited by law. Both parties agree to attempt good-faith negotiation before pursuing formal legal remedies."},
|
||||
],
|
||||
},
|
||||
{
|
||||
heading: "13. Severability", content: [
|
||||
{
|
||||
type: "paragraph", text: "If any provision of these Terms is found to be invalid or unenforceable, such provision shall be modified to the minimum extent necessary to make it enforceable, or if not possible, shall be severed. The remaining provisions shall remain in full force and effect."},
|
||||
],
|
||||
},
|
||||
{
|
||||
heading: "14. Entire Agreement", content: [
|
||||
{
|
||||
type: "paragraph", text: "These Terms, along with our Privacy Policy and any other policies or agreements referenced herein, constitute the entire agreement between you and InvestTech Capital regarding your use of the Services and supersede all prior and contemporaneous agreements and understandings."},
|
||||
],
|
||||
},
|
||||
{
|
||||
heading: "15. Contact Information", content: [
|
||||
{
|
||||
type: "paragraph", text: "If you have questions or concerns about these Terms of Service, please contact us at:"},
|
||||
{
|
||||
type: "list", items: [
|
||||
"Email: legal@investtech.com", "Mail: InvestTech Capital, Legal Department, [Address]", "Phone: +1 (555) 123-4567"],
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
logoText="InvestTech Capital"
|
||||
columns={footerColumns}
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user