File size: 5,447 Bytes
a5466a1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html lang="en" class="scroll-smooth">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Projects | The THoR Project</title>
    <link rel="stylesheet" href="style.css">
    <link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap" rel="stylesheet">
    <script src="https://cdn.tailwindcss.com"></script>
    <script src="https://unpkg.com/feather-icons"></script>
</head>
<body class="bg-gray-50 text-gray-900 font-sans antialiased">
    <custom-navbar></custom-navbar>
    
    <main>
        <!-- Projects Header -->
        <section class="bg-primary py-16 text-white">
            <div class="container mx-auto px-4">
                <h1 class="text-4xl font-bold mb-4">Our Projects</h1>
                <p class="text-xl max-w-2xl">Explore our diverse range of initiatives that bring humanities research to the public.</p>
            </div>
        </section>

        <!-- Projects Grid -->
        <section class="py-16 bg-white">
            <div class="container mx-auto px-4">
                <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
                    <!-- Project 1 -->
                    <article class="border border-gray-200 rounded-lg overflow-hidden hover:shadow-lg transition-shadow">
                        <div class="h-48 bg-gray-200"></div>
                        <div class="p-6">
                            <h3 class="text-xl font-semibold mb-2 text-primary">Public Lecture Series</h3>
                            <p class="text-gray-600 mb-4">Bringing academic research to community centers across Bern.</p>
                            <a href="#" class="text-secondary font-medium">View Project →</a>
                        </div>
                    </article>

                    <!-- Project 2 -->
                    <article class="border border-gray-200 rounded-lg overflow-hidden hover:shadow-lg transition-shadow">
                        <div class="h-48 bg-gray-200"></div>
                        <div class="p-6">
                            <h3 class="text-xl font-semibold mb-2 text-primary">Research Performances</h3>
                            <p class="text-gray-600 mb-4">Combining artistic expression with academic inquiry.</p>
                            <a href="#" class="text-secondary font-medium">View Project →</a>
                        </div>
                    </article>

                    <!-- Project 3 -->
                    <article class="border border-gray-200 rounded-lg overflow-hidden hover:shadow-lg transition-shadow">
                        <div class="h-48 bg-gray-200"></div>
                        <div class="p-6">
                            <h3 class="text-xl font-semibold mb-2 text-primary">Community Workshops</h3>
                            <p class="text-gray-600 mb-4">Interactive sessions that make humanities research accessible.</p>
                            <a href="#" class="text-secondary font-medium">View Project →</a>
                        </div>
                    </article>

                    <!-- Project 4 -->
                    <article class="border border-gray-200 rounded-lg overflow-hidden hover:shadow-lg transition-shadow">
                        <div class="h-48 bg-gray-200"></div>
                        <div class="p-6">
                            <h3 class="text-xl font-semibold mb-2 text-primary">Digital Storytelling</h3>
                            <p class="text-gray-600 mb-4">Using multimedia to share research findings with broader audiences.</p>
                            <a href="#" class="text-secondary font-medium">View Project →</a>
                        </div>
                    </article>

                    <!-- Project 5 -->
                    <article class="border border-gray-200 rounded-lg overflow-hidden hover:shadow-lg transition-shadow">
                        <div class="h-48 bg-gray-200"></div>
                        <div class="p-6">
                            <h3 class="text-xl font-semibold mb-2 text-primary">School Partnerships</h3>
                            <p class="text-gray-600 mb-4">Bringing university research into secondary school classrooms.</p>
                            <a href="#" class="text-secondary font-medium">View Project →</a>
                        </div>
                    </article>

                    <!-- Project 6 -->
                    <article class="border border-gray-200 rounded-lg overflow-hidden hover:shadow-lg transition-shadow">
                        <div class="h-48 bg-gray-200"></div>
                        <div class="p-6">
                            <h3 class="text-xl font-semibold mb-2 text-primary">Public Debates</h3>
                            <p class="text-gray-600 mb-4">Facilitating discussions between researchers and the public on contemporary issues.</p>
                            <a href="#" class="text-secondary font-medium">View Project →</a>
                        </div>
                    </article>
                </div>
            </div>
        </section>
    </main>
    
    <custom-footer></custom-footer>
    
    <script src="components/navbar.js"></script>
    <script src="components/footer.js"></script>
    <script src="script.js"></script>
    <script>
        feather.replace();
    </script>
</body>
</html>