ADD LANDING PAGE

This commit is contained in:
dios.one
2026-05-05 18:35:16 +07:00
commit d70ec03c94
27 changed files with 4394 additions and 0 deletions
+111
View File
@@ -0,0 +1,111 @@
import React from 'react'
import LegalLayout, { Section, Para, BulletList } from '../components/LegalLayout'
export default function TermsConditions() {
return (
<LegalLayout title="Terms & Conditions" updated="April 29, 2026">
<Section title="1. Acceptance of Terms">
<Para>
By downloading, installing, or using Nova40, you agree to be bound by these Terms and Conditions. If you do not agree, please do not use the application.
</Para>
</Section>
<Section title="2. Description of Service">
<Para>
Nova40 is a 40-day identity transformation app that helps users build habits, track progress, and reflect on personal growth through AI-powered insights, journaling, and gamification.
</Para>
</Section>
<Section title="3. User Accounts">
<Para>To use Nova40, you must:</Para>
<BulletList items={[
'Create an account with a valid email address',
'Maintain the security of your account credentials',
'Be at least 13 years of age',
]} />
<Para>You are responsible for all activity that occurs under your account.</Para>
</Section>
<Section title="4. User Content">
<Para>
You retain ownership of all content you create in Nova40, including your stories, journal entries, and reflections. By using the AI features, you grant us permission to process your content through third-party AI services for the purpose of generating personalized responses.
</Para>
</Section>
<Section title="5. AI-Generated Content">
<Para>
Nova40 uses artificial intelligence to generate identity statements, habit suggestions, reflections, and transformation stories. You acknowledge that:
</Para>
<BulletList items={[
'AI-generated content is for guidance only, not professional advice',
'AI responses may not always be accurate or appropriate',
'You should not rely solely on AI content for mental health decisions',
]} />
</Section>
<Section title="6. Acceptable Use">
<Para>You agree not to:</Para>
<BulletList items={[
'Use the app for any illegal or unauthorized purpose',
'Attempt to hack, reverse engineer, or disrupt the service',
'Submit content that is harmful, abusive, or violates others\' rights',
'Create multiple accounts to abuse free features',
]} />
</Section>
<Section title="7. Intellectual Property">
<Para>
The Nova40 app, including its design, code, logos, and branding, is owned by Nova40 and protected by intellectual property laws. You may not copy, modify, or distribute any part of the application without written permission.
</Para>
</Section>
<Section title="8. Disclaimer of Warranties">
<Para>
Nova40 is provided "as is" without warranties of any kind. We do not guarantee that the app will be uninterrupted, error-free, or that AI-generated content will meet your expectations.
</Para>
</Section>
<Section title="9. Limitation of Liability">
<Para>
To the maximum extent permitted by law, Nova40 shall not be liable for any indirect, incidental, or consequential damages arising from your use of the application.
</Para>
</Section>
<Section title="10. Health Disclaimer">
<Para>
Nova40 is a personal development tool and is not a substitute for professional medical, psychological, or therapeutic advice. If you are experiencing mental health issues, please consult a qualified professional.
</Para>
</Section>
<Section title="11. Data and Privacy">
<Para>
Your use of Nova40 is also governed by our Privacy Policy. Please review it to understand how we collect and use your information.
</Para>
</Section>
<Section title="12. Termination">
<Para>
We reserve the right to suspend or terminate your account at any time for violation of these terms. You may delete your account at any time through the app settings.
</Para>
</Section>
<Section title="13. Changes to Terms">
<Para>
We may update these Terms and Conditions from time to time. Continued use of the app after changes constitutes acceptance of the updated terms.
</Para>
</Section>
<Section title="14. Governing Law">
<Para>
These terms are governed by the laws of the Republic of Indonesia. Any disputes shall be resolved in the courts of Indonesia.
</Para>
</Section>
<Section title="15. Contact">
<Para>
For questions about these Terms, contact us at: support@nova40.app
</Para>
</Section>
</LegalLayout>
)
}