-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcontact.html
More file actions
47 lines (44 loc) · 1.71 KB
/
contact.html
File metadata and controls
47 lines (44 loc) · 1.71 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact & imprint — Paavan</title>
<link rel="stylesheet" href="styles.css">
</head>
<body data-nav-active="home">
<div id="site-header"></div>
<main class="site-main">
<article class="static-page wrap">
<h1>Contact us</h1>
<p>Questions about <strong>orders, shipping, or returns</strong> — we sell physical products only.</p>
<section>
<h2>Customer service</h2>
<p>Email: <a href="mailto:support@Paavan-shop.example">support@Paavan-shop.example</a><br />
Phone: +49 (0) 30 0000 0000<br />
Hours: Mon–Fri 9:00–18:00 CET</p>
</section>
<section id="imprint">
<h2>Imprint (legal disclosure)</h2>
<p><strong>Paavan Retail GmbH</strong><br />
Musterstraße 12<br />
10115 Berlin<br />
Germany</p>
<p>Managing directors: Jane Doe, John Smith<br />
Register court: Amtsgericht Berlin HRB 000000<br />
VAT ID: DE000000000</p>
<p><em>Replace the above with your real company data when going live.</em></p>
</section>
<section>
<h2>EU dispute resolution</h2>
<p>The European Commission provides a platform for online dispute resolution: <a
href="https://ec.europa.eu/consumers/odr" target="_blank" rel="noopener">ODR</a>. We are not obliged to
participate in consumer arbitration but will engage in good faith.</p>
</section>
</article>
</main>
<div id="site-footer"></div>
<script src="layout.js"></script>
<script>ShopLayout.inject('home');</script>
</body>
</html>