Spaces:
Sleeping
Sleeping
File size: 1,322 Bytes
73e9550 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | import { ExternalLink } from "lucide-react"
import GithubIcon from "./GithubIcon"
import { FOUNDER, LINKS } from "../constants"
export default function Footer() {
return (
<footer className="site-footer">
<div className="site-footer__inner">
<div className="site-footer__brand">
<span className="site-logo__mark site-logo__mark--sm">CV</span>
<div>
<p className="site-footer__name">ClearVoice</p>
<p className="site-footer__tagline">Evidence-backed health claim verification</p>
</div>
</div>
<div className="site-footer__links">
<a href={LINKS.github} target="_blank" rel="noopener noreferrer" className="btn btn-ghost btn-sm">
<GithubIcon size={15} />
Repository
</a>
<a href={LINKS.profile} target="_blank" rel="noopener noreferrer" className="btn btn-ghost btn-sm">
{FOUNDER.name}
</a>
<a href={LINKS.demo} target="_blank" rel="noopener noreferrer" className="btn btn-ghost btn-sm">
Demo
<ExternalLink size={13} />
</a>
</div>
<p className="site-footer__copy">
Built by {FOUNDER.name} · PubMed-powered · {new Date().getFullYear()}
</p>
</div>
</footer>
)
}
|