Skip to content

Commit 88834e9

Browse files
Add analytics and SEO files
1 parent 726069e commit 88834e9

6 files changed

Lines changed: 64 additions & 9 deletions

File tree

_redirects

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/* /index.html 200

css/style.css

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -456,6 +456,37 @@ footer {
456456
opacity: 1;
457457
}
458458

459+
.bmc-container {
460+
margin: 2rem 0;
461+
display: flex;
462+
justify-content: center;
463+
}
464+
465+
.bmc-container a {
466+
display: inline-flex;
467+
align-items: center;
468+
background-color: #FFDD00;
469+
color: #000000 !important;
470+
border-radius: 8px;
471+
padding: 0 15px;
472+
/* font-family: 'Cookie', cursive; */
473+
/* Font specifically for BMC, but falling back for now is fine or standard font */
474+
font-family: 'Inter', sans-serif;
475+
font-weight: 600;
476+
box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
477+
text-decoration: none;
478+
transition: transform 0.2s;
479+
height: 50px;
480+
}
481+
482+
.bmc-container a:hover {
483+
transform: scale(1.05);
484+
background-color: #FFDD00;
485+
text-shadow: none;
486+
border-bottom: none;
487+
color: #000000 !important;
488+
}
489+
459490
/* Responsiveness */
460491
@media (max-width: 768px) {
461492
h1 {

index.html

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,24 @@
1010
<link rel="preconnect" href="https://fonts.googleapis.com">
1111
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
1212
<!-- Fonts included in style.css import, but keeping preconnects for performance -->
13+
14+
<!-- Open Graph Meta Tags -->
15+
<meta property="og:title" content="Luca - Modern Tool Manager for macOS" />
16+
<meta property="og:description"
17+
content="A lightweight decentralised tool manager for macOS to manage project-specific tool environments." />
18+
<meta property="og:image" content="https://lucatools.github.io/images/og-image.png" />
19+
<meta property="og:url" content="https://lucatools.github.io/" />
20+
<meta property="og:type" content="website" />
21+
22+
<!-- Google Analytics -->
23+
<script async src="https://www.googletagmanager.com/gtag/js?id=G-6KPB6Y4G0Q"></script>
24+
<script>
25+
window.dataLayer = window.dataLayer || [];
26+
function gtag() { dataLayer.push(arguments); }
27+
gtag('js', new Date());
28+
29+
gtag('config', 'G-6KPB6Y4G0Q');
30+
</script>
1331
</head>
1432

1533
<body>
@@ -31,7 +49,7 @@ <h1>Luca</h1>
3149
<a href="https://github.com/LucaTools/Luca" target="_blank">GitHub repository</a>.
3250
</p>
3351

34-
<p style="text-align: center; margin-bottom: 1rem; font-weight: 600;">Installation command</p>
52+
<p style="text-align: center; margin-bottom: 1rem; font-weight: 600;">Get Started</p>
3553
<div class="install-command install-box">
3654
<pre><code>/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/LucaTools/LucaScripts/HEAD/install.sh)"</code></pre>
3755
<button class="btn-copy" onclick="copyInstallCommand()">Copy</button>
@@ -304,6 +322,13 @@ <h2>System Requirements</h2>
304322
<img src="https://img.shields.io/badge/Platforms-macOS-blue.svg" alt="Platforms: macOS">
305323
<img src="https://img.shields.io/badge/License-Apache%202-green.svg" alt="License: Apache 2.0">
306324
</div>
325+
<div class="bmc-container">
326+
<a href="https://www.buymeacoffee.com/albertodebortoli" target="_blank">
327+
<img src="https://cdn.buymeacoffee.com/buttons/bmc-new-btn-logo.svg" alt="Buy me a coffee"
328+
style="height: 40px !important; width: auto !important;">
329+
<span style="margin-left:5px; font-size:18px !important;">Buy me a coffee</span>
330+
</a>
331+
</div>
307332
<p>Luca is open source and distributed under the Apache 2.0 License.</p>
308333
</footer>
309334

public/og-image.png

389 KB
Loading

robots.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,2 @@
11
User-agent: *
22
Allow: /
3-
4-
Sitemap: https://yourlucawebsite.com/sitemap.xml

sitemap.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
3-
<url>
4-
<loc>https://luca.tools/</loc>
5-
<lastmod>2025-09-03</lastmod>
6-
<changefreq>monthly</changefreq>
7-
<priority>1.0</priority>
8-
</url>
3+
<url>
4+
<loc>https://luca.tools/</loc>
5+
<lastmod>2026-01-03</lastmod>
6+
<changefreq>monthly</changefreq>
7+
<priority>1.0</priority>
8+
</url>
99
</urlset>

0 commit comments

Comments
 (0)