terms_of_service.tsx
Return to Main

Terms of Service

Last updated: February 11, 2025

Important Notice

By accessing this website, you agree to these terms of service. Please read them carefully before proceeding.

Acceptance of Terms

By accessing and using this website, you accept and agree to be bound by the terms and provisions of this agreement.

• You must be at least 13 years old to use this service

• You agree to use the website in compliance with all applicable laws

• You accept our privacy practices as described in our Privacy Policy

Example Implementation
const checkAcceptance = (user: { age: number; acceptTerms: boolean; acceptPrivacy: boolean }) => {
  if (user.age < 13) {
    throw new Error('Age requirement not met');
  }
  return user.acceptTerms && user.acceptPrivacy;
};

Intellectual Property

All content on this website is protected by intellectual property rights:

• Website design and code

• Portfolio projects and descriptions

• Images and media content

• Text content and documentation

Example Implementation
// Copyright protection implementation
const protectedContent = {
  copyright: '© 2025 Febnawan FR',
  rights: 'All Rights Reserved',
  type: 'Intellectual Property'
} as const;

User Conduct

Users of this website agree to:

• Not attempt to breach website security

• Not copy or redistribute content without permission

• Not use the website for any illegal purposes

• Respect intellectual property rights

Example Implementation
const validateUserConduct = (action: string): boolean => {
  const forbidden = ['breach', 'copy', 'illegal'] as const;
  return !forbidden.some((term) => 
    action.toLowerCase().includes(term)
  );
};

Limitations

This website is provided "as is" with:

• No guarantees of uninterrupted service

• No warranty for content accuracy

• Right to modify terms at any time

• Limited liability for any damages

Example Implementation
interface Disclaimer {
  warranty: null;
  service: 'as-is';
  modifications: 'subject-to-change';
  liability: 'limited';
}

Questions about our terms? febnawanrochman2@gmail.com