Updated so that the rules and class text can be updated through the admin page

This commit is contained in:
2026-04-19 13:28:13 +02:00 Verified
parent 16f5c3f22b
commit 0d4d447569
11 changed files with 103 additions and 39 deletions
+3 -1
View File
@@ -3,11 +3,13 @@
import { ModalProps } from "@/app/types";
import Modal from "./Modal";
import ModalAction from "./ModalAction";
import Image from 'next/image';
import logo from "../../../public/images/logo-black.svg";
export default function MemberModal({ onClose }: ModalProps) {
return (
<Modal onClose={onClose}>
<img src="/images/logo-black.svg" alt="Logo" className="h-25" />
<Image src={logo} alt="Logo" className="h-25 max-w-fit" />
<h2 className="text-[#406185] my-2.5 text-2xl font-bold uppercase">Registrera dig</h2>
<p className="text-[#406185] my-2.5">Trycka knappen nedan för att starta registreringen. Du kommer att skickas till laget.se</p>