diff --git a/src/routes/EULA.tsx b/src/routes/EULA.tsx new file mode 100644 index 0000000..6325073 --- /dev/null +++ b/src/routes/EULA.tsx @@ -0,0 +1,17 @@ +import { Heading } from "@primer/react"; + +export function EULA() { + return ( + <> + End-User License Agreement ("Agreement") +

Last updated: January 31, 2024

+

Please read this End-User License Agreement carefully before signing into the Website, downloading or using Partypack.

+

By signing up for an account on the Website, downloading or using Partypack, You agree to the terms of this Agreement.

+

User-Generated Content

+

Partypack relies on User-Generated Content uploaded by You or any other registered Partypack user. McMistrzYT, Partypack staff members or any other contributor is not responsible for the content distributed on this Website.

+

The Partypack staff members and administrators of this Partypack instance reserve the right to delete, update or change any of Your uploaded User-Generated Content in any way without Your knowledge.

+

By uploading Your own User-Generated Content, You accept the full responsibility for any damage caused to the artist and/or media group which owns the full rights of the music You redistribute on Partypack's services.

+

If the Partypack staff members or administrators of this Partypack instance get contacted by an artist and/or media group which owns the full rights to any of the music You redistributed on Partypack for a copyright takedown, we will take down the copyright infringing User-Generated Content as soon as possible and we may issue a warning, strike, deletion or any other punishment to Your registered Partypack account.

+ + ) +} \ No newline at end of file diff --git a/src/routes/Home.tsx b/src/routes/Home.tsx index 638aa3c..97aa7d0 100644 --- a/src/routes/Home.tsx +++ b/src/routes/Home.tsx @@ -1,10 +1,10 @@ import { Box } from "@primer/react"; +import { EULA } from "./EULA"; export function Home() { return ( <> - )