Spaces:
Running
Running
File size: 5,139 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 102 | <!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>Services | 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>
<!-- Services 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 Services</h1>
<p class="text-xl max-w-2xl">Supporting researchers in effective public engagement.</p>
</div>
</section>
<!-- Services List -->
<section class="py-16 bg-white">
<div class="container mx-auto px-4 max-w-4xl">
<div class="grid md:grid-cols-2 gap-8 mb-12">
<!-- Service 1 -->
<div class="border border-gray-200 rounded-lg p-6 hover:shadow-md transition-shadow">
<div class="flex items-start mb-4">
<div class="bg-secondary p-3 rounded-full mr-4">
<i data-feather="mic" class="text-white"></i>
</div>
<div>
<h3 class="text-xl font-semibold text-primary">Public Speaking Training</h3>
<p class="text-gray-600">Develop skills to communicate your research effectively to non-specialist audiences.</p>
</div>
</div>
</div>
<!-- Service 2 -->
<div class="border border-gray-200 rounded-lg p-6 hover:shadow-md transition-shadow">
<div class="flex items-start mb-4">
<div class="bg-secondary p-3 rounded-full mr-4">
<i data-feather="film" class="text-white"></i>
</div>
<div>
<h3 class="text-xl font-semibold text-primary">Multimedia Production</h3>
<p class="text-gray-600">Create engaging digital content to share your work with wider audiences.</p>
</div>
</div>
</div>
<!-- Service 3 -->
<div class="border border-gray-200 rounded-lg p-6 hover:shadow-md transition-shadow">
<div class="flex items-start mb-4">
<div class="bg-secondary p-3 rounded-full mr-4">
<i data-feather="users" class="text-white"></i>
</div>
<div>
<h3 class="text-xl font-semibold text-primary">Community Engagement</h3>
<p class="text-gray-600">Connect with local organizations and groups to share your research.</p>
</div>
</div>
</div>
<!-- Service 4 -->
<div class="border border-gray-200 rounded-lg p-6 hover:shadow-md transition-shadow">
<div class="flex items-start mb-4">
<div class="bg-secondary p-3 rounded-full mr-4">
<i data-feather="book-open" class="text-white"></i>
</div>
<div>
<h3 class="text-xl font-semibold text-primary">School Outreach</h3>
<p class="text-gray-600">Bring your research into classrooms through age-appropriate activities.</p>
</div>
</div>
</div>
</div>
<!-- Consultation Section -->
<div class="bg-gray-50 p-8 rounded-lg">
<h2 class="text-2xl font-bold mb-4 text-primary">Request a Consultation</h2>
<p class="mb-6">Interested in working with us? Get in touch to discuss how we can support your public engagement goals.</p>
<a href="/contact.html" class="px-6 py-3 bg-secondary hover:bg-secondary-dark text-gray-900 rounded-lg font-medium transition-colors shadow-md">
Contact Us
</a>
</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> |