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
12 changes: 6 additions & 6 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,23 +17,23 @@ const jetbrainsMono = JetBrains_Mono({
});

export const metadata: Metadata = {
title: "BugDrop - In-app feedback to GitHub Issues",
title: "BugDrop - Free Website Feedback Widget for GitHub Issues",
description:
"Collect bug reports with screenshots in 30 seconds. Open source feedback widget that creates GitHub issues automatically.",
"Free, open source website feedback widget. Users report bugs with screenshots and annotations — issues are created in GitHub automatically. One script tag, zero config.",
metadataBase: new URL("https://bugdrop.dev"),
openGraph: {
title: "BugDrop - In-app feedback to GitHub Issues",
title: "BugDrop - Free Website Feedback Widget for GitHub Issues",
description:
"Collect bug reports with screenshots in 30 seconds. Open source feedback widget that creates GitHub issues automatically.",
"Free, open source website feedback widget. Users report bugs with screenshots and annotations — issues are created in GitHub automatically.",
url: "https://bugdrop.dev",
siteName: "BugDrop",
type: "website",
},
twitter: {
card: "summary_large_image",
title: "BugDrop - In-app feedback to GitHub Issues",
title: "BugDrop - Free Website Feedback Widget for GitHub Issues",
description:
"Collect bug reports with screenshots in 30 seconds. Open source feedback widget that creates GitHub issues automatically.",
"Free, open source website feedback widget. Users report bugs with screenshots and annotations — issues are created in GitHub automatically.",
},
verification: {
google: "sTi4vjMGXpdkvZcZQnRhs9u-uVyxsqTHOIR_txqHR-w",
Expand Down
2 changes: 1 addition & 1 deletion src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const structuredData = {
"@type": "SoftwareApplication",
name: "BugDrop",
description:
"Open-source in-app feedback widget that turns user bug reports into GitHub issues with screenshots, annotations, and system info.",
"Free, open-source website feedback widget that turns user bug reports into GitHub issues with screenshots, annotations, and system info.",
url: "https://bugdrop.dev",
applicationCategory: "DeveloperApplication",
operatingSystem: "Web",
Expand Down
7 changes: 4 additions & 3 deletions src/components/landing/hero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,16 @@ export function Hero() {
return (
<header className="text-center py-16 pb-24 animate-fade-up">
<h1 className="text-[clamp(2.5rem,6vw,4rem)] font-light tracking-tight leading-[1.15] mb-6 bg-gradient-to-br from-text-primary to-text-muted bg-clip-text text-transparent">
Collect bug reports with
Free website feedback widget with
<br />
<strong className="font-bold bg-gradient-to-br from-accent-warm to-accent-rose bg-clip-text">
screenshots in 30 seconds
</strong>
</h1>
<p className="text-xl text-text-subtle max-w-[600px] mx-auto mb-10">
Drop-in feedback widget that turns user reports into GitHub issues.
Screenshots, annotations, system info — all automatic.
Open source bug reporting widget for any website. Drop it in, and user
feedback becomes GitHub issues — with screenshots, annotations, and
system info.
</p>
<div className="flex gap-4 justify-center flex-wrap max-sm:flex-col">
<a
Expand Down
Loading