/* global React */ const { useState } = React; const marketingCtaSite = window.RentLensSite; function CTA() { const [addr, setAddr] = useState(''); const { isMobile } = marketingCtaSite.useViewport(); function handleSubmit(e) { e.preventDefault(); const nextAddress = addr.trim() || '2418 Linden Ave, Austin, TX 78704'; window.location.href = marketingCtaSite.buildHref(marketingCtaSite.paths.app, 'deal-inputs', { address: nextAddress }); } return ( Try it with a property address. No card. Free for the first three deals. setAddr(e.target.value)} placeholder="2418 Linden Ave, Austin, TX" style={{ flex: 1, border: 'none', outline: 'none', background: 'transparent', fontFamily: 'var(--font-sans)', fontSize: 16, color: 'var(--ink)', padding: '14px 0', }} /> Analyze -> SOC 2 Type II·50 states·4.8 stars on G2 ); } function Footer() { const { isMobile, isTablet } = marketingCtaSite.useViewport(); const groups = [ { title: 'Product', links: [ ['Analyze', marketingCtaSite.buildHref(marketingCtaSite.paths.app, 'deal-inputs')], ['Saved deals', marketingCtaSite.buildHref(marketingCtaSite.paths.app, 'saved-deals')], ['Services', '#services'], ['Pricing', '#pricing'], ], }, { title: 'Explore', links: [ ['How it works', '#how-it-works'], ['For investors', '#for-investors'], ['Example deal', '#example-deal'], ['Try an address', '#try-address'], ], }, { title: 'App', links: [ ['Projection', marketingCtaSite.buildHref(marketingCtaSite.paths.app, 'projection')], ['Risk score', marketingCtaSite.buildHref(marketingCtaSite.paths.app, 'risk-panel')], ['AI analysis', marketingCtaSite.buildHref(marketingCtaSite.paths.app, 'ai-analysis')], ['Take action', marketingCtaSite.buildHref(marketingCtaSite.paths.app, 'services')], ], }, { title: 'Design system', links: [ ['Brand colors', '../../preview/colors-brand.html'], ['Buttons', '../../preview/components-buttons.html'], ['Marketing UI', '../marketing/index.html'], ['App UI', '../app/index.html'], ], }, ]; return ( ); } window.CTA = CTA; window.Footer = Footer;
No card. Free for the first three deals.