Kész lábléc, javított hozzáadás és login elkezdve

This commit is contained in:
Sándor Máté Magony
2025-04-09 10:42:43 +02:00
parent cc7c8bc8dd
commit 2975cd91b1
4 changed files with 109 additions and 4 deletions

View File

@@ -5,6 +5,7 @@ import { Route, Routes } from 'react-router-dom';
import Kezdolap from './WC_Komponens/Kezdolap/Kezdolap';
import LegkozelebbiMosdo from './WC_Komponens/Kereso/Legkozelebbi';
import HozzaadForm from './WC_Komponens/Hozzadas/HozzaadForm';
import Lablec from './WC_Komponens/Lablec/Lablec';
export default function App() {
return (
@@ -19,6 +20,7 @@ export default function App() {
<Route path="/hozzaadas" element={<HozzaadForm />}/>
</Routes>
</div>
<Lablec />
</>
);
}

View File

@@ -0,0 +1,42 @@
export default function Lablec(){
return(
<footer className="bg-white dark:bg-gray-800">
<div className="mx-auto w-full max-w-screen-xl p-4 py-6 lg:py-8">
<div className="md:flex md:justify-between">
<div className="mb-6 md:mb-0">
<img src="/Logo.png" className="h-12 mt-7" alt="PeePal Logo" />
</div>
<div className="grid grid-cols-2 gap-8 sm:gap-6 sm:grid-cols-3">
<div>
<h2 className="mb-6 text-sm font-semibold text-gray-900 uppercase dark:text-white">Kövess minket</h2>
<ul className="text-gray-500 dark:text-gray-400 font-medium">
<li className="mb-4">
<a href="https://git.gszi.edu.hu/magonysandormate/PeePal" className="hover:underline ">Nemes Gitea</a>
</li>
<li>
<a href="https://facebook.com/peepal" className="hover:underline">Facebook</a>
</li>
</ul>
</div>
<div>
<h2 className="mb-6 text-sm font-semibold text-gray-900 uppercase dark:text-white">Elérhetőségek</h2>
<ul className="text-gray-500 dark:text-gray-400 font-medium">
<li className="mb-4">
<label className="hover:underline">peepal@gmail.com</label>
</li>
<li>
<label className="hover:underline">+36 30 123 4567</label>
</li>
</ul>
</div>
</div>
</div>
<hr className="my-6 border-gray-200 sm:mx-auto dark:border-gray-700 lg:my-8" />
<div className="sm:flex sm:items-center sm:justify-between">
<span className="text-sm text-gray-500 sm:text-center dark:text-gray-400">© 2025 PeePal Minden jog fenntartva.
</span>
</div>
</div>
</footer>
)
}