File tree Expand file tree Collapse file tree 1 file changed +31
-0
lines changed
Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Original file line number Diff line number Diff line change 1+ import { Github } from "lucide-react" ;
12import bun from "./assets/bun.svg" ;
23import effect from "./assets/effect.svg" ;
34import react from "./assets/react.svg" ;
@@ -7,6 +8,7 @@ import { PresencePanel } from "./components/presence-panel";
78import { RestCard } from "./components/rest-card" ;
89import { RpcCard } from "./components/rpc-card" ;
910import { ThemeToggle } from "./components/theme-toggle" ;
11+ import { Button } from "./components/ui/button" ;
1012
1113function App ( ) {
1214 return (
@@ -37,6 +39,35 @@ function App() {
3739 < RestCard />
3840 < RpcCard />
3941 </ div >
42+ < footer className = "w-full flex justify-between" >
43+ < Button
44+ variant = "link"
45+ render = { ( props ) => (
46+ < a
47+ { ...props }
48+ href = "https://www.lloydrichards.dev"
49+ target = "_blank"
50+ rel = "noopener"
51+ >
52+ lloydrichards.dev
53+ </ a >
54+ ) }
55+ />
56+ < Button
57+ variant = "link"
58+ render = { ( props ) => (
59+ < a
60+ { ...props }
61+ href = "https://github.com/lloydrichards/base_bevr-stack"
62+ target = "_blank"
63+ rel = "noopener noreferrer"
64+ >
65+ < Github />
66+ Github
67+ </ a >
68+ ) }
69+ />
70+ </ footer >
4071 </ div >
4172 ) ;
4273}
You can’t perform that action at this time.
0 commit comments