Add src/app/terms/page.tsx

This commit is contained in:
2026-03-09 09:43:40 +00:00
parent 3f586993e2
commit 147ffdfef1

126
src/app/terms/page.tsx Normal file
View File

@@ -0,0 +1,126 @@
'use client';
import { ThemeProvider } from '@/components/theme/ThemeProvider';
import { NavbarStyleFullscreen } from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import { LegalSection } from '@/components/legal/LegalSection';
const navItems = [
{ name: 'Home', id: '/' },
{ name: 'Features', id: '/#features' },
{ name: 'Dashboard', id: '/dashboard' },
{ name: 'Sign In', id: '/login' },
];
export default function TermsPage() {
return (
<ThemeProvider
defaultButtonVariant="hover-magnetic"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="bold"
>
<NavbarStyleFullscreen
navItems={navItems}
brandName="AccountHub"
bottomLeftText="Global Community"
bottomRightText="support@accounthub.com"
/>
<LegalSection
layout="page"
title="Terms of Service"
subtitle="Last updated: January 2025"
sections={[
{
heading: '1. Acceptance of Terms',
content: [
{
type: 'paragraph',
text: 'By accessing and using AccountHub, you accept and agree to be bound by the terms and provision of this agreement. If you do not agree to abide by the above, please do not use this service.',
},
],
},
{
heading: '2. Use License',
content: [
{
type: 'paragraph',
text: 'Permission is granted to temporarily download one copy of the materials (information or software) on AccountHub for personal, non-commercial transitory viewing only.',
},
{
type: 'list',
items: [
'You may not modify, copy, or distribute the materials',
'You may not use the materials for any commercial purpose',
'You may not attempt to decompile or reverse engineer the software',
'You may not remove any copyright or other proprietary notations',
'You may not transfer the materials to another person or "mirror" the materials on any other server',
],
},
],
},
{
heading: '3. Disclaimer',
content: [
{
type: 'paragraph',
text: 'The materials on AccountHub are provided on an "as is" basis. AccountHub makes no warranties, expressed or implied, and hereby disclaims and negates all other warranties including, without limitation, implied warranties or conditions of merchantability, fitness for a particular purpose, or non-infringement of intellectual property or other violation of rights.',
},
],
},
{
heading: '4. Limitations',
content: [
{
type: 'paragraph',
text: 'In no event shall AccountHub or its suppliers be liable for any damages (including, without limitation, damages for loss of data or profit, or due to business interruption) arising out of the use or inability to use the materials on AccountHub, even if AccountHub or an authorized representative has been notified orally or in writing of the possibility of such damage.',
},
],
},
{
heading: '5. Accuracy of Materials',
content: [
{
type: 'paragraph',
text: 'The materials appearing on AccountHub could include technical, typographical, or photographic errors. AccountHub does not warrant that any of the materials on AccountHub are accurate, complete, or current. AccountHub may make changes to the materials contained on AccountHub at any time without notice.',
},
],
},
{
heading: '6. Links',
content: [
{
type: 'paragraph',
text: 'AccountHub has not reviewed all of the sites linked to its website and is not responsible for the contents of any such linked site. The inclusion of any link does not imply endorsement by AccountHub of the site. Use of any such linked website is at the user\'s own risk.',
},
],
},
{
heading: '7. Modifications',
content: [
{
type: 'paragraph',
text: 'AccountHub may revise these terms of service for its website at any time without notice. By using this website, you are agreeing to be bound by the then current version of these terms of service.',
},
],
},
{
heading: '8. Governing Law',
content: [
{
type: 'paragraph',
text: 'These terms and conditions are governed by and construed in accordance with the laws of the jurisdiction in which AccountHub operates, and you irrevocably submit to the exclusive jurisdiction of the courts in that location.',
},
],
},
]}
/>
</ThemeProvider>
);
}