Skip to content
Merged
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
110 changes: 65 additions & 45 deletions app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,51 +55,71 @@ export default function HomePage() {
Find Related Repositories
</h2>
<RepoInput />
<p className="mt-8">
Just replace{" "}
<span className="font-mono text-gray-600 dark:text-gray-400">
github.com
</span>{" "}
in any repo&apos;s URL with{" "}
<span className="font-mono text-gray-600 dark:text-gray-400">
gitrelate.com
</span>{" "}
or{" "}
<span className="font-mono text-gray-600 dark:text-gray-400">
gitrelated.com
</span>
, and you can see other repositories that people who starred the
original repo also liked. Works best with obscure niches with ~100
stargazers. Lots of noise when you lookup{" "}
<Link href="/facebook/react-native" className="underline">
facebook/react-native
</Link>
.
</p>
<p className="mt-8">
Discuss at{" "}
<Link
href="https://news.ycombinator.com/item?id=42009607"
target="_blank"
rel="noopener noreferrer"
className="underline"
>
Hacker News
</Link>
.
</p>
<p className="mt-8 text-sm text-gray-600 dark:text-gray-400">
Data for this project is sourced from the{" "}
<a
href="https://ghe.clickhouse.tech/"
target="_blank"
rel="noopener noreferrer"
className="underline"
>
ClickHouse GitHub event dataset
</a>{" "}
provided by ClickHouse Inc. and licensed under CC-BY-4.0 or Apache 2.0.
</p>
<div className="space-y-4 mt-8">
<p>
Just replace{" "}
<span className="font-mono text-gray-600 dark:text-gray-400">
github.com
</span>{" "}
in any repo&apos;s URL with{" "}
<span className="font-mono text-gray-600 dark:text-gray-400">
gitrelate.com
</span>{" "}
or{" "}
<span className="font-mono text-gray-600 dark:text-gray-400">
gitrelated.com
</span>
, and you can see other repositories that people who starred the
original repo also liked.
</p>
<p>
Works best with obscure niches with less than 1,000 stargazers. Repos
with many stargazers can take up to 30 seconds to load the ClickHouse
data and may return less relevant results. Try{" "}
<Link href="/mattiasthalen/ducklake" className="underline">
mattiasthalen/ducklake
</Link>{" "}
or{" "}
<Link href="/matsonj/nba-monte-carlo" className="underline">
matsonj/nba-monte-carlo
</Link>
.
</p>
<p>
This project is open source and available on{" "}
<Link
href="https://github.com/tylercb/gitrelate"
target="_blank"
rel="noopener noreferrer"
className="underline"
>
GitHub
</Link>
. Contributions and feedback are welcome! Discuss at{" "}
<Link
href="https://news.ycombinator.com/item?id=42009607"
target="_blank"
rel="noopener noreferrer"
className="underline"
>
Hacker News
</Link>
.
</p>
<p className="text-sm text-gray-600 dark:text-gray-400">
Data for this project is sourced from the{" "}
<a
href="https://ghe.clickhouse.tech/"
target="_blank"
rel="noopener noreferrer"
className="underline"
>
ClickHouse GitHub event dataset
</a>{" "}
provided by ClickHouse Inc. and licensed under CC-BY-4.0 or Apache
2.0.
</p>
</div>
</div>
);
}