From a6fe862d0a4da2669bb8579b97d72dec33e0375d Mon Sep 17 00:00:00 2001 From: jahooma Date: Wed, 1 Dec 2021 19:42:52 -0600 Subject: [PATCH] Add netlify form attribute --- web/components/hero.tsx | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/web/components/hero.tsx b/web/components/hero.tsx index 1fd20047..a5d2fbd1 100644 --- a/web/components/hero.tsx +++ b/web/components/hero.tsx @@ -140,10 +140,10 @@ export const Hero = () => { prediction markets

- Create and resolve your own prediction markets to earn a percent of the bet volume. Powered by Solana smart contracts. + Create and resolve your own prediction markets to earn a percent of the bet volume. Powered by Solana.

-
+
@@ -194,3 +195,15 @@ export const Hero = () => { ) } + +const NetilfyForm = (props: { + children: any +} & Partial>) => { + const { children, ...other } = props + + return ( +
+ {children} +
+ ) +} \ No newline at end of file