diff --git a/apps/wapijs.co/next.config.mjs b/apps/wapijs.co/next.config.mjs
index 36a8dc9..664149d 100644
--- a/apps/wapijs.co/next.config.mjs
+++ b/apps/wapijs.co/next.config.mjs
@@ -5,9 +5,16 @@ const nextConfig = {
removeConsole: process.env.NODE_ENV === 'production'
},
images: {
+ dangerouslyAllowSVG: true,
remotePatterns: [
{
hostname: 'res.cloudinary.com'
+ },
+ {
+ hostname: 'www.producthunt.com'
+ },
+ {
+ hostname: 'api.producthunt.com'
}
]
}
diff --git a/apps/wapijs.co/public/assets/peerlist-launch.svg b/apps/wapijs.co/public/assets/peerlist-launch.svg
new file mode 100644
index 0000000..e4d5bed
--- /dev/null
+++ b/apps/wapijs.co/public/assets/peerlist-launch.svg
@@ -0,0 +1,40 @@
+
diff --git a/apps/wapijs.co/src/app/page.tsx b/apps/wapijs.co/src/app/page.tsx
index e793d9c..c1765a0 100644
--- a/apps/wapijs.co/src/app/page.tsx
+++ b/apps/wapijs.co/src/app/page.tsx
@@ -1,11 +1,43 @@
import { Button, ClipboardCopy } from '@wapijs/ui'
import Link from 'next/link'
import { ArrowTopRightOnSquareIcon } from '@heroicons/react/24/solid'
+import Image from 'next/image'
export default function Home() {
return (