-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
160 lines (142 loc) · 6.4 KB
/
index.html
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<!-- Primary Meta Tags -->
<title>Metrapi – Statistical Consultancy for Healthcare Professionals in Ireland</title>
<meta name="description" content="Metrapi provides professional statistical consultancy and data analysis for healthcare professionals in Ireland. Enhance your research with robust study designs, data management, and predictive modeling. Contact us today." />
<meta name="keywords" content="statistical consultancy, healthcare research, data analysis, Ireland, study design, data management, predictive modeling" />
<meta name="robots" content="index, follow" />
<!-- Favicons -->
<link rel="icon" href="/favicon.ico">
<link rel="apple-touch-icon" href="/favicon.png">
<!-- Responsive -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Open Graph / Facebook -->
<meta property="og:title" content="Metrapi – Statistical Consultancy for Healthcare Professionals in Ireland" />
<meta property="og:description" content="Metrapi provides professional statistical consultancy and data analysis for healthcare professionals in Ireland. Enhance your research with robust study designs, data management, and predictive modeling." />
<meta property="og:image" content="https://www.metrapi.com/logo-big.png" />
<meta property="og:url" content="https://www.metrapi.com/" />
<meta property="og:type" content="website" />
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Metrapi – Statistical Consultancy for Healthcare Professionals in Ireland" />
<meta name="twitter:description" content="Metrapi provides professional statistical consultancy and data analysis for healthcare professionals in Ireland. Enhance your research with robust study designs, data management, and predictive modeling." />
<meta name="twitter:image" content="YOUR_LOGO_URL" />
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@200;300&display=swap" rel="stylesheet">
<!-- Main Stylesheet -->
<link rel="stylesheet" href="style.css" />
</head>
<body>
<!-- JSON-LD Structured Data for Local Business / Organization -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "LocalBusiness",
"name": "Metrapi",
"description": "Statistical consultancy and data analysis for healthcare professionals in Ireland.",
"image": "https://www.metrapi.com/logo-big.png",
"url": "https://www.metrapi.com/",
"address": {
"@type": "PostalAddress",
"streetAddress": "2 Saint Michaels Place",
"addressLocality": "Dublin",
"addressRegion": "Leinster",
"addressCountry": "Ireland"
},
"sameAs": [
"https://www.linkedin.com/in/sebastianvencken/"
]
}
</script>
<header>
<div class="logo">
<img src="logo-big.png" alt="Metrapi Logo – Statistical Consultancy" />
</div>
<div class="header-text">Statistical Consultancy for Healthcare Professionals</div>
</header>
<!-- Main Heading (H1) -->
<section class="intro">
<h1>Welcome to Metrapi</h1>
<p>
Metrapi provides professional <strong>statistical support</strong> for research projects in healthcare,
specializing in helping healthcare workers in Ireland achieve their research goals.
Whether it's analyzing data, designing studies, or interpreting results,
Metrapi ensures your research is robust and adheres to scientific best practices.
</p>
</section>
<!-- Services Section -->
<section class="services">
<h2>Our Services</h2>
<p>
We offer a comprehensive range of services to meet your research and data needs:
</p>
<ul class="service-list">
<li><strong>Study Protocol Design</strong> – Create structured and methodologically sound research plans.</li>
<li><strong>Study Analysis</strong> – Perform advanced statistical tests and interpret results accurately.</li>
<li><strong>Data Cleaning and Wrangling</strong> – Ensure high-quality, reliable datasets before analysis.</li>
<li><strong>Predictive Modelling and Machine Learning</strong> – Generate actionable insights using cutting-edge ML techniques.</li>
<li><strong>eCRF, Database Design, and Data Management</strong> – Develop efficient data capture systems and maintain data integrity.</li>
<li><strong>Grant and Publication Review</strong> – Strengthen funding proposals and manuscripts for peer-reviewed journals.</li>
</ul>
</section>
<!-- Contact Section -->
<section class="contact">
<h2>Contact Us</h2>
<p>
Have questions about your research project, or interested in any of our services?
Fill out the form below.
</p>
<iframe
src="form.html"
name="formFrame"
id="formFrame"
style="border:none; width:100%; height:600px; overflow:hidden;"
scrolling="no"
></iframe>
</section>
<!-- Footer -->
<footer>
<p>
© <span id="year"></span> Metrapi. All rights reserved.
| <a href="privacy-policy.html">Privacy & Cookie Policy</a>
</p>
<script>
document.getElementById('year').textContent = new Date().getFullYear();
</script>
</footer>
<!-- Cookie Banner -->
<div id="cookie-banner">
<span>
We use cookies to ensure you get the best experience on our website.
For more information, please see our
<a href="privacy-policy.html">Privacy & Cookie Policy</a>.
</span>
<button onclick="acceptCookies()">Accept</button>
<button onclick="refuseCookies()">Refuse</button>
</div>
<!-- JavaScript -->
<script>
function acceptCookies() {
// Set a cookie indicating consent
document.cookie = "acceptedCookies=true; max-age=" + 60*60*24*365 + "; path=/";
document.getElementById('cookie-banner').style.display = 'none';
}
function refuseCookies() {
// Set a cookie indicating refusal
document.cookie = "acceptedCookies=false; max-age=" + 60*60*24*365 + "; path=/";
document.getElementById('cookie-banner').style.display = 'none';
}
function checkCookie() {
const cookieValue = document.cookie
.split('; ')
.find(row => row.startsWith('acceptedCookies='));
if (!cookieValue) {
document.getElementById('cookie-banner').style.display = 'block';
}
}
window.onload = checkCookie;
</script>
</body>
</html>