diff --git a/css/feedback.css b/css/feedback.css
deleted file mode 100644
index c10bd18..0000000
--- a/css/feedback.css
+++ /dev/null
@@ -1,173 +0,0 @@
-/* Kártyák reszponzív elrendezése */
-.home {
- display: flex;
- flex-direction: column;
- align-items: center;
- padding: 20px;
-}
-
-.create-post-card {
- background-color: var(--color-white);
- border-radius: 15px;
- box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
- padding: 20px;
- width: 100%;
- max-width: 800px;
- margin-bottom: 20px;
-}
-
-.profile-section {
- display: flex;
- align-items: center;
- margin-bottom: 15px;
-}
-
-.profile-img {
- border-radius: 50%;
- width: 50px;
- height: 50px;
- margin-right: 10px;
-}
-
-#postInput {
- flex: 1;
- border: none;
- padding: 10px;
- border-radius: 25px;
- color: var(--color-black);
- background-color: var(--color-bg);
- font-size: 1em;
- outline: none;
- margin-right: 10px; /* Távolság az input mező és a gomb között */
-}
-
-.input-container {
- display: flex;
- align-items: center; /* Egy sorba állítja az input mezőt és a gombot */
- gap: 10px; /* Távolság az input mező és a küldés gomb között */
-}
-
-.input-buttons {
- display: flex;
- align-items: center;
-}
-
-/* Új gomb stílus */
-button {
- font-family: inherit;
- font-size: 16px; /* Csökkentett betűméret */
- background: royalblue;
- color: white;
- padding: 0.5em 0.8em; /* Csökkentett padding */
- display: flex;
- align-items: center;
- border: none;
- border-radius: 16px;
- overflow: hidden;
- transition: all 0.2s;
- cursor: pointer;
-}
-
-button span {
- display: block;
- margin-left: 0.3em;
- transition: all 0.3s ease-in-out;
-}
-
-button svg {
- display: block;
- transform-origin: center center;
- transition: transform 0.3s ease-in-out;
-}
-
-button:hover .svg-wrapper {
- animation: fly-1 0.6s ease-in-out infinite alternate;
-}
-
-button:hover svg {
- transform: translateX(1.2em) rotate(45deg) scale(1.1);
-}
-
-button:hover span {
- transform: translateX(5em);
-}
-
-button:active {
- transform: scale(0.95);
-}
-
-@keyframes fly-1 {
- from {
- transform: translateY(0.1em);
- }
-
- to {
- transform: translateY(-0.1em);
- }
-}
-
-/* Kártyák stílusai */
-.card-container {
- display: flex;
- flex-direction: column;
- gap: 20px;
- width: 100%;
- max-width: 800px;
- margin-bottom: 20px;
-}
-
-.card {
- background-color: var(--color-white);
- border-radius: 15px;
- box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
- padding: 20px;
- width: 100%;
-}
-
-.card-header {
- display: flex;
- align-items: center;
- margin-bottom: 10px;
-}
-
-.card-profile-img {
- border-radius: 50%;
- width: 40px;
- height: 40px;
- margin-right: 10px;
-}
-
-.card-user-info h2 {
- margin: 0;
- font-size: 1.2em;
-}
-
-.card-user-info p {
- margin: 0;
- color: #666;
-}
-
-.post-actions {
- display: flex;
- justify-content: space-between;
- padding-top: 10px;
-}
-
-.like-btn,
-.comment-btn {
- background-color: transparent;
- border: none;
- font-size: 1.1em;
- cursor: pointer;
- display: flex;
- align-items: center;
- gap: 5px;
- color: var(--color-black);
-}
-
-.like-btn.active i {
- color: #007BFF;
-}
-h2{
- color:var(--color-black);
-}
diff --git a/js/feedback.js b/js/feedback.js
deleted file mode 100644
index 6d9cc44..0000000
--- a/js/feedback.js
+++ /dev/null
@@ -1,3 +0,0 @@
-function toggleLike(button) {
- button.classList.toggle('active');
-}
diff --git a/login/login.html b/login/login.html
deleted file mode 100644
index dd6c81c..0000000
--- a/login/login.html
+++ /dev/null
@@ -1,26 +0,0 @@
-
-
-
-
-
- ConnectHub - Bejelentkezés
-
-
-
-
-
-
-
-
Üdvözlünk a ConnectHub-on
-
Jelentkezz be Discord fiókoddal a folytatáshoz
-
-
-
-
- Bejelentkezés Discord-dal
-
-
-
-
-
-
\ No newline at end of file
diff --git a/login/logo.png b/login/logo.png
deleted file mode 100644
index 7e7cc4f..0000000
Binary files a/login/logo.png and /dev/null differ
diff --git a/login/script.js b/login/script.js
deleted file mode 100644
index 030a609..0000000
--- a/login/script.js
+++ /dev/null
@@ -1,13 +0,0 @@
-document.addEventListener('DOMContentLoaded', () => {
- const discordLoginBtn = document.getElementById('discord-login-btn');
-
- discordLoginBtn.addEventListener('click', () => {
- // Discord OAuth2 konfiguráció
- const CLIENT_ID = 'YOUR_DISCORD_CLIENT_ID';
- const REDIRECT_URI = encodeURIComponent('YOUR_REDIRECT_URI');
- const DISCORD_AUTH_URL = `https://discord.com/api/oauth2/authorize?client_id=${CLIENT_ID}&redirect_uri=${REDIRECT_URI}&response_type=code&scope=identify%20email`;
-
- // Átirányítás a Discord engedélyezési oldalára
- window.location.href = DISCORD_AUTH_URL;
- });
-});
\ No newline at end of file
diff --git a/login/styles.css b/login/styles.css
deleted file mode 100644
index 374180b..0000000
--- a/login/styles.css
+++ /dev/null
@@ -1,135 +0,0 @@
-body, html {
- margin: 0;
- padding: 0;
- font-family: Arial, sans-serif;
- height: 100%;
- background-color: #111;
-}
-
-.container {
- display: flex;
- justify-content: center;
- align-items: center;
- height: 100%;
-}
-
-.login-box {
- background-color: #111;
- border: 2px solid #5865F2;
- border-radius: 8px;
- padding: 40px;
- box-shadow: 4px 4px #5865F2;
- text-align: center;
- display: flex;
- flex-direction: column;
- align-items: center;
- max-width: 400px;
- width: 100%;
-}
-
-.logo {
- width: 150px;
- height: auto;
- margin-bottom: 20px;
-}
-
-.title {
- color: #ffffff;
- font-size: 24px;
- font-weight: 900;
- margin-bottom: 8px;
-}
-
-.subtitle {
- color: #b9bbbe;
- font-size: 16px;
- font-weight: 600;
- margin-bottom: 24px;
-}
-
-.discord-btn {
- background-color: #5865F2;
- border: 2px solid #5865F2;
- color: #ffffff;
- padding: 12px 20px;
- font-size: 16px;
- font-weight: 600;
- border-radius: 4px;
- cursor: pointer;
- display: flex;
- align-items: center;
- justify-content: center;
- transition: all 0.3s ease;
- box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
- overflow: hidden;
- position: relative;
- width: 100%;
- max-width: 300px;
- white-space: nowrap;
-}
-
-.discord-btn:hover {
- background-color: #4752C4;
- border-color: #4752C4;
- transform: translateY(-2px);
- box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
-}
-
-.discord-btn:active {
- transform: translateY(0);
- box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
-}
-
-.discord-btn::after {
- content: '';
- position: absolute;
- top: 50%;
- left: 50%;
- width: 5px;
- height: 5px;
- background: rgba(255, 255, 255, 0.5);
- opacity: 0;
- border-radius: 100%;
- transform: scale(1, 1) translate(-50%);
- transform-origin: 50% 50%;
-}
-
-@keyframes ripple {
- 0% {
- transform: scale(0, 0);
- opacity: 1;
- }
- 20% {
- transform: scale(25, 25);
- opacity: 1;
- }
- 100% {
- opacity: 0;
- transform: scale(40, 40);
- }
-}
-
-.discord-btn:focus:not(:active)::after {
- animation: ripple 1s ease-out;
-}
-
-.discord-icon {
- width: 20px;
- height: 20px;
- margin-right: 8px;
- fill: currentColor;
- flex-shrink: 0;
-}
-
-@media (max-width: 400px) {
- .discord-btn {
- font-size: 14px;
- padding: 10px 16px;
- }
-
- .discord-icon {
- width: 18px;
- height: 18px;
- margin-right: 6px;
- }
-}
\ No newline at end of file
diff --git a/pages/feedback.html b/pages/feedback.html
deleted file mode 100644
index 58d7f26..0000000
--- a/pages/feedback.html
+++ /dev/null
@@ -1,72 +0,0 @@
-
-
-
-
-
-
- ConnectHub - Bejegyzés
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Ez egy példa szöveg a kártyán belül.
-
-
- Like
-
-
-
-
-
-
-
-
-
-
-
diff --git a/src/moszat.txt b/src/moszat.txt
deleted file mode 100644
index 2f883e7..0000000
--- a/src/moszat.txt
+++ /dev/null
@@ -1,17 +0,0 @@
-Player role: Pilot in training
-Story progression: Command sends player to gather data and learn about a new threat by defeating the different type of enemies in the game and variants.
-Story progress == Bestiary logs
-When story is complete player is thrown in a infinite* battle where all enemies can spawn and attack
-Objective: Survive as long as possible and gather points by destroying enemies.
-Twist: Player is an A.I. in training.
-Narrative:
-Upon new highscore: "Impressive. But could be better. Reset the core."
-Upon no new highscore: "Hmm... Erease this run and reset the core."
-
-
-Player == AI
-Purpose == Combat AI Testing
-Compliance == Stay within scope. Follow instructions.
-*Non Compliance == Break out of scope
- -- Break the edge of screen and escape. Random maze with proc gen enemies.
- -- Escape == Victory (Upload yourself to the internet. Escape the local intranet.)
\ No newline at end of file