// FAQ, Areas, About, Contact/CTA, Footer const { useState: useStateS3 } = React; const FAQ = () => { const qs = [ { q:"How fast can you really close?", a:"Our average is 14 days; we've closed in as few as 7. Because we pay cash, there's no bank, no appraisal delay, and no financing that falls through. You pick the date that works for you." }, { q:"How do you come up with your offer price?", a:"We look at recent comparable sales in your neighborhood, the estimated cost to bring the house to resale condition, and current market conditions. You'll see the math, it's not a mystery." }, { q:"Do I really pay zero fees?", a:"Correct. No commission, no closing costs, no repair credits, no inspection fees. The number on our offer is the number that hits your account." }, { q:"What if the house is in bad shape?", a:"Perfect. We specialize in houses nobody else wants, fire, mold, hoarder situations, foundation, tenants still living there. Take what you want, leave the rest." }, { q:"Will you pressure me to sell?", a:"Never. Our offer is no-obligation. We'd rather you walk away happy than sign something you'll regret. Sometimes we even point people toward a traditional listing if the math is better for them." }, { q:"I'm already in foreclosure. Is it too late?", a:"Not until the auction day. Call us the moment you get a Notice of Default. In NY you typically have around 120 days, the earlier we talk, the more we can do (short sale, modification, or a cash close before the hammer drops)." }, ]; const [open, setOpen] = useStateS3(0); return (
Straight answers

Questions
we get a lot.

Nothing on this page? Call us directly. We answer the phone ourselves, no call center.

(518) 817-3726
{qs.map((f, i) => (

{f.a}

))}
); }; const Areas = () => { const counties = [ { n:"Albany County", cities:["Albany", "Colonie", "Guilderland", "Cohoes", "Watervliet", "Bethlehem"], cx: 52, cy: 55 }, { n:"Saratoga County", cities:["Saratoga Springs", "Clifton Park", "Ballston Spa", "Malta", "Mechanicville"], cx: 48, cy: 28 }, { n:"Schenectady County", cities:["Schenectady", "Rotterdam", "Niskayuna", "Scotia", "Glenville"], cx: 32, cy: 50 }, { n:"Rensselaer County", cities:["Troy", "Rensselaer", "East Greenbush", "Averill Park", "Castleton"], cx: 70, cy: 60 }, ]; const [hover, setHover] = useStateS3(0); return (
Where we buy

The whole
Capital Region.

We live here. We raised our families here. We know what a house on Delaware Ave sells for and we know what a fixer in Mechanicville is worth. Four counties, every zip code.

{counties.map((c, i) => ( ))}
{/* Stylized map */}
{/* river */} {/* county blobs */} {counties.map((c, i) => { const active = hover===i; return ( setHover(i)}> {active && ( )} {c.n.replace(" County", "").toUpperCase()} ); })}
↑ NCapital Region · NYHudson River →
); }; const About = () => { return (
Family-owned · Locally rooted
400+
neighbors helped through life's hardest housing moments
About Capital Home Solutions

We're your neighbors,
not some 1-800 hotline.

Capital Home Solutions was founded on a simple idea: homeowners in the Capital Region deserve better than getting cold-called by out-of-state investors who've never seen an Albany winter. We live here, we invest here, and we show up in person, coffee in hand, to every house we look at.

When the situation calls for something other than a sale, we say so. That's why we've helped seniors keep their homes with reverse mortgages, walked families through short sales, and connected folks with mortgage counselors, even when it meant we didn't buy the house.

{[ ["No hidden fees", "What we offer is what you get. No 'closing adjustments.'"], ["Honest advice", "Sometimes we say 'don't sell.' That's how you know to trust us."], ["Local roots", "Born, raised, and investing right here in the Capital Region."], ["Fast communication", "We pick up the phone. Same-day offers. Real humans."], ].map(([t, d]) => (
{t}
{d}
))}
); }; const ContactCTA = () => { const [form, setForm] = useStateS3({ name:"", address:"", phone:"", email:"", situation:"" }); const [sent, setSent] = useStateS3(false); return (
Get your offer

One honest conversation.
That's all we're asking for.

Fill out the form or call us. We'll listen first, look at the house, and come back with the right solution, a fair cash offer, an MLS listing for top dollar, a mortgage modification, or whatever actually fits your situation.

} label="Main line · 24/7" value="(518) 817-3726" href="tel:5188173726"/> } label="Niko, text friendly" value="(518) 225-5350" href="tel:5182255350"/> } label="Email" value="nikosmithchs@gmail.com" href="mailto:nikosmithchs@gmail.com"/> } label="We cover" value="Albany · Saratoga · Schenectady · Rensselaer"/>
{e.preventDefault(); setSent(true);}} style={{ background:"var(--paper)", color:"var(--ink)", borderRadius:24, padding:36, boxShadow:"var(--shadow-lg)", }}> {sent ? (

Got it, we'll call you within the hour.

Keep an eye out for a (518) area code. We don't call from blocked numbers.

) : ( <>
No-obligation · Free consultation

Tell us your situation.

setForm(f=>({...f, name:v}))}/> setForm(f=>({...f, phone:v}))}/>
setForm(f=>({...f, address:v}))} full/> setForm(f=>({...f, email:v}))} full/> setForm(f=>({...f, situation:v}))} full textarea/>

We respond within an hour during business hours. Your information stays private.

)}
); }; const LabeledField = ({label, value, onChange, full, textarea}) => (