forked from nsbradford/TalkFormAI
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
065daed
commit c863cfb
Showing
7 changed files
with
183 additions
and
160 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -112,7 +112,11 @@ function SpecificsTextOnLeft(props: { | |
</div> | ||
); | ||
} | ||
function SpecificsTextOnRight(props: { heading: string; content: string; children: React.ReactNode }) { | ||
function SpecificsTextOnRight(props: { | ||
heading: string; | ||
content: string; | ||
children: React.ReactNode; | ||
}) { | ||
return ( | ||
<div className="flex flex-wrap flex-col-reverse sm:flex-row mt-20"> | ||
<div className="w-full sm:w-1/2 p-2">{props.children}</div> | ||
|
@@ -121,12 +125,9 @@ function SpecificsTextOnRight(props: { heading: string; content: string; childre | |
<h3 className="text-3xl text-gray-800 font-bold leading-none mb-3"> | ||
{props.heading} | ||
</h3> | ||
<p className="text-gray-600 pr-4"> | ||
{props.content} | ||
</p> | ||
<p className="text-gray-600 pr-4">{props.content}</p> | ||
</div> | ||
</div> | ||
|
||
</div> | ||
); | ||
} | ||
|
@@ -149,8 +150,7 @@ function Specifics() { | |
<div className="bg-white p-4 rounded-lg shadow-xl text-xs text-gray-400"> | ||
Waitlist for my startup: name, email address, company, job title, | ||
and what technologies they currently use for marketing research. | ||
If they’re a software engineer, ask for their | ||
GitHub. | ||
If they’re a software engineer, ask for their GitHub. | ||
</div> | ||
</div> | ||
</SpecificsTextOnLeft> | ||
|
@@ -162,7 +162,9 @@ function Specifics() { | |
<div className="bg-white p-4 rounded-lg shadow-xl text-xs text-gray-400"> | ||
<MessageUI | ||
role={'assistant'} | ||
content={'Thanks, Jane! Now, what is your company and job title?'} | ||
content={ | ||
'Thanks, Jane! Now, what is your company and job title?' | ||
} | ||
/> | ||
<MessageUI | ||
role={'user'} | ||
|
@@ -172,10 +174,7 @@ function Specifics() { | |
role={'assistant'} | ||
content={`Very cool! What's your GitHub?`} | ||
/> | ||
<MessageUI | ||
role={'user'} | ||
content={`https://github.com/jd-70B`} | ||
/> | ||
<MessageUI role={'user'} content={`https://github.com/jd-70B`} /> | ||
<MessageUI | ||
role={'assistant'} | ||
content={`Thanks, I see your username is 'jd-70B'. Now, what technologies do you use when doing marketing research?`} | ||
|
@@ -186,39 +185,40 @@ function Specifics() { | |
<SpecificsTextOnLeft | ||
heading="Keep your data structured." | ||
content="All your form responses remain structured according to the inferred schema for easy analysis." | ||
><div className={`${sunsetGradient} p-6 rounded-xl shadow-xl`}> | ||
<table className="text-xs min-w-full bg-white rounded-lg shadow-xl text-sm text-gray-400 border-collapse p-8"> | ||
<thead> | ||
<tr className="text-left border-b"> | ||
<th className="py-2 px-2">Name</th> | ||
<th className="py-2 px-2">Email</th> | ||
<th className="py-2 px-2">Company</th> | ||
<th className="py-2 px-2">Title</th> | ||
<th className="py-2 px-2">Tech</th> | ||
<th className="py-2 px-2">GitHub</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
<tr> | ||
<td className="py-2 px-2 border-b">Jane Doe</td> | ||
<td className="py-2 px-2 border-b">[email protected]</td> | ||
<td className="py-2 px-2 border-b">Tech Co.</td> | ||
<td className="py-2 px-2 border-b">ML Engineer</td> | ||
<td className="py-2 px-2 border-b">React, Node, Python</td> | ||
<td className="py-2 px-2 border-b">jd-70B</td> | ||
</tr> | ||
<tr> | ||
<td className="py-2 px-2 border-b">Bill Smith</td> | ||
<td className="py-2 px-2 border-b">[email protected]</td> | ||
<td className="py-2 px-2 border-b">Biz Corp.</td> | ||
<td className="py-2 px-2 border-b">Marketing Manager</td> | ||
<td className="py-2 px-2 border-b">Google Analytics</td> | ||
<td className="py-2 px-2 border-b">-</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
</div> | ||
</SpecificsTextOnLeft> | ||
> | ||
<div className={`${sunsetGradient} p-6 rounded-xl shadow-xl`}> | ||
<table className="text-xs min-w-full bg-white rounded-lg shadow-xl text-sm text-gray-400 border-collapse p-8"> | ||
<thead> | ||
<tr className="text-left border-b"> | ||
<th className="py-2 px-2">Name</th> | ||
<th className="py-2 px-2">Email</th> | ||
<th className="py-2 px-2">Company</th> | ||
<th className="py-2 px-2">Title</th> | ||
<th className="py-2 px-2">Tech</th> | ||
<th className="py-2 px-2">GitHub</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
<tr> | ||
<td className="py-2 px-2 border-b">Jane Doe</td> | ||
<td className="py-2 px-2 border-b">[email protected]</td> | ||
<td className="py-2 px-2 border-b">Tech Co.</td> | ||
<td className="py-2 px-2 border-b">ML Engineer</td> | ||
<td className="py-2 px-2 border-b">React, Node, Python</td> | ||
<td className="py-2 px-2 border-b">jd-70B</td> | ||
</tr> | ||
<tr> | ||
<td className="py-2 px-2 border-b">Bill Smith</td> | ||
<td className="py-2 px-2 border-b">[email protected]</td> | ||
<td className="py-2 px-2 border-b">Biz Corp.</td> | ||
<td className="py-2 px-2 border-b">Marketing Manager</td> | ||
<td className="py-2 px-2 border-b">Google Analytics</td> | ||
<td className="py-2 px-2 border-b">-</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
</div> | ||
</SpecificsTextOnLeft> | ||
<SpecificsTextOnRight | ||
heading="Unlimited Power." | ||
content="Custom validations. Complicated conditional logic. If you can think it, we can do it." | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.