diff --git a/src/pages/index.tsx b/src/pages/index.tsx
index d0afc64..3f338fc 100644
--- a/src/pages/index.tsx
+++ b/src/pages/index.tsx
@@ -18,7 +18,7 @@ export default function Home() {
Forms, reimagined.
- Chat to build. Chat to fill. Zero configuration.{' '}
+ Chat to create. Chat to fill. Zero configuration.{' '}
It just works.
@@ -42,7 +42,7 @@ export default function Home() {
-
+
>
);
@@ -82,3 +82,488 @@ function Footer() {
);
}
+
+
+function SpecificsTextOnLeft(props: {heading: string, content: string}) {
+ return (
+
+
+
+ {props.heading}
+
+
+ {props.content}
+
+
+
+
+
+
+
+
+ )
+}
+function SpecificsTextOnRight(props: { heading: string; content: string }) {
+ return (
+
+
+
+
+
+
+
+ {props.heading}
+
+
+ {props.content}
+
+
+
+
+
+
+ );
+}
+
+function Specifics() {
+ return (
+
+
+
+ Faster, easier, more powerful.
+
+
+
+
+
+
+
+
+ )
+}
\ No newline at end of file