diff --git a/src/App.tsx b/src/App.tsx index 4b72b81..27d3190 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -2,6 +2,9 @@ import Architecture from "./components/Architecture"; import Features from "./components/Features"; import { Roadmap } from "./components/Roadmap"; import SecurityCards from "./components/SecurityCards"; +import GithubLogo from "./components/logos/GithubLogo"; + +const githubLink = "https://github.com/OKDP/"; const cards = [ { @@ -178,7 +181,7 @@ const milestones = [ export default function App() { return (
-
+
OKDP
diff --git a/src/components/logos/GithubLogo.tsx b/src/components/logos/GithubLogo.tsx new file mode 100644 index 0000000..6d6b94f --- /dev/null +++ b/src/components/logos/GithubLogo.tsx @@ -0,0 +1,11 @@ +export default function GithubLogo({ className }: { className?: string }) { + return ( + + + + ); +}