Skip to content

Add GitHub and debugger links #67

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
17 changes: 17 additions & 0 deletions site/main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,23 @@ function Gallery() {
<>
<div className="header">
<h1>Schematic Corpus</h1>
<a
href="https://github.com/tscircuit/schematic-corpus"
target="_blank"
rel="noopener noreferrer"
>
<img
src="https://img.shields.io/github/stars/tscircuit/schematic-corpus?style=social"
alt="GitHub Stars"
/>
</a>
<a
href="https://bpc-graph.vercel.app/renderer.html?fixtureId=%7B%22path%22%3A%22pages%2Fschematic-layout%2Finteractive-schematic-layout.page.tsx%22%7D&locked=true"
target="_blank"
rel="noopener noreferrer"
>
Schematic Layout Debugger
</a>
<button
className="toggle-btn"
onClick={() => setViewMode((v) => (v === "bpc" ? "svg" : "bpc"))}
Expand Down
Loading