fixed runner

This commit is contained in:
Jon Taylor
2024-05-16 18:57:34 +01:00
parent 72da9320da
commit dab01e0d58
37 changed files with 214 additions and 109 deletions

View File

@@ -0,0 +1,22 @@
import Logo from "./logo";
function Header() {
return (
<header className="header">
<span className="logo-button">
<Logo />
</span>
<nav>
<a href="https://git.new/ai" target="_blank">
GitHub
</a>
<a href="https://discord.gg/pipecat" target="_blank">
Discord
</a>
</nav>
</header>
);
}
export default Header;