Skip to content
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

Real #30

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open

Real #30

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
81 changes: 1 addition & 80 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,80 +1 @@
> [!CAUTION]
> **This service is no longer maintained by Tovy**, and no more updates will now be made to this service as **Tovy is now Relatio LLC**. Join our [**Discord**](https://relatio.cc/discord) for new products, and more information.
<div>
<div align="center">
<img height="250px" src=".github/logo.png"></img>
<h1>Tovy, a staff management system for Roblox groups</h1>
</div>
<ul>
<li><a href="#about">About</a></li>
<li><a href="#why-consider">Why consider</a></li>
<li><a href="#quicklinks">Quicklinks</a></li>
<li><a href="#license">License</a></li>
</ul>
<h2>About</h2>
<p>
Tovy is an open source staff management platform inspired by Hyra. It allows Roblox groups to manage their group members in a more intuitive and powerful way, while still being simple to use.
</p>
<h2>Why consider</h2>
<ul>
<li>
Beautifully-crafted and responsive frontend
</li>
<li>
Packed with a lot of features, such as...
<ul>
<li>
Creating custom roles and invite users or sync it to your group
</li>
<li>
Bulk manage your group members
</li>
<li>
Track your members' group activity
</li>
<li>
Automate things with Tovy (soon)
</li>
<li>
Warn, promote, demote, and way more to your members
</li>
<li>
Communicate with your members directly in Tovy
</li>
<li>
Host your docs with Tovy
</li>
<li>
Assign your staff activity requirements (soon)
</li>
<li>
Track when your members are inactive with notices
</li>
<li>
Host & Schedule sessions without causing a burden
</li>
</ul>
</li>
<li>
Frontend written in TS with Nextjs & TailwindCSS, backend written in Typescript & Next.js
</li>
<li>
Completely open source
</li>
</ul>
<h2>Don't want to host yourself?</h2>
<p>
Tovy has a service dedicated to providing Tovy hosting at a low price per month. -- <a href="https://tovyblox.xyz/">Find out more!</a>
</p>
<h2>Quicklinks</h2>
<ul>
<li>
Don't know how to install? –– <a href="https://docs.tovyblox.xyz/">Visit our documentation!</a>
</li>
<li>
🐛 Bugs? ✨ Suggestions? –– <a href="https://feedback.tovyblox.xyz/">Let us know here!</a>
</li>
</ul>
<h2>License</h2>
Tovy is licensed under the <a href="./LICENSE">GNU General Public License v3.0.</a>
</div>

2 changes: 1 addition & 1 deletion pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ function MyApp({ Component, pageProps }: AppPropsWithLayout) {
return (
<RecoilRoot>
<Head>
<title>Tovy</title>
<title>RSMS</title>
</Head>
<RecoilNexus />
{!loading && (
Expand Down
2 changes: 1 addition & 1 deletion pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ const Home: NextPage = () => {
return (
<div>
<Head>
<title>Tovy</title>
<title>RSMS</title>
</Head>

<div className="h-screen bg-gray-100 dark:bg-gray-700">
Expand Down
8 changes: 4 additions & 4 deletions pages/login.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ const Login: NextPage = ({ }) => {
<div className="flex bg-infobg h-screen bg-no-repeat bg-cover bg-center" >
<div className=" bg-white dark:bg-gray-800 dark:bg-opacity-50 dark:backdrop-blur-lg w-11/12 sm:w-4/6 md:3/6 xl:w-5/12 mx-auto my-auto rounded-3xl p-6" >
<div>
<p className="font-bold text-2xl ">👋 Welcome to Tovy</p>
<p className="font-bold text-2xl ">👋 Welcome to RSMS</p>
<p className="text-md text-gray-500 dark:text-gray-200">
You'll need to login to Tovy to use this page
You'll need to login to RSMS to use this page
</p>

<FormProvider {...methods}>
Expand Down Expand Up @@ -84,11 +84,11 @@ const Login: NextPage = ({ }) => {
</div>
</div>
<div className="w-full flex">
<a className="pt-4 mx-auto text-gray-400 hover:underline cursor-pointer hover:text-blue-600 transition " href="https://tovyblox.xyz"> © Tovy 2022 </a>
<a className="pt-4 mx-auto text-gray-400 hover:underline cursor-pointer hover:text-blue-600 transition " href="https://tovyblox.xyz"> RSMS 2024 </a>
</div>
</div>
</div>
);
};

export default Login;
export default Login;
2 changes: 1 addition & 1 deletion pages/signup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ const SignUp: NextPage = ({ }) => {
</button>
</div>
<div className="w-full flex">
<a className="pt-4 mx-auto text-gray-400 hover:underline cursor-pointer hover:text-blue-600 transition " href="https://tovyblox.xyz"> © Tovy 2022 </a>
<a className="pt-4 mx-auto text-gray-400 hover:underline cursor-pointer hover:text-blue-600 transition " href=""> RSMS 2024 </a>
</div>
</div>
</Slider>
Expand Down