Merge pull request '[#50] AUTH UI Frissítés https://project.mdnd-it.cc/work_packages/50' (#10) from task/50-auth-ui-friss-t-s into main

Reviewed-on: #10
This commit was merged in pull request #10.
This commit is contained in:
2025-05-21 22:51:02 +00:00
6 changed files with 15 additions and 1 deletions
View File
+5
View File
@@ -4,6 +4,8 @@ import AuthRegister from "./pages/Auth/AuthRegister";
import AuthLogin from "./pages/Auth/AuthLogin";
import EmailVerification from "./pages/Auth/EmailVerification";
import Test from "./pages/Testing/Test";
import ForgotPassword from "./pages/Auth/ForgotPassword";
import ResetPassword from "./pages/Auth/ResetPassword";
function App() {
@@ -38,7 +40,10 @@ function App() {
<Route path="/register" element={<AuthRegister />} />
<Route path="/login" element={<AuthLogin />} />
<Route path="/verify-email" element={<EmailVerification />} />
<Route path="/forgot-password" element={<ForgotPassword />} />
<Route path="/reset-password" element={<ResetPassword />} />
<Route path="/test" element={<Test />} />
</Routes>
</Router>
);
@@ -1,3 +1,6 @@
// src/assets/SerpentRace_Animation/SerpentRace_Animation.jsx
// Animációs kiírás: SerpentRace
import styles from "./Path.module.css";
import React, { useRef } from "react";
@@ -1,3 +1,6 @@
// src/assets/backgrounds/Background.jsx
// Kockás háttér, ami a mousemovera reagál
import React, { useEffect, useState } from "react";
import { motion } from "framer-motion";
@@ -1,3 +1,6 @@
// src/assets/pictures/Logo.png
// Logo kép importálása és paraméterezése
import React from 'react';
import logo from './Logo.png';
@@ -4,7 +4,7 @@ export default function Test() {
return (
<div className="bg-red-100 text-white p-4">
<p className="text-piros">asd</p>
<p className="text-piros">Test</p>
</div>
);
}