Skip to content

Commit

Permalink
Merge pull request swapmatic#18 from swapmatic/features/SWAM-56
Browse files Browse the repository at this point in the history
feat: add superswap fav and title
  • Loading branch information
kaos1478 authored Oct 21, 2021
2 parents ab9ecfa + 92bad17 commit e38362f
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
Binary file added public/faviconsuper.ico
Binary file not shown.
18 changes: 17 additions & 1 deletion src/pages/superswap.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,22 @@
// Components
import SuperSwap from '@/components/templates/SuperSwap'
import Head from 'next/head'

export default function Super() {
return <SuperSwap />
return (
<>
<Head>
<title>SuperSwap</title>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/faviconsuper.ico"
/>
<meta charSet="utf-8" />
<meta name="description" content="SwapMatic" />
</Head>
<SuperSwap />
</>
)
}

0 comments on commit e38362f

Please sign in to comment.