Stripe's compliance crawler fetches the apex URL without executing JS and declined live-mode review when `https://resolutionflow.com/` returned the empty SPA shell that redirected to /landing client-side. Restructure the router so / serves LandingPage directly: - `/` → new `PublicLanding` wrapper (LandingPage for anon; Navigate to /home for authed users so there's no marketing-frame flicker). - Authed tree converted to a path-less layout route with absolute child paths. QuickStartPage moves to `/home`; all other children (`/trees`, `/pilot`, `/admin/*`, `/account/*`, etc.) keep their URLs. - `/landing` kept as a one-release stale-bookmark redirect to /. - `ProtectedRoute` unauth redirect flipped /landing → /; `state.from` preserved for post-login return. Reference updates: - Post-login / post-onboarding destinations → /home: OAuthCallbackPage (incl. `?welcome=teammate` query), WelcomeStep1/2/3 dismiss-rest, AssistantChatPage post-escalate, WelcomeRouter completion/dismiss redirects, VerifyEmailPage's three "Go to dashboard" links. - Authed chrome → /home: TopBar logo, AppLayout mobile nav + drawer logo, CommandPalette Dashboard entry. - Dashboard onboarding → /home: NextStepCard `ran_session.ctaPath`, SetupChecklist `ran_session.path`, SessionHistoryPage empty-state CTA. - Public back-links → /: TermsPage, PrivacyPage, PoliciesPage, ContactPage, PromotionsPage, PublicTemplatesPage (header + footer). SharedSessionPage's `to="/"` left as-is — now correctly lands anon visitors on the public landing. Crawlability: - New `frontend/public/robots.txt` allowlisting public pages and disallowing the authed app. - New `frontend/public/sitemap.xml` for /, /pricing, /contact-sales, /contact, /templates, /terms, /privacy, /policies, /promotions. - `PageMeta` gains an `og:url` (defaults to `window.location.href`) and flips `twitter:card` to `summary_large_image` when an `ogImage` is passed. Tests: - `AppLayout.test.tsx` updated to mount at `/home`. - New `ProtectedRoute.test.tsx` asserts unauthenticated `/home` redirects to `/` (not `/landing`) and preserves origin in `state.from`. If Stripe's crawler still cannot see the site after this (zero-JS crawler), the documented next escalation is server-side prerendering of public routes via `vite-plugin-ssg`. Out of scope here. Plan: docs/plans/2026-05-13-public-landing-routing-refactor.md Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
89 lines
4.5 KiB
TypeScript
89 lines
4.5 KiB
TypeScript
import { Link } from 'react-router-dom'
|
|
import { PageMeta } from '@/components/common/PageMeta'
|
|
|
|
export default function ContactPage() {
|
|
return (
|
|
<>
|
|
<PageMeta title="Contact" description="Contact ResolutionFlow customer service, sales, billing, or security." />
|
|
<div className="min-h-screen bg-background text-foreground">
|
|
<div className="mx-auto max-w-3xl px-6 py-16">
|
|
<Link to="/" className="text-sm text-muted-foreground hover:text-foreground mb-8 inline-block">← Back to home</Link>
|
|
<h1 className="text-3xl font-bold font-heading mb-4">Contact ResolutionFlow</h1>
|
|
<p className="text-muted-foreground mb-10">
|
|
We respond to customer inquiries Monday through Friday during U.S. business hours, excluding federal holidays. Email is the fastest path to a response.
|
|
</p>
|
|
|
|
<div className="space-y-8 text-muted-foreground leading-relaxed">
|
|
<section>
|
|
<h2 className="text-xl font-semibold text-foreground mb-3">Phone</h2>
|
|
<p>
|
|
<a href="tel:+14709494131" className="text-primary hover:underline">(470) 949-4131</a>
|
|
</p>
|
|
<p className="text-sm mt-1">Monday–Friday, 9:00 AM–5:00 PM ET, excluding U.S. federal holidays.</p>
|
|
</section>
|
|
|
|
<section>
|
|
<h2 className="text-xl font-semibold text-foreground mb-3">Email</h2>
|
|
<ul className="space-y-2">
|
|
<li>
|
|
<strong className="text-foreground">General support:</strong>{' '}
|
|
<a href="mailto:support@resolutionflow.com" className="text-primary hover:underline">support@resolutionflow.com</a>
|
|
</li>
|
|
<li>
|
|
<strong className="text-foreground">Sales and Enterprise:</strong>{' '}
|
|
<a href="mailto:sales@resolutionflow.com" className="text-primary hover:underline">sales@resolutionflow.com</a>
|
|
</li>
|
|
<li>
|
|
<strong className="text-foreground">Billing and account:</strong>{' '}
|
|
<a href="mailto:billing@resolutionflow.com" className="text-primary hover:underline">billing@resolutionflow.com</a>
|
|
</li>
|
|
<li>
|
|
<strong className="text-foreground">Security and privacy:</strong>{' '}
|
|
<a href="mailto:security@resolutionflow.com" className="text-primary hover:underline">security@resolutionflow.com</a>
|
|
</li>
|
|
</ul>
|
|
</section>
|
|
|
|
<section>
|
|
<h2 className="text-xl font-semibold text-foreground mb-3">Response times</h2>
|
|
<ul className="list-disc list-inside space-y-1">
|
|
<li>General support: within one (1) business day</li>
|
|
<li>Billing or account access: within one (1) business day</li>
|
|
<li>Security disclosures: within twenty-four (24) hours, including weekends</li>
|
|
</ul>
|
|
</section>
|
|
|
|
<section>
|
|
<h2 className="text-xl font-semibold text-foreground mb-3">Mailing address</h2>
|
|
{/* TODO: replace with full mailing address once P.O. Box is set up. */}
|
|
<p>
|
|
Available on request. Email{' '}
|
|
<a href="mailto:support@resolutionflow.com" className="text-primary hover:underline">support@resolutionflow.com</a>{' '}
|
|
and we will provide our current mailing address.
|
|
</p>
|
|
</section>
|
|
|
|
<section>
|
|
<h2 className="text-xl font-semibold text-foreground mb-3">Sales and demos</h2>
|
|
<p>
|
|
Interested in a guided demo or Enterprise pricing? Use our{' '}
|
|
<Link to="/contact-sales" className="text-primary hover:underline">sales contact form</Link>{' '}
|
|
to book a time directly.
|
|
</p>
|
|
</section>
|
|
|
|
<section>
|
|
<h2 className="text-xl font-semibold text-foreground mb-3">Related</h2>
|
|
<ul className="list-disc list-inside space-y-1">
|
|
<li><Link to="/policies" className="text-primary hover:underline">Customer Policies</Link> — billing, refunds, cancellation, and promotions</li>
|
|
<li><Link to="/terms" className="text-primary hover:underline">Terms of Service</Link></li>
|
|
<li><Link to="/privacy" className="text-primary hover:underline">Privacy Policy</Link></li>
|
|
</ul>
|
|
</section>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</>
|
|
)
|
|
}
|