Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 | 1x | import React from "react";
import { SettingsScreenScaffold } from "../../components/settings/SettingsScreenScaffold";
import {
SettingsLegalBullet,
SettingsLegalLastUpdated,
SettingsLegalParagraph,
SettingsLegalSectionTitle,
} from "../../components/settings";
export default function SettingsTerms() {
return (
<SettingsScreenScaffold title="Terms of Service">
<SettingsLegalLastUpdated>
Last Updated: March 2, 2026
</SettingsLegalLastUpdated>
<SettingsLegalSectionTitle>1. Introduction</SettingsLegalSectionTitle>
<SettingsLegalParagraph>
Welcome to the ConUNav application ("App") provided by
Concordia University ("University", "we",
"us", or "our"). By downloading, installing, or
using this App, you agree to be bound by these Terms of Service
("Terms"). If you do not agree to these Terms, please do not
use the App.
</SettingsLegalParagraph>
<SettingsLegalSectionTitle>2. Acceptable Use</SettingsLegalSectionTitle>
<SettingsLegalParagraph>
You agree to use the App only for lawful purposes and in accordance with
these Terms. You agree not to use the App:
</SettingsLegalParagraph>
<SettingsLegalBullet>
• In any way that violates any applicable federal, provincial, local, or
international law or regulation.
</SettingsLegalBullet>
<SettingsLegalBullet>
• To transmit, or procure the sending of, any advertising or promotional
material without our prior written consent.
</SettingsLegalBullet>
<SettingsLegalBullet>
• To impersonate or attempt to impersonate the University, a University
employee, another user, or any other person or entity.
</SettingsLegalBullet>
<SettingsLegalSectionTitle>
3. Location Services
</SettingsLegalSectionTitle>
<SettingsLegalParagraph>
The App uses location services to provide navigation and mapping
features. By enabling location services, you consent to the collection,
use, and sharing of your location data as described in our Privacy
Policy. You may disable location services at any time through your
device settings, but this may limit the functionality of the App.
</SettingsLegalParagraph>
<SettingsLegalSectionTitle>4. User Content</SettingsLegalSectionTitle>
<SettingsLegalParagraph>
The App may allow you to submit feedback, report issues, or provide
other content. By submitting any content, you grant the University a
non-exclusive, worldwide, royalty-free license to use, reproduce,
modify, and distribute such content for the purpose of improving the App
and University services.
</SettingsLegalParagraph>
<SettingsLegalSectionTitle>
5. Intellectual Property
</SettingsLegalSectionTitle>
<SettingsLegalParagraph>
The App and its entire contents, features, and functionality are owned
by the University or its licensors and are protected by copyright,
trademark, and other laws. You may use the App solely for personal,
non-commercial purposes.
</SettingsLegalParagraph>
<SettingsLegalSectionTitle>
6. Disclaimer of Warranties
</SettingsLegalSectionTitle>
<SettingsLegalParagraph>
The App is provided on an "as is" and "as available"
basis. The University makes no representations or warranties of any
kind, express or implied, regarding the operation or availability of the
App, or the accuracy or reliability of any information provided.
</SettingsLegalParagraph>
<SettingsLegalSectionTitle>
7. Limitation of Liability
</SettingsLegalSectionTitle>
<SettingsLegalParagraph>
To the fullest extent permitted by law, the University shall not be
liable for any indirect, incidental, special, consequential, or punitive
damages arising out of or related to your use of, or inability to use,
the App.
</SettingsLegalParagraph>
<SettingsLegalSectionTitle>
8. Changes to These Terms
</SettingsLegalSectionTitle>
<SettingsLegalParagraph>
We may update these Terms from time to time. When we do, we will revise
the "Last Updated" date above. Your continued use of the App
after any changes constitutes your acceptance of the revised Terms.
</SettingsLegalParagraph>
<SettingsLegalSectionTitle>9. Contact</SettingsLegalSectionTitle>
<SettingsLegalParagraph>
If you have questions about these Terms, please contact the course staff
or project maintainers associated with ConUNav.
</SettingsLegalParagraph>
</SettingsScreenScaffold>
);
}
|