Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/layouts/BaseLayout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ const absoluteOgImage = ogImage.startsWith("http")
<meta property="og:type" content="website" />
<meta property="og:image" content={absoluteOgImage} />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@yellowdex_ai" />
<meta name="twitter:title" content={title} />
<meta name="twitter:description" content={description} />
<meta name="twitter:image" content={absoluteOgImage} />
Expand Down
7 changes: 6 additions & 1 deletion src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -463,12 +463,17 @@ const latestRelease = await getLatestRelease();
<p class="text-sm text-ink-soft">Label every address. Turn chaos into context.</p>
</div>
</div>
<div class="flex flex-wrap gap-4 text-sm text-muted">
<div class="flex flex-wrap items-center gap-4 text-sm text-muted">
<a href="#features" class="hover:text-ink">Features</a>
<a href="#how-it-works" class="hover:text-ink">How it works</a>
<a href="#faq" class="hover:text-ink">FAQ</a>
<a href="mailto:support@yellowdex.ai" class="hover:text-ink">Contact</a>
<a href="/privacy-policy/" class="hover:text-ink">Privacy Policy</a>
<a href="https://x.com/yellowdex_ai" target="_blank" rel="noopener noreferrer" aria-label="Follow Yellowdex on X" class="hover:text-ink">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor" class="h-4 w-4">
<path d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z" />
</svg>
</a>
</div>
</div>
</footer>
Expand Down