diff --git a/src/components/FeedbackForm.astro b/src/components/FeedbackForm.astro index 803c196..0a2803b 100644 --- a/src/components/FeedbackForm.astro +++ b/src/components/FeedbackForm.astro @@ -1,59 +1,61 @@ --- --- -

Here's an example of a Netlify Form! When you fill this out, the submissions can be found in the Netlify Admin site.

-
-
- - - - - - - - - -
-
+

+ Here's an example of a Netlify Form! When you fill this out, the submissions + can be found in the Netlify Admin site. +

+
+
+ + + + + + + + + +
+
- diff --git a/src/custom-attributes.d.ts b/src/custom-attributes.d.ts new file mode 100644 index 0000000..2868ceb --- /dev/null +++ b/src/custom-attributes.d.ts @@ -0,0 +1,6 @@ +declare namespace astroHTML.JSX { + interface HTMLAttributes { + netlify?: true; + 'netlify-honeypot'?: string; + } +}