пупупупу

This commit is contained in:
Кирилл Самусенко 2025-09-12 15:41:50 +03:00
parent 9939abf887
commit 55d917eb72
5 changed files with 10419 additions and 5174 deletions

15534
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -3,21 +3,21 @@
"version": "0.1.0",
"private": true,
"dependencies": {
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.5.2",
"@types/node": "^16.18.50",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-mdr": "^0.1.3",
"@testing-library/jest-dom": "5.17.0",
"@testing-library/react": "13.4.0",
"@testing-library/user-event": "13.5.0",
"@types/jest": "27.5.2",
"@types/node": "16.18.50",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.7",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-mdr": "0.1.3",
"react-scripts": "5.0.1",
"react-type-animation": "^3.1.0",
"styled-components": "^6.0.8",
"typescript": "^4.9.5",
"web-vitals": "^2.1.4"
"react-type-animation": "3.1.0",
"styled-components": "6.0.8",
"typescript": "4.9.5",
"web-vitals": "2.1.4"
},
"scripts": {
"start": "react-scripts start",

View File

@ -10,9 +10,9 @@ import Wilix from "./components/Wilix";
function App() {
return (
<Wrapper>
<Flo />
{/*<Flo />*/}
<Wilix />
<MatrixRainingLetters />
<MatrixRainingLetters />
<UsersList
users={constants}
round={round}

View File

@ -4,7 +4,7 @@ import {TypeAnimation} from "react-type-animation";
export type TUsersList = {
users: string[];
round: number;
round: string;
}
const emoji = ["😡", "😈", "😬", "🤪", "🤓", "😎", "🥸", "🤯", "😳", "🤬", "🫡", "🫠", "💀", "👽", "🤖"]
@ -22,7 +22,11 @@ const UsersList: FC<TUsersList> = ({
return result;
}
let result = `=========== LAST ROUND! ===========\n========== List start ==========\n\n\n`;
let result: string = '';
if (true) {
result += `========== ${round} ==========\n\n\n`;
}
result += `========== List start ==========\n\n\n`;
for (let i = 0; i < users.length; i++) {
result += `${i + 1}) ${users[i]} ${getRandomEmoji()}\n\n`;

View File

@ -1,13 +1,14 @@
export const round = "No round";
// export const round = 'LAST ROUND'
export const round = 'ROUND\u00A0\u00A06\u00A0'
export const constants = [
"Всем спасибо!!!!!!"
// "No users today",
// "Я добрался до исходников",
// "Я просто хакир",
// "пушка самолет",
// "Попа",
// "happy_sardin64",
// "Всем спасибо!!!!!!"
"No users today",
"Я добрался до исходников",
"Я просто хакир",
"пушка самолет",
"Попа",
"happy_sardin64",
// "Vik",
// "Vaddus",
// "Anonim undefined'ович",
@ -33,4 +34,4 @@ export const constants = [
// 'Samurai_backender',
// "mr cucumber",
// "AIYa",
]
]