more
This commit is contained in:
@@ -17,7 +17,7 @@ const Footer = () => {
|
||||
<img className="footer-logo" src={logoWhite}></img>
|
||||
</div>
|
||||
</div>
|
||||
<div className="footer-right-box">
|
||||
<div className="footer-right-box" id="scroll-target-id">
|
||||
<a className="footer-item-link" onClick={() => handleClick("tos")}>
|
||||
Terms of Service
|
||||
</a>
|
||||
|
||||
@@ -215,8 +215,8 @@ const HomePage = () => {
|
||||
<div className="col-md-6">
|
||||
<div className="bottom-header-box">
|
||||
<h4 className="heading-6">
|
||||
Questions about our products and services? We’re here to
|
||||
answer!
|
||||
Questions about our applications and services? We are here
|
||||
to answer.
|
||||
</h4>
|
||||
<h4 className="heading-6-mobile">
|
||||
Questions about our products and services?
|
||||
@@ -233,7 +233,7 @@ const HomePage = () => {
|
||||
Request a demo
|
||||
</button>
|
||||
<button className="button-2" onClick={handleLogin}>
|
||||
Go to product login
|
||||
Go to login
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -44,11 +44,9 @@ const SignupPage = () => {
|
||||
getFormDataDefaults(paymentfields)
|
||||
);
|
||||
const [showPaymentModal, setShowPaymentModal] = useState(false);
|
||||
|
||||
const [showSelectPlan, setShowSelectPlan] = useState(
|
||||
isUpgrade ? true : false
|
||||
);
|
||||
|
||||
//const [showSelectPlan, setShowSelectPlan] = useState(true);
|
||||
const [activeRadioOption, setActiveRadioOption] = useState("partner");
|
||||
const [selectedPlan, setSelectedPlan] = useState([signupRadioFields[1]]);
|
||||
@@ -255,8 +253,19 @@ const SignupPage = () => {
|
||||
setShowPaymentModal(true);
|
||||
};
|
||||
|
||||
const scrollToLowerPanel = () => {
|
||||
let target = document.getElementById("scroll-target-id");
|
||||
if (target) {
|
||||
window.scrollTo({
|
||||
top: target.offsetTop,
|
||||
behavior: "smooth",
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
const handleCancelModal = () => {
|
||||
setShowPromoModal(!showPromoModal);
|
||||
setTimeout(scrollToLowerPanel, 400);
|
||||
setShowSelectPlan(!showSelectPlan);
|
||||
};
|
||||
|
||||
@@ -574,7 +583,9 @@ const SignupPage = () => {
|
||||
labelText="Select A Plan"
|
||||
/>
|
||||
</div>
|
||||
<div className="signup-freebie-box ">Free trial available!</div>
|
||||
<div className="signup-freebie-box" id="signup-freebiee">
|
||||
Free trial available!
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
const disableIndex =
|
||||
@@ -585,7 +596,7 @@ const SignupPage = () => {
|
||||
{isBusy ? <LoadingSpinner message={""} loaderType="MoonLoader" /> : null}
|
||||
{!isUpgrade && !isBusy ? signupForm : <></>}
|
||||
{showSelectPlan && !isBusy ? (
|
||||
<div className="select-plan-container">
|
||||
<div className="select-plan-container" id="select-plan-scid">
|
||||
<div className="select-plan-header">
|
||||
<div className="plan-header-right">
|
||||
<h5 className="signup-subheader-text">
|
||||
|
||||
@@ -1,21 +1,21 @@
|
||||
export const FeaturesTop = () => {
|
||||
return (
|
||||
<div className="features-copy-wrapper">
|
||||
<h4 className="features-header-text">Discovery responses in a dash</h4>
|
||||
<h4 className="features-header-text">Discovery responses in minutes</h4>
|
||||
<ul className="features-list">
|
||||
<li className="features-list-item">
|
||||
Dashing: go from a discovery request on your desk to a precise
|
||||
Don't blink: go from a discovery request on your desk to a precise
|
||||
response, ready for service, in less time than it takes to order
|
||||
lunch.
|
||||
</li>
|
||||
<li className="features-list-item">
|
||||
Configurable: adjust the verbosity of your AI assistant's rhetoric.
|
||||
Configurable: adjust the verbosity of your AI assistant's responses.
|
||||
Dial down for a concise response or up for more analysis and
|
||||
persuasive arguments supporting objections.
|
||||
persuasive arguments.
|
||||
</li>
|
||||
<li className="features-list-item">
|
||||
Done: Impressive response documents are editable and pre-formatted to
|
||||
comport with applicable local rules.
|
||||
Perfection, simply: Impressive response documents are editable to your
|
||||
taste, pre-formatted and comport with applicable local style.
|
||||
</li>
|
||||
</ul>
|
||||
<p className="steps-p"></p>
|
||||
|
||||
Reference in New Issue
Block a user