File size: 2,173 Bytes
5667891
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html lang="pl">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>FAQ - Firma</title>
    <link rel="stylesheet" href="style.css">
    <script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="bg-gray-100">
    <nav class="bg-blue-600 text-white p-4">
        <div class="container mx-auto flex justify-between items-center">
            <h1 class="text-xl font-bold">Nazwa Firmy</h1>
            <ul class="flex space-x-6">
                <li><a href="index.html" class="hover:underline">Strona Główna</a></li>
                <li><a href="faq.html" class="hover:underline">FAQ</a></li>
                <li><a href="rodo.html" class="hover:underline">RODO</a></li>
                <li><a href="terminy.html" class="hover:underline">Sprawdź Termin</a></li>
            </ul>
        </div>
    </nav>

    <main class="container mx-auto mt-8 p-4">
        <div class="bg-white rounded-lg shadow-md p-6">
            <h2 class="text-2xl font-bold mb-4">Często Zadawane Pytania (FAQ)</h2>
            
            <div class="mb-6">
                <h3 class="text-xl font-semibold mb-2">Jak sprawdzić termin wydania materiału?</h3>
                <p class="text-gray-700">Przejdź do zakładki "Sprawdź Termin" i wprowadź numer zamówienia.</p>
            </div>

            <div class="mb-6">
                <h3 class="text-xl font-semibold mb-2">Jakie są metody płatności?</h3>
                <p class="text-gray-700">Akceptujemy przelewy bankowe, karty płatnicze oraz płatności online.</p>
            </div>

            <div class="mb-6">
                <h3 class="text-xl font-semibold mb-2">Czy oferujecie wsparcie techniczne?</h3>
                <p class="text-gray-700">Tak, nasze wsparcie techniczne jest dostępne od poniedziałku do piątku w godzinach 8:00-16:00.</p>
            </div>
        </div>
    </main>

    <footer class="bg-gray-800 text-white p-4 mt-8">
        <div class="container mx-auto text-center">
            <p>&copy; 2023 Nazwa Firmy. Wszelkie prawa zastrzeżone.</p>
        </div>
    </footer>
</body>
</html>