Skip to content

Commit 43fbc43

Browse files
committed
chore(site): remove PokeAPI references
Drops the 'inspired by PokeAPI' line from the meta description and hero tagline, and the PokeAPI mention in the script comment.
1 parent 4a8c150 commit 43fbc43

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

site/src/pages/index.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ const endpoints = [
3333
})();
3434
</script>
3535
<title>TechAPI — open data for consumer electronics specs</title>
36-
<meta name="description" content="A free, open, static dataset of smartphone, SoC, GPU and CPU specs with computed scores. No key, no server — just fetch JSON. Inspired by PokeAPI." />
36+
<meta name="description" content="A free, open, static dataset of smartphone, SoC, GPU and CPU specs with computed scores. No key, no server — just fetch JSON." />
3737
<link rel="preconnect" href="https://fonts.googleapis.com" />
3838
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
3939
<link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500;600&display=swap" rel="stylesheet" />
@@ -73,7 +73,7 @@ const endpoints = [
7373
<span class="ln">for <em>consumer</em></span>
7474
<span class="ln"><span class="box">electronics</span></span>
7575
</h1>
76-
<p class="tagline">Structured specs &amp; computed scores for smartphones, SoCs, GPUs and CPUs — served as plain static JSON. Free, open, inspired by PokeAPI.</p>
76+
<p class="tagline">Structured specs &amp; computed scores for smartphones, SoCs, GPUs and CPUs — served as plain static JSON. Free and open.</p>
7777
<div class="hero-cta">
7878
<a class="btn primary" href="#playground">Try the API <span class="arr">→</span></a>
7979
<a class="btn" href={`${base}docs`}>Read the docs</a>

site/src/scripts/techapi.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// TechAPI — homepage interactions (Astro client script)
2-
// Real static-JSON fetch against import.meta.env.BASE_URL (PokeAPI-style dump).
2+
// Real static-JSON fetch against import.meta.env.BASE_URL (static JSON dump).
33
const raw = import.meta.env.BASE_URL;
44
const base = raw.endsWith("/") ? raw : raw + "/";
55
const absUrl = (path) => new URL(path.replace(/^\//, ""), location.origin + base).href;

0 commit comments

Comments
 (0)