-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
81 lines (71 loc) · 4.66 KB
/
index.html
File metadata and controls
81 lines (71 loc) · 4.66 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LaxMap | The Global Community Map for Lacrosse Events 🥍</title> <meta name="description" content="Discover and add lacrosse events on the ultimate community-powered map. Built by a fellow lacrosse player, this is your go-to guide to find and share tournaments and clinics worldwide.">
<link rel="canonical" href="https://laxmap.app/"> <meta property="og:title" content="LaxMap - The Global Community Map for Lacrosse Events">
<meta property="og:description" content="Discover, share, and find lacrosse tournaments, clinics, and events worldwide. Your community-driven guide to the global lacrosse scene.">
<meta property="og:image" content="https://laxmap.app/assets/marker.png"> <meta property="og:url" content="https://laxmap.app/">
<meta property="og:type" content="website">
<meta property="og:site_name" content="LaxMap">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="LaxMap - Global Lacrosse Events Map">
<meta name="twitter:description" content="Find and share lacrosse tournaments and clinics worldwide. Built by players, for players. #Lacrosse #LaxMap">
<meta name="twitter:image" content="https://laxmap.app/assets/marker.png"> <meta name="twitter:site" content="@tuoTwitterHandle"> <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css" crossorigin="" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css" crossorigin="anonymous" referrerpolicy="no-referrer" />
<script defer src="https://cloud.umami.is/script.js" data-website-id="701441ed-86c2-4fa6-a85b-1943772dcf46"></script>
</head>
<body>
<header>
<div class="container">
<div class="logo">
<a href="index.html">
<img src="assets/logoFlat.webp" alt="LaxMap Logo" class="desktop-logo">
</a>
</div>
<nav class="desktop-nav">
<ul>
<li><a href="view-events.html">View Events</a></li>
<li><a href="add-event.html">Add New Event</a></li>
<li><a href="edit-event.html">Edit Event</a></li>
<li><a href="manage-featured.html">Manage Featured</a></li>
<li><a href="faq.html">FAQ</a></li>
</ul>
</nav>
<button class="hamburger-menu" aria-label="Toggle navigation">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</button>
<nav class="mobile-nav">
<ul>
<li><a href="view-events.html">View Events</a></li>
<li><a href="add-event.html">Add New Event</a></li>
<li><a href="edit-event.html">Edit Event</a></li>
<li><a href="manage-featured.html">Manage Featured</a></li>
<li><a href="faq.html">FAQ</a></li>
</ul>
</nav>
</div>
</header>
<main>
<div class="container">
<h2>Welcome to LaxMap!</h2>
<p>This is the ultimate <strong>community map about lacrosse events</strong>, designed by a single lacrosse player, for players and fans. </p>
<p>Here you can easily discover local tournaments and clinics happening around the world. Every event you see is added by users like you, making it the most comprehensive guide to <a href="view-events.html">Lacrosse Events</a> globally.</p>
<h3>Get Involved and Grow the Game</h3> <p>Want to get involved? It's simple to <a href="add-event.html">Add New Event</a> to the map. By contributing, you're helping to build a vibrant and active community.</p>
<p>Let's make this the number one resource for the world of lacrosse!</p>
</div>
</main>
<div id="footer-placeholder"></div>
<script src="https://unpkg.com/leaflet@1.9.4/dist/leaflet.js" crossorigin=""></script>
<script type="module" src="script.js"></script>
<script src="include.js"></script>
<script src="menu.js"></script>
</body>
</html>