diff --git a/apps/frontend/messages/en.json b/apps/frontend/messages/en.json index c689d324..949322d7 100644 --- a/apps/frontend/messages/en.json +++ b/apps/frontend/messages/en.json @@ -50,7 +50,10 @@ "contact": "Contact", "status": "Status", "gallery": "Gallery", - "map": "Map" + "map": "Map", + "tos": "Terms of Service", + "privacy": "Privacy Policy", + "impressum": "Impressum" } }, "home": { diff --git a/apps/frontend/messages/es.json b/apps/frontend/messages/es.json index 067a1525..67abaa66 100644 --- a/apps/frontend/messages/es.json +++ b/apps/frontend/messages/es.json @@ -51,7 +51,10 @@ "contact": "Contacto", "status": "Estado del servidor", "gallery": "Galería", - "map": "Mapa" + "map": "Mapa", + "tos": "Términos de servicio", + "privacy": "Política de privacidad", + "impressum": "Aviso legal (Impressum)" } }, "home": { diff --git a/apps/frontend/messages/fr.json b/apps/frontend/messages/fr.json index b7bc0069..e6de1ae2 100644 --- a/apps/frontend/messages/fr.json +++ b/apps/frontend/messages/fr.json @@ -50,7 +50,10 @@ "contact": "Contact", "status": "Statut", "gallery": "Galerie", - "map": "Carte" + "map": "Carte", + "tos": "Conditions d'utilisation", + "privacy": "Politique de confidentialité", + "impressum": "Mentions légales (Impressum)" } }, "home": { diff --git a/apps/frontend/messages/gl.json b/apps/frontend/messages/gl.json index ae7bf266..930e3363 100644 --- a/apps/frontend/messages/gl.json +++ b/apps/frontend/messages/gl.json @@ -50,7 +50,10 @@ "contact": "Contacto", "status": "Estado", "gallery": "Galería", - "map": "Mapa" + "map": "Mapa", + "tos": "Termos de servizo", + "privacy": "Política de privacidade", + "impressum": "Aviso legal (Impressum)" } }, "home": { diff --git a/apps/frontend/messages/pl.json b/apps/frontend/messages/pl.json index 1f673808..32ff0836 100644 --- a/apps/frontend/messages/pl.json +++ b/apps/frontend/messages/pl.json @@ -50,7 +50,10 @@ "contact": "Kontakt", "status": "Status", "gallery": "Galeria", - "map": "Mapa" + "map": "Mapa", + "tos": "Warunki korzystania", + "privacy": "Polityka prywatności", + "impressum": "Nota prawna (Impressum)" } }, "home": { diff --git a/apps/frontend/messages/zh.json b/apps/frontend/messages/zh.json index 066f63cf..e891ff59 100644 --- a/apps/frontend/messages/zh.json +++ b/apps/frontend/messages/zh.json @@ -39,7 +39,10 @@ "contact": "聯繫", "status": "狀態", "gallery": "畫廊", - "map": "地圖" + "map": "地圖", + "tos": "服務條款", + "privacy": "隱私政策", + "impressum": "法律聲明 (Impressum)" } }, "home": { diff --git a/apps/frontend/next.config.ts b/apps/frontend/next.config.ts index 251639d6..f2a963f8 100644 --- a/apps/frontend/next.config.ts +++ b/apps/frontend/next.config.ts @@ -65,6 +65,38 @@ const nextConfig: NextConfig = { ? `${process.env.NEXT_PUBLIC_UMAMI_URL.replace('/script.js', '')}/api/send` : 'https://umami.buildtheearth.net/api/send', }, + { + source: '/privacy', + destination: '/legal/privacy', + }, + { + source: '/privacy-policy', + destination: '/legal/privacy', + }, + { + source: '/terms', + destination: '/legal/terms-of-service', + }, + { + source: '/tos', + destination: '/legal/terms-of-service', + }, + { + source: '/terms-of-service', + destination: '/legal/terms-of-service', + }, + { + source: '/impressum', + destination: '/legal/impressum', + }, + { + source: '/imprint', + destination: '/legal/impressum', + }, + { + source: '/legal-notice', + destination: '/legal/impressum', + }, ] }, experimental: { optimizePackageImports: ['@tabler/icons-react'] }, diff --git a/apps/frontend/src/app/[locale]/legal/impressum/page.tsx b/apps/frontend/src/app/[locale]/legal/impressum/page.tsx new file mode 100644 index 00000000..02c8d648 --- /dev/null +++ b/apps/frontend/src/app/[locale]/legal/impressum/page.tsx @@ -0,0 +1,67 @@ +import Wrapper from '@/components/layout/Wrapper' +import { Typography } from '@mantine/core' +import { NextPage } from 'next' + +const Impressum: NextPage = () => { + return ( + + +

Impressum (Legal Notice)

+

+ Information according to § 5 Digitale-Dienste-Gesetz (DDG) & § 18 Abs. 2 MStV +

+ +

Information pursuant to § 5 DDG

+

+ BuildTheEarth is a service provided by
+ [-----------] +
+ [-----------] +
+ [00000] [-----------] +
+ Germany +

+ +

Contact Information

+

+ Email: administration@buildtheearth.net +
+ Contact Form:{' '} + https://buildtheearth.net/contact +
+

+ +

Responsibility for Content according to § 18 Abs. 2 MStV

+

+ [-----------] +
+ Contact via email: administration@buildtheearth.net +

+ +

Disclaimer

+

+ The contents of this online offer have been prepared carefully and according to our current knowledge, but are + for information purposes only and do not have any legally binding effect, unless it is legally binding + information (eg the imprint, privacy policy, terms and conditions or mandatory consumer instructions). We + reserve the right to change or delete the contents in whole or in part, provided that contractual obligations + remain unaffected. All offers are subject to change and non-binding. The contents of external websites to + which we refer directly or indirectly are outside our area of responsibility and we do not adopt them as our + own. We accept no responsibility for any content or disadvantages arising from the use of the information + available on the linked websites. All contents presented on this website, such as texts, photographs, + graphics, brands and trademarks are protected by the respective protective rights (copyrights, trademark + rights). The use, reproduction, etc. are subject to our rights or the rights of the respective authors or + rights holders. If you notice any legal violations within our Internet presence, please inform us of them. We + will remove illegal content and links immediately after becoming aware of them. +

+
+
+ ) +} + +export default Impressum diff --git a/apps/frontend/src/app/[locale]/legal/privacy/page.tsx b/apps/frontend/src/app/[locale]/legal/privacy/page.tsx new file mode 100644 index 00000000..aed7bcb5 --- /dev/null +++ b/apps/frontend/src/app/[locale]/legal/privacy/page.tsx @@ -0,0 +1,681 @@ +import Wrapper from '@/components/layout/Wrapper' +import { Typography } from '@mantine/core' +import { NextPage } from 'next' + +const PrivacyPolicy: NextPage = () => { + return ( + + +

+ Last updated: April 12, 2025 +

+

+ This Privacy Policy describes BuildTheEarth's policies and procedures on the collection, use, and + disclosure of your information when you use our Service and informs you about your privacy rights and how the + law protects you. +

+

+ We use your Personal Data to provide and improve the Service. By using the Service, you agree to the + collection and use of information in accordance with this Privacy Policy. +

+

Content

+ +

Definitions

+

For the purposes of this Privacy Policy:

+ + +

+ Below you will find an overview of the legal bases of the GDPR on the basis of which we process personal data. + Please note that in addition to the provisions of the GDPR, national data protection regulations may apply in + Your or Our country of residence. +

+ +

Collecting and Using Your Personal Data

+

Types of Data Collected

+ While using our Service, we may ask you to provide us with certain personally identifiable information that can + be used to contact or identify you. Collected data may include, but is not limited to: + +

Personal Data

+

+ While using our Service, we may ask you to provide us with certain personally identifiable information that + can be used to contact or identify you. Personally identifiable information may include, but is not limited + to: +

+ +

Usage Data

+

Usage Data is collected automatically when using the Service.

+

+ Usage Data may include information such as your Device's Internet Protocol address (e.g., IP address), + browser type, browser version, operating system, the pages of our Service that you visit, the time and date of + your visit, the time spent on those pages, unique device identifiers, and other diagnostic data. +

+

+ When you access the Service by or through a mobile device, we may collect certain information automatically, + including, but not limited to, the type of mobile device you use, your mobile device unique ID, the IP address + of your mobile device, your mobile operating system, the type of mobile Internet browser you use, unique + device identifiers, and other diagnostic data. +

+

+ We may also collect information that your browser sends whenever you visit our Service or when you access the + Service by or through a mobile device. +

+

+ Information from Third-Party Social Media Services +

+

+ BuildTheEarth allows you to create an account and log in to use the Service through the following Third-party + Social Media Services: +

+ +

+ If you decide to register through or otherwise grant us access to a Third-Party Social Media Service, we may + collect Personal Data that is already associated with your Third-Party Social Media Service's account, + such as your username, email address, and activities or your contact list associated with that account. +

+

+ You may also have the option of sharing additional information with BuildTheEarth through your Third-Party + Social Media Service's account. If you choose to provide such information and Personal Data, during + registration or otherwise, you are giving BuildTheEarth permission to use, share, and store it in a manner + consistent with this Privacy Policy. +

+

+ Specific Personal Data granted to us by Third-Party Social Media Services are subject to the privacy policies + of the respective services. We do not control these services and are not responsible for their privacy + policies and practices. We recommend that you review the privacy policies of any Third-Party Social Media + Services you choose to use to understand how they collect, use, and share your information. +

+

Tracking Technologies and Cookies

+

+ We use Cookies and similar tracking technologies to track the activity on our Service and store certain + information. Tracking technologies used are beacons, tags, and scripts to collect and track information and to + improve and analyze our Service. The technologies we use may include: +

+ +

+ Cookies can be "Persistent" or "Session" Cookies. Persistent Cookies remain on your + personal computer or mobile device when you go offline, while Session Cookies are deleted as soon as you close + your web browser. +

+

We use both Session and Persistent Cookies for the purposes set out below:

+ +

Use of Your Personal Data

+

BuildTheEarth may use Personal Data for the following purposes:

+ +

We may share your personal information in the following situations:

+ +

Retention of Your Personal Data

+

+ BuildTheEarth will retain your Personal Data only for as long as is necessary for the purposes set out in this + Privacy Policy. We will retain and use your Personal Data to the extent necessary to comply with our legal + obligations, resolve disputes, and enforce our policies. +

+

+ If there are multiple details regarding the retention period or deletion period for a given date, the longest + period always applies. If a period does not explicitly begin on a specific date and is at least one year, it + automatically begins at the end of the calendar year in which the event triggering the period occurred. In the + case of ongoing contractual relationships in which data is stored, the event triggering the period is the + effective date of the termination or other termination of the legal relationship. +

+

+ We process data that is no longer stored for the originally intended purpose but due to legal requirements or + other reasons only for the reasons that justify its storage. +

+

The following general periods apply to retention and archiving under German law:

+ +

Transfer of Your Personal Data

+

+ Your information, including Personal Data, is processed at BuildTheEarth's operating locations and in any + other places where the parties involved in the processing are located. This means that this information may be + transferred to — and maintained on — computers located outside of your state, province, country, or other + governmental jurisdiction where the data protection laws may differ from those of your jurisdiction. +

+

Our servers are primarily located in Germany and may also be located in the Netherlands or United States.

+

+ Your consent to this Privacy Policy followed by your submission of such information represents your agreement + to that transfer. +

+

+ BuildTheEarth will take all steps reasonably necessary to ensure that your data is treated securely and in + accordance with this Privacy Policy and no transfer of your Personal Data will take place to an organization + or a country unless there are adequate controls in place including the security of your data and other + personal information. +

+

Delete Your Personal Data

+

+ You have the right to delete or request that we assist in deleting the Personal Data that we have collected + about you. +

+

Our Service may give you the ability to delete certain information about you from within the Service.

+

+ You may update, amend, or delete your information at any time by signing in to your Account and visiting the + account settings section that allows you to manage your personal information. You may also contact us to + request access to, correct, or delete any personal information that you have provided to us. +

+

+ Please note, however, that we may need to retain certain information when we have a legal obligation or lawful + basis to do so. +

+

Disclosure of Your Personal Data

+

Law enforcement

+

+ Under certain circumstances, BuildTheEarth may be required to disclose your Personal Data if required to do so + by law or in response to valid requests by public authorities (e.g., a court or a government agency). +

+ +

BuildTheEarth may disclose your Personal Data in the good faith belief that such action is necessary to:

+ +

Security of Your Personal Data

+

+ In accordance with the legal requirements, taking into account the state of the art, the implementation costs + and the nature, scope, circumstances and purposes of the processing as well as the different probabilities of + occurrence and the extent of the threat to the rights and freedoms of natural persons, we take appropriate + technical and organisational measures to ensure a level of protection appropriate to the risk. +

+

+ These measures include, in particular, ensuring the confidentiality, integrity, and availability of data by + controlling physical and electronic access to the data, as well as the access, input, and transfer of data, + ensuring its availability, and segregation. Furthermore, we have established procedures that ensure the + exercise of data subjects' rights, the deletion of data, and responses to data threats. +

+

+ To protect user data transmitted via our online services from unauthorized access, we use TLS/SSL encryption + technology. Secure Sockets Layer (SSL) and Transport Layer Security (TLS) are the cornerstones of secure data + transmission on the internet. These technologies encrypt the information transmitted between the website or + app and the user's browser (or between two servers), thereby protecting the data from unauthorized + access. TLS, as the more advanced and secure version of SSL, ensures that all data transmissions meet the + highest security standards. If a website is secured by an SSL/TLS certificate, this is signaled by the display + of HTTPS in the URL. This serves as an indicator to users that their data is being transmitted securely and + encrypted. +

+

User-Generated Content

+

+ As a community project focused on creating content in Minecraft, we want to clarify the ownership of content + created within our service: +

+ +

Users can create the following content on our platform:

+ +

Children's Privacy

+

+ Our Service does not address anyone under the age of 13. We do not knowingly collect personally identifiable + information from anyone under the age of 13. If you are a parent or guardian and you are aware that your child + has provided us with Personal Data, please contact us. If we become aware that we have collected Personal Data + from anyone under the age of 13 without verification of parental consent, we take steps to remove that + information from our servers. +

+

+ Please note that as Discord is mandatory for creating a BuildTheEarth account, Discord's age requirements + (13 or 16 depending on your country) also apply to our Service. +

+ +

+ Our Service may contain links to other websites that are not operated by us. If you click on a third-party + link, you will be directed to that third party's site. We strongly advise you to review the Privacy Policy + of every site you visit. +

+

+ We have no control over and assume no responsibility for the content, privacy policies, or practices of any + third-party sites or services. +

+

Changes to this Privacy Policy

+

+ We may update our Privacy Policy from time to time. We will notify you of any changes by posting the new + Privacy Policy on this page. +

+

We will update the "Last updated" date at the top of this Privacy Policy when changes are made.

+

+ You are advised to review this Privacy Policy periodically for any changes. Changes to this Privacy Policy are + effective when they are posted on this page. +

+

External Services

+

+ We offer Our services on online platforms operated by Third Parties. In this context, the privacy policies of + the respective platforms apply in addition to this Privacy Policy. +

+ +

+ We use Third-Party Services to host and provide the Service. These Third-Party Services may collect + information used to identify you. +

+ +

Data Protection Rights

+

+ Depending on your location, you may have certain rights regarding your personal data under frameworks such as + the GDPR (European Union) or CCPA (California). These may include: +

+ +

To exercise these rights, please contact us using the methods listed below.

+

Contact Us

+

If you have any questions about this Privacy Policy, you can contact us:

+ +
+
+ ) +} + +export default PrivacyPolicy diff --git a/apps/frontend/src/app/[locale]/legal/terms-of-service/page.tsx b/apps/frontend/src/app/[locale]/legal/terms-of-service/page.tsx new file mode 100644 index 00000000..c4a69c01 --- /dev/null +++ b/apps/frontend/src/app/[locale]/legal/terms-of-service/page.tsx @@ -0,0 +1,519 @@ +import Wrapper from '@/components/layout/Wrapper' +import { Typography } from '@mantine/core' +import { NextPage } from 'next' + +const TermsOfService: NextPage = () => { + return ( + + +

+ Last updated: April 12, 2025 +

+

Please read these terms and conditions carefully before using Our Service.

+

Content

+ +

Definitions

+

For the purposes of these Terms and Conditions:

+ +

Acknowledgment

+

+ These are the Terms and Conditions governing the use of this Service and the agreement that operates between + You and the Company. These Terms and Conditions set out the rights and obligations of all users regarding the + use of the Service. +

+

+ Your access to and use of the Service is conditioned on Your acceptance of and compliance with these Terms and + Conditions. These Terms and Conditions apply to all visitors, users and others who access or use the Service. +

+

+ By accessing or using the Service You agree to be bound by these Terms and Conditions. If You disagree with + any part of these Terms and Conditions then You may not access the Service. +

+

+ Your access to and use of the Service is also conditioned on Your acceptance of and compliance with the + Privacy Policy of the Company. Our Privacy Policy describes Our policies and procedures on the collection, use + and disclosure of Your personal information when You use the Application or the Website and tells You about + Your privacy rights and how the law protects You. Please read Our Privacy Policy carefully before using Our + Service. +

+

Age Restrictions

+

+ Our Service does not address anyone under the age of 13. We do not knowingly collect personally identifiable + information from anyone under the age of 13. If you are a parent or guardian and you are aware that your child + has provided us with Personal Data, please contact us. If we become aware that we have collected Personal Data + from anyone under the age of 13 without verification of parental consent, we take steps to remove that + information from our servers. +

+

+ Please note that as Discord is mandatory for creating a BuildTheEarth account, Discord's age requirements + (13 or 16 depending on your country) also apply to our Service. +

+

User Accounts

+

+ When You create an account with Us, You must provide Us information that is accurate, complete, and current at + all times. Failure to do so constitutes a breach of the Terms, which may result in immediate termination of + Your account on Our Service. +

+

+ You are responsible for safeguarding the password that You use to access the Service and for any activities or + actions under Your password, whether Your password is with Our Service or a Third-Party Social Media Service. +

+

+ You agree not to disclose Your password to any third party. You must notify Us immediately upon becoming aware + of any breach of security or unauthorized use of Your account. +

+

+ You may not use as a username the name of another person or entity or that is not lawfully available for use, + a name or trademark that is subject to any rights of another person or entity other than You without + appropriate authorization, or a name that is otherwise offensive, vulgar or obscene. +

+

Content

+

Your Right to Post Content

+

+ Our Service allows You to post Content. You are responsible for the Content that You post to the Service, + including its legality, reliability, and appropriateness. +

+

+ By posting Content to the Service, You grant Us the right and license to use, modify, publicly perform, + publicly display, reproduce, and distribute such Content on and through the Service. You retain any and all of + Your rights to any Content You submit, post or display on or through the Service and You are responsible for + protecting those rights. You agree that this license includes the right for Us to make Your Content available + to other users of the Service, who may also use Your Content subject to these Terms. +

+

+ You represent and warrant that: (i) the Content is Yours (You own it) or You have the right to use it and + grant Us the rights and license as provided in these Terms, and (ii) the posting of Your Content on or through + the Service does not violate the privacy rights, publicity rights, copyrights, contract rights or any other + rights of any person. +

+

Content Ownership

+

+ As BuildTheEarth is a project based on creating content ("Buildings") in Minecraft, content + ownership of these buildings and any images taken of them belongs to the builders and the person taking the + screenshots. This ownership remains in place when uploaded to the showcase gallery of BuildTheEarth or its + Discord server channels. +

+

Content Restrictions

+

+ The Company is not responsible for the content of the Service's users. You expressly understand and agree + that You are solely responsible for the Content and for all activity that occurs under your account, whether + done so by You or any third person using Your account. +

+

+ You may not transmit any Content that is unlawful, offensive, upsetting, intended to disgust, threatening, + libelous, defamatory, obscene or otherwise objectionable. Examples of such objectionable Content include, but + are not limited to, the following: +

+ +

+ The Company reserves the right, but not the obligation, to, in its sole discretion, determine whether or not + any Content is appropriate and complies with this Terms, refuse or remove this Content. The Company further + reserves the right to make formatting and edits and change the manner of any Content. The Company can also + limit or revoke the use of the Service if You post such objectionable Content. +

+

+ As the Company cannot control all content posted by users and/or third parties on the Service, you agree to + use the Service at your own risk. You understand that by using the Service You may be exposed to content that + You may find offensive, indecent, incorrect or objectionable, and You agree that under no circumstances will + the Company be liable in any way for any content, including any errors or omissions in any content, or any + loss or damage of any kind incurred as a result of your use of any content. +

+

Content Backups

+

+ Although regular backups of Content are performed, the Company does not guarantee there will be no loss or + corruption of data. +

+

+ Corrupt or invalid backup points may be caused by, without limitation, Content that is corrupted prior to + being backed up or that changes during the time a backup is performed. +

+

+ The Company will provide support and attempt to troubleshoot any known or discovered issues that may affect + the backups of Content. But You acknowledge that the Company has no liability related to the integrity of + Content or the failure to successfully restore Content to a usable state. +

+

+ You agree to maintain a complete and accurate copy of any Content in a location independent of the Service. +

+

+ Prohibition of Content Scraping and Unauthorized Use +

+

+ Any automated scraping, harvesting, or extraction of Content from our Service is strictly prohibited without + explicit written permission from both the Company and the content creators. This includes but is not limited + to: +

+ +

+ Content created on BuildTheEarth, including builds, screenshots, and related materials, may not be used for + commercial purposes, training of artificial intelligence systems, or any purpose not explicitly authorized by + the Company and the original content creators. +

+

+ Violation of these terms may result in immediate termination of your account, legal action, and other remedies + available under applicable law. +

+ +

Intellectual Property Infringement

+

+ We respect the intellectual property rights of others. It is Our policy to respond to any claim that Content + posted on the Service infringes a copyright or other intellectual property infringement of any person. +

+

+ If You are a copyright owner, or authorized on behalf of one, and You believe that the copyrighted work has + been copied in a way that constitutes copyright infringement that is taking place through the Service, You + must submit Your notice in writing to the attention of Us via email (privacy@buildtheearth.net) and include in + Your notice a detailed description of the alleged infringement. +

+

+ You may be held accountable for damages (including costs and attorneys' fees) for misrepresenting that any + Content is infringing Your copyright. +

+ +

+ You may submit a notification pursuant to the Digital Millennium Copyright Act (DMCA) by providing Us with the + following information in writing (see 17 U.S.C 512(c)(3) for further detail): +

+ +

+ You can contact Us via email (privacy@buildtheearth.net). Upon receipt of a notification, the Company will + take whatever action, in its sole discretion, it deems appropriate, including removal of the challenged + content from the Service. +

+

Intellectual Property

+

+ The Service and its original content (excluding Content provided by You or other users), features and + functionality are and will remain the exclusive property of the Company and its licensors. +

+

+ The Service is protected by copyright, trademark, and other laws of both the Country and foreign countries. +

+

+ Our trademarks and trade dress may not be used in connection with any product or service without the prior + written consent of the Company. +

+

Your Feedback to Us

+

+ You assign all rights, title and interest in any Feedback You provide the Company. If for any reason such + assignment is ineffective, You agree to grant the Company a non-exclusive, perpetual, irrevocable, royalty + free, worldwide right and license to use, reproduce, disclose, sub-license, distribute, modify and exploit + such Feedback without restriction. +

+ +

+ Our Service may contain links to third-party web sites or services that are not owned or controlled by the + Company. +

+

+ The Company has no control over, and assumes no responsibility for, the content, privacy policies, or + practices of any third party web sites or services. You further acknowledge and agree that the Company shall + not be responsible or liable, directly or indirectly, for any damage or loss caused or alleged to be caused by + or in connection with the use of or reliance on any such content, goods or services available on or through + any such web sites or services. +

+

+ We strongly advise You to read the terms and conditions and privacy policies of any third-party web sites or + services that You visit. +

+

Termination

+

+ We may terminate or suspend Your Account immediately, without prior notice or liability, for any reason + whatsoever, including without limitation if You breach these Terms and Conditions. +

+

+ Upon termination, Your right to use the Service will cease immediately. If You wish to terminate Your Account, + You may simply discontinue using the Service. +

+

Limitation of Liability

+

+ To the maximum extent permitted by applicable law, in no event shall the Company or its suppliers be liable + for any special, incidental, indirect, or consequential damages whatsoever (including, but not limited to, + damages for loss of profits, loss of data or other information, for business interruption, for personal + injury, loss of privacy arising out of or in any way related to the use of or inability to use the Service, + third-party software and/or third-party hardware used with the Service, or otherwise in connection with any + provision of this Terms), even if the Company or any supplier has been advised of the possibility of such + damages and even if the remedy fails of its essential purpose. +

+

+ Some states do not allow the exclusion of implied warranties or limitation of liability for incidental or + consequential damages, which means that some of the above limitations may not apply. In these states, each + party's liability will be limited to the greatest extent permitted by law. +

+

"AS IS" and "AS AVAILABLE" Disclaimer

+

+ The Service is provided to You "AS IS" and "AS AVAILABLE" and with all faults and defects + without warranty of any kind. To the maximum extent permitted under applicable law, the Company, on its own + behalf and on behalf of its Affiliates and its and their respective licensors and service providers, expressly + disclaims all warranties, whether express, implied, statutory or otherwise, with respect to the Service, + including all implied warranties of merchantability, fitness for a particular purpose, title and + non-infringement, and warranties that may arise out of course of dealing, course of performance, usage or + trade practice. Without limitation to the foregoing, the Company provides no warranty or undertaking, and + makes no representation of any kind that the Service will meet Your requirements, achieve any intended + results, be compatible or work with any other software, applications, systems or services, operate without + interruption, meet any performance or reliability standards or be error free or that any errors or defects can + or will be corrected. +

+

+ Without limiting the foregoing, neither the Company nor any of the company's provider makes any + representation or warranty of any kind, express or implied: (i) as to the operation or availability of the + Service, or the information, content, and materials or products included thereon; (ii) that the Service will + be uninterrupted or error-free; (iii) as to the accuracy, reliability, or currency of any information or + content provided through the Service; or (iv) that the Service, its servers, the content, or e-mails sent from + or on behalf of the Company are free of viruses, scripts, trojan horses, worms, malware, timebombs or other + harmful components. +

+

+ Some jurisdictions do not allow the exclusion of certain types of warranties or limitations on applicable + statutory rights of a consumer, so some or all of the above exclusions and limitations may not apply to You. + But in such a case the exclusions and limitations set forth in this section shall be applied to the greatest + extent enforceable under applicable law. +

+

Governing Law

+

+ The laws of the Country, excluding its conflicts of law rules, shall govern this Terms and Your use of the + Service. Your use of the Application may also be subject to other local, state, national, or international + laws. +

+

Disputes Resolution

+

+ If You have any concern or dispute about the Service, You agree to first try to resolve the dispute informally + by contacting the Company. +

+

For European Union (EU) Users

+

+ If You are a European Union consumer, you will benefit from any mandatory provisions of the law of the country + in which you are resident in. +

+ +

+ You represent and warrant that (i) You are not located in a country that is subject to the United States + government embargo, or that has been designated by the United States government as a "terrorist + supporting" country, and (ii) You are not listed on any United States government list of prohibited or + restricted parties. +

+

Severability and Waiver

+

Severability

+

+ If any provision of these Terms is held to be unenforceable or invalid, such provision will be changed and + interpreted to accomplish the objectives of such provision to the greatest extent possible under applicable + law and the remaining provisions will continue in full force and effect. +

+

Waiver

+

+ Except as provided herein, the failure to exercise a right or to require performance of an obligation under + these Terms shall not effect a party's ability to exercise such right or require such performance at any + time thereafter nor shall be the waiver of a breach constitute a waiver of any subsequent breach. +

+

Translation Interpretation

+

These Terms and Conditions may have been translated if We have made them available to You on our Service.

+

You agree that the original English text shall prevail in the case of a dispute.

+

Changes to These Terms and Conditions

+

+ We reserve the right, at Our sole discretion, to modify or replace these Terms at any time. If a revision is + material We will make reasonable efforts to provide at least 30 days' notice prior to any new terms taking + effect. What constitutes a material change will be determined at Our sole discretion. +

+

+ By continuing to access or use Our Service after those revisions become effective, You agree to be bound by + the revised terms. If You do not agree to the new terms, in whole or in part, please stop using the website + and the Service. +

+

Contact Us

+

If you have any questions about these Terms and Conditions, You can contact us:

+ +
+
+ ) +} + +export default TermsOfService diff --git a/apps/frontend/src/components/layout/footer/index.tsx b/apps/frontend/src/components/layout/footer/index.tsx index fe5f146e..c875c357 100644 --- a/apps/frontend/src/components/layout/footer/index.tsx +++ b/apps/frontend/src/components/layout/footer/index.tsx @@ -13,6 +13,12 @@ const links = [ { link: 'https://status.buildtheearth.net', key: 'status' }, ] +const legalLinks = [ + { link: '/legal/impressum', key: 'impressum' }, + { link: '/legal/privacy', key: 'privacy' }, + { link: '/legal/terms-of-service', key: 'tos' }, +] + interface FooterProps { style?: React.CSSProperties } @@ -27,13 +33,19 @@ export default function Footer({ style }: FooterProps) { )) + const legalItems = legalLinks.map((link) => ( + + {tLinks(link.key)} + + )) + return ( {t('copyright', { year: new Date().getFullYear() })} - + {items} + + {legalItems} + )