import { useTranslation } from 'react-i18next'; import SEO from '../components/SEO'; import PageTransition from '../components/PageTransition'; import Breadcrumbs from '../components/Breadcrumbs'; const TermsPage = () => { const { t } = useTranslation(); const schema = { '@context': 'https://schema.org', '@type': 'WebPage', name: 'Terms of Service', description: 'Terms of Service for Damjan Savić\'s portfolio website' }; return (

Terms of Service

Last updated: March 10, 2024

1. Agreement to Terms

By accessing our website, you agree to be bound by these Terms of Service and to comply with all applicable laws and regulations.

2. Intellectual Property Rights

All content on this website, including but not limited to text, graphics, logos, images, and software, is the property of Damjan Savić and is protected by intellectual property laws.

3. User Responsibilities

When using our website, you agree to:

  • Provide accurate information
  • Use the website legally and ethically
  • Not attempt to gain unauthorized access
  • Not interfere with the website's operation

4. Limitation of Liability

We shall not be liable for any indirect, incidental, special, consequential, or punitive damages resulting from your use of or inability to use the website.

5. Changes to Terms

We reserve the right to modify these terms at any time. We will notify users of any material changes by posting the new Terms of Service on this page.

6. Governing Law

These terms shall be governed by and construed in accordance with the laws of Germany, without regard to its conflict of law provisions.

7. Contact Information

For any questions about these Terms of Service, please contact us at:

Email: legal@damjan-savic.com

Address: {t('contact.address')}

); }; export default TermsPage;