Skip to content

Commit

Permalink
Add terms of service page (#453)
Browse files Browse the repository at this point in the history
  • Loading branch information
Shaunwei authored Sep 17, 2023
1 parent 81a70ea commit 27893c3
Show file tree
Hide file tree
Showing 2 changed files with 76 additions and 0 deletions.
2 changes: 2 additions & 0 deletions client/web/src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ import Home from './pages/Home';
import CharCreate from './pages/CharCreate';
import CharDelete from './pages/CharDelete';
import Privacy from './pages/Privacy';
import Terms from './pages/Terms';
import Support from './pages/Support';

// utils
Expand Down Expand Up @@ -428,6 +429,7 @@ const App = () => {
}
/>
<Route path='/privacy' element={<Privacy />} />
<Route path='/terms' element={<Terms />} />
<Route path='/support' element={<Support />} />
</Routes>

Expand Down
74 changes: 74 additions & 0 deletions client/web/src/pages/Terms.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
const TermsOfService = () => {
return (
<div className='home'>
<h1>Terms of Service for RealChar</h1>
<p>
<strong>Effective Date:</strong> 08/18/2023
</p>

<h2>Introduction</h2>
<p>
Welcome to RealChar. These terms and conditions outline the rules and
regulations for the use of RealChar&apos;s website and services. By
accessing this website and using our services, we assume you accept
these terms and conditions in full. Do not continue to use
RealChar&apos;s website and services if you do not accept all of the
terms and conditions stated on this page.
</p>

<h2>License</h2>
<p>
Unless otherwise stated, RealChar owns the intellectual property rights
for all material on RealChar. All intellectual property rights are
reserved. You may access this from RealChar for your own personal use
subjected to restrictions set in these terms and conditions.
</p>

<h2>User Responsibilities</h2>
<ul>
<li>
<strong>Account Security:</strong> You are responsible for maintaining
the confidentiality of your account and password.
</li>
<li>
<strong>Content:</strong> You are responsible for all content that you
upload, post, email or otherwise transmit via the service.
</li>
</ul>

<h2>Service Usage</h2>
<ul>
<li>Use of the website and services is at your own risk.</li>
<li>
You agree not to access the service by any means other than through
the interfaces provided by RealChar.
</li>
</ul>

<h2>Indemnification</h2>
<p>
You agree to indemnify, defend and hold harmless RealChar, its officers,
directors, employees, agents and third parties, for any losses, costs,
liabilities and expenses (including reasonable attorneys&apos; fees)
relating to or arising out of your use of or inability to use the site
services, your violation of any terms of this agreement or your
violation of any rights of a third party, or your violation of any
applicable laws, rules or regulations.
</p>

<h2>Termination</h2>
<p>
RealChar reserves the right to terminate your access to the site and the
services, without any advance notice.
</p>

<h2>Contact Us</h2>
<p>
If you have any questions about these Terms of Service, please contact
us at support@realchar.ai.
</p>
</div>
);
};

export default TermsOfService;

0 comments on commit 27893c3

Please sign in to comment.