Skip to content

fix-empty-tables #439

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
64 changes: 35 additions & 29 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,8 @@
"@types/cleave.js": "^1.4.7",
"@types/enzyme": "^3.10.13",
"@types/faker": "5.5.3",
"@types/jest": "^29.5.3",
"@types/jest": "^29.5.12",
"@types/mocha": "^10.0.7",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@types/react-dropzone": "^5.1.0",
Expand All @@ -126,7 +127,6 @@
"@types/react-test-renderer": "^18.0.0",
"@types/react-toastify": "^4.1.0",
"@types/sinon": "^10.0.15",
"@types/testing-library__jest-dom": "^5.14.8",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"autoprefixer": "^10.4.7",
Expand Down
9 changes: 9 additions & 0 deletions src/assets/oops.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
107 changes: 71 additions & 36 deletions src/components/Docs/users.tsx
Original file line number Diff line number Diff line change
@@ -1,41 +1,76 @@
import React from 'react'
import DocsMain from './DocsMain'
import React from 'react';
import DocsMain from './DocsMain';

const UsersDocs = () => {
return (
<div>
<DocsMain
content={
<div className="flex items-start box-border">
<div className="w-full">
<div className=" w-full sm:px-10 mb-10 text-gray-600 dark:text-slate-300 text-lg ml-0 pt-4">
<h2 className="mb-4 mt-4 text-4xl font-[800] text-primary">
Getting started
</h2>
<div className="mt-5 w-[100%] sm:w-full mb-4">
Devpulse is a semi-open platform i.e. using it, requires a certain level of approval from the owners/managers. If you browse the homepage, you might wonder why there is no signup button, this is because to sign up you need an invitation.
<h3 className="m-2 mb-4 text-2xl font-bold">
Terminology to be familiar with:</h3>
<ul className=" list-disc ml-12">
function UsersDocs() {
return (
<div>
<DocsMain
content={
<div className="flex items-start box-border">
<div className="w-full">
<div className=" w-full sm:px-10 mb-10 text-gray-600 dark:text-slate-300 text-lg ml-0 pt-4">
<h2 className="mb-4 mt-4 text-4xl font-[800] text-primary">
Getting started
</h2>
<div className="mt-5 w-[100%] sm:w-full mb-4">
Devpulse is a semi-open platform i.e. using it, requires a
certain level of approval from the owners/managers. If you
browse the homepage, you might wonder why there is no signup
button, this is because to sign up you need an invitation.
<h3 className="m-2 mb-4 text-2xl font-bold">
Terminology to be familiar with:
</h3>
<ul className=" list-disc ml-12">
<li>
<b>Organizations</b>: each Devpulse user belongs to an
organization. The default organization is Andela. The
admin of a given organisation has the highest privilege;
they are the one in charge of managing the rest of the
users and different administrative tasks
</li>

<li><b>Organizations</b>: each Devpulse user belongs to an organization. The default organization is Andela. The admin of a given organisation has the highest privilege; they are the one in charge of managing the rest of the users and different administrative tasks</li>

<li><b>Programs</b>: each organization should have a program that it is running.</li>
<li><b>Managers:</b> each program should have managers with different access levels. (coordinators, technical team leads, managers)</li>
<li><b>Trainees:</b> an ordinary user of the app will fall under the role of a trainee. As a trainee, you belong to a team, which in turn belongs to a cohort, which in turn belongs to a program</li>
</ul>

<h3 className="m-2 mb-4 text-2xl font-bold">Signing up as a user</h3>
<p>To sign up, <b><u>your org admin must send you an invite</u></b>. The invitation email will contain the details of how to sign up</p>
<h3 className="m-2 mb-4 text-2xl font-bold">Signing in as a user</h3>
<p>To sign in, go to the signin page, provide the correct name of your organization, on the next screen enter username and password.</p>
</div>
</div>
<li>
<b>Programs</b>: each organization should have a program
that it is running.
</li>
<li>
<b>Managers:</b> each program should have managers with
different access levels. (coordinators, technical team
leads, managers)
</li>
<li>
<b>Trainees:</b> an ordinary user of the app will fall
under the role of a trainee. As a trainee, you belong to a
team, which in turn belongs to a cohort, which in turn
belongs to a program
</li>
</ul>
<h3 className="m-2 mb-4 text-2xl font-bold">
Signing up as a user
</h3>
<p>
To sign up,{' '}
<b>
<u>your org admin must send you an invite</u>
</b>
. The invitation email will contain the details of how to
sign up
</p>
<h3 className="m-2 mb-4 text-2xl font-bold">
Signing in as a user
</h3>
<p>
To sign in, go to the signin page, provide the correct name
of your organization, on the next screen enter username and
password.
</p>
</div>
</div>
</div>
}
/>
</div>
)
</div>
}
/>
</div>
);
}
export default UsersDocs
export default UsersDocs;
Loading
Loading