diff --git a/common/components/GithubCorner.tsx b/common/components/GithubCorner.tsx
new file mode 100644
index 0000000..afe5374
--- /dev/null
+++ b/common/components/GithubCorner.tsx
@@ -0,0 +1,45 @@
+export const GithubCorner: React.FC = () => {
+ return (
+ <>
+
+
+
+
+ >
+ )
+}
diff --git a/common/components/index.ts b/common/components/index.ts
new file mode 100644
index 0000000..5822eab
--- /dev/null
+++ b/common/components/index.ts
@@ -0,0 +1,2 @@
+export * from './ChainItem'
+export * from './GithubCorner'
diff --git a/pages/index.tsx b/pages/index.tsx
index c919b82..db6d747 100644
--- a/pages/index.tsx
+++ b/pages/index.tsx
@@ -8,7 +8,7 @@ import { Search } from '@geist-ui/react-icons'
import { GetStaticProps } from 'next'
import { FormEventHandler, useState } from 'react'
import debounce from 'lodash/debounce'
-import { ChainItem } from '../common/components/ChainItem'
+import { GithubCorner, ChainItem } from '../common/components'
interface HomeProps {
chains: Chain[]
@@ -44,6 +44,7 @@ export const Home: React.FC = ({ chains }) => {
return (