> ## Documentation Index
> Fetch the complete documentation index at: https://withseismic.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Client Testimonials

> Real feedback from clients who've worked with WithSeismic. From Chrome extensions to LLM workflows, see what companies say about our engineering partnerships.

export const TestimonialsWidget = () => {
  const [currentIndex, setCurrentIndex] = useState(0);
  const testimonials = [{
    id: 1,
    text: "They're smart, fast, and trustworthy!",
    author: "Brian Tighe",
    role: "Head Of Technology @ Fool.com",
    avatar: "/images/testimonials/brian-tighe.png",
    rating: 5
  }, {
    id: 2,
    text: "Doug was incredible to work with and a great communicator. He operated quickly & efficiently, and even proposed ways to improve the feature to exceed our expectations.",
    author: "Allison Nulty",
    role: "Head of Product @ Contra",
    avatar: "/images/testimonials/allison-nulty.png",
    rating: 5,
    highlight: true
  }, {
    id: 3,
    text: "Doug is a pro. I'd hire him again for any future marketing & technology initiatives.",
    author: "Shelby Stevens",
    role: "Founder, Snacker.ai",
    avatar: "/images/testimonials/shelby-stevens.png",
    rating: 5
  }];
  useEffect(() => {
    const timer = setInterval(() => {
      setCurrentIndex(prevIndex => (prevIndex + 1) % testimonials.length);
    }, 5000);
    return () => clearInterval(timer);
  }, [testimonials.length]);
  const renderStars = rating => {
    return Array(rating).fill(null).map((_, i) => <span key={i} style={{
      color: '#ff9500',
      fontSize: '16px'
    }}>★</span>);
  };
  const goToTestimonial = index => {
    setCurrentIndex(index);
  };
  const nextTestimonial = () => {
    setCurrentIndex(prevIndex => (prevIndex + 1) % testimonials.length);
  };
  const prevTestimonial = () => {
    setCurrentIndex(prevIndex => prevIndex === 0 ? testimonials.length - 1 : prevIndex - 1);
  };
  return <div style={{
    backgroundColor: '#f8f9fa',
    borderRadius: '12px',
    padding: '32px',
    margin: '40px 0',
    fontFamily: '-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif',
    position: 'relative'
  }}>
      {}
      <div style={{
    display: 'flex',
    justifyContent: 'space-between',
    alignItems: 'center',
    marginBottom: '24px'
  }}>
        <div>
          <h3 style={{
    margin: 0,
    fontSize: '14px',
    fontWeight: 'normal',
    color: '#666',
    marginBottom: '8px'
  }}>
            What People Are Saying About Our Clients.
          </h3>
          <div style={{
    fontSize: '12px',
    color: '#999'
  }}>©2025</div>
        </div>
        <div style={{
    display: 'flex',
    alignItems: 'center',
    gap: '8px',
    backgroundColor: '#fff',
    padding: '8px 16px',
    borderRadius: '8px',
    border: '1px solid #e0e0e0'
  }}>
          <h4 style={{
    margin: 0,
    fontSize: '14px',
    fontWeight: '600'
  }}>WithSeismic</h4>
          <div style={{
    display: 'flex',
    gap: '4px'
  }}>
            {}
            {['👤', '👥', '👤'].map((emoji, i) => <div key={i} style={{
    width: '24px',
    height: '24px',
    borderRadius: '50%',
    backgroundColor: '#e0e0e0',
    display: 'flex',
    alignItems: 'center',
    justifyContent: 'center',
    fontSize: '12px',
    marginLeft: i > 0 ? '-8px' : '0',
    border: '2px solid #fff',
    position: 'relative',
    zIndex: 3 - i
  }}>
                {emoji}
              </div>)}
            <div style={{
    backgroundColor: '#333',
    color: '#fff',
    padding: '2px 8px',
    borderRadius: '12px',
    fontSize: '11px',
    marginLeft: '4px'
  }}>
              56+
            </div>
          </div>
        </div>
      </div>

      {}
      <div style={{
    display: 'flex',
    gap: '8px',
    marginBottom: '24px'
  }}>
        <div style={{
    fontSize: '12px',
    color: '#666'
  }}>
          We've delivered <strong>56+ projects</strong> that help companies generate real results.
        </div>
      </div>

      {}
      <div style={{
    display: 'grid',
    gridTemplateColumns: 'repeat(auto-fit, minmax(280px, 1fr))',
    gap: '20px',
    marginBottom: '24px'
  }}>
        {testimonials.map((testimonial, index) => <div key={testimonial.id} style={{
    backgroundColor: '#fff',
    borderRadius: '8px',
    padding: '20px',
    border: testimonial.highlight ? '2px solid #16a34a' : '1px solid #e0e0e0',
    display: index === currentIndex ? 'block' : window.innerWidth > 768 ? 'block' : 'none',
    cursor: 'pointer',
    transition: 'all 0.3s ease',
    position: 'relative'
  }} onClick={() => goToTestimonial(index)}>
            {testimonial.highlight && <div style={{
    position: 'absolute',
    top: '-12px',
    right: '20px',
    backgroundColor: '#16a34a',
    color: '#fff',
    padding: '4px 12px',
    borderRadius: '4px',
    fontSize: '11px',
    fontWeight: 'bold'
  }}>
                10/10!
              </div>}

            <div style={{
    marginBottom: '12px'
  }}>
              {renderStars(testimonial.rating)}
            </div>

            <p style={{
    fontSize: '14px',
    lineHeight: '1.6',
    color: '#333',
    marginBottom: '16px',
    minHeight: '80px'
  }}>
              "{testimonial.text}"
            </p>

            <div style={{
    display: 'flex',
    alignItems: 'center',
    gap: '12px'
  }}>
              <div style={{
    width: '40px',
    height: '40px',
    borderRadius: '50%',
    backgroundColor: '#e0e0e0',
    display: 'flex',
    alignItems: 'center',
    justifyContent: 'center',
    fontSize: '18px'
  }}>
                👤
              </div>
              <div>
                <div style={{
    fontWeight: '600',
    fontSize: '14px'
  }}>
                  {testimonial.author}
                </div>
                <div style={{
    fontSize: '12px',
    color: '#666'
  }}>
                  {testimonial.role}
                </div>
              </div>
            </div>
          </div>)}
      </div>

      {}
      <div style={{
    display: 'flex',
    justifyContent: 'space-between',
    alignItems: 'center'
  }}>
        <div style={{
    display: 'flex',
    alignItems: 'center',
    gap: '8px'
  }}>
          {renderStars(5)}
          <span style={{
    fontSize: '12px',
    color: '#666',
    marginLeft: '8px'
  }}>
            Trusted by clients worldwide
          </span>
        </div>

        <div style={{
    display: 'flex',
    gap: '12px'
  }}>
          <button onClick={() => window.open('/testimonials', '_blank')} style={{
    backgroundColor: '#333',
    color: '#fff',
    border: 'none',
    borderRadius: '20px',
    padding: '8px 20px',
    fontSize: '13px',
    fontWeight: '500',
    cursor: 'pointer',
    transition: 'background-color 0.2s'
  }} onMouseEnter={e => e.target.style.backgroundColor = '#555'} onMouseLeave={e => e.target.style.backgroundColor = '#333'}>
            Leave a review
          </button>

          {}
          {window.innerWidth <= 768 && <div style={{
    display: 'flex',
    gap: '8px'
  }}>
              <button onClick={prevTestimonial} style={{
    width: '32px',
    height: '32px',
    borderRadius: '50%',
    border: '1px solid #e0e0e0',
    backgroundColor: '#fff',
    cursor: 'pointer',
    display: 'flex',
    alignItems: 'center',
    justifyContent: 'center'
  }}>
                ←
              </button>
              <button onClick={nextTestimonial} style={{
    width: '32px',
    height: '32px',
    borderRadius: '50%',
    border: '1px solid #e0e0e0',
    backgroundColor: '#fff',
    cursor: 'pointer',
    display: 'flex',
    alignItems: 'center',
    justifyContent: 'center'
  }}>
                →
              </button>
            </div>}
        </div>
      </div>
    </div>;
};

<script type="application/ld+json">
  {`{
    "@context": "https://schema.org",
    "@type": "Organization",
    "name": "WithSeismic",
    "url": "https://withseismic.com",
    "aggregateRating": {
      "@type": "AggregateRating",
      "ratingValue": "5.0",
      "reviewCount": "15",
      "bestRating": "5"
    },
    "review": [
      {
        "@type": "Review",
        "author": {
          "@type": "Person",
          "name": "Allison Nulty",
          "jobTitle": "Head of Product",
          "worksFor": {
            "@type": "Organization",
            "name": "Contra"
          }
        },
        "reviewRating": {
          "@type": "Rating",
          "ratingValue": "5",
          "bestRating": "5"
        },
        "reviewBody": "Doug was incredible to work with and a great communicator. He operated quickly & efficiently, and even proposed ways to improve the feature to exceed our expectations. 10/10!"
      },
      {
        "@type": "Review",
        "author": {
          "@type": "Person",
          "name": "Brian Tighe",
          "jobTitle": "Head of Technology",
          "worksFor": {
            "@type": "Organization",
            "name": "The Motley Fool"
          }
        },
        "reviewRating": {
          "@type": "Rating",
          "ratingValue": "5",
          "bestRating": "5"
        },
        "reviewBody": "Doug is a pro. I'd hire him again for any future marketing & technology initiatives."
      },
      {
        "@type": "Review",
        "author": {
          "@type": "Person",
          "name": "Shelby Stevens",
          "jobTitle": "Founder",
          "worksFor": {
            "@type": "Organization",
            "name": "Snacker.ai"
          }
        },
        "reviewRating": {
          "@type": "Rating",
          "ratingValue": "5",
          "bestRating": "5"
        },
        "reviewBody": "They're smart, fast, and trustworthy!"
      }
    ]
    }`}
</script>

## What Clients Say About Working With Us

Real feedback from companies that have trusted WithSeismic with their engineering challenges. From Chrome extensions serving 30,000+ users to LLM platforms processing thousands of hours of content.

<CardGroup cols={2}>
  <Card icon="star" title="5.0 Average Rating">
    Based on 15+ client reviews across multiple platforms
  </Card>

  <Card icon="briefcase" title="56+ Projects Delivered">
    From MVPs to production systems driving real revenue
  </Card>
</CardGroup>

## Featured Client Testimonials

### Contra - Chrome Extension & Marketplace Growth

<img src="https://mintcdn.com/withseismic/y2-Fydpp_oWUmFEW/images/indy.png?fit=max&auto=format&n=y2-Fydpp_oWUmFEW&q=85&s=e3bdd0b7ad080dffe16658ac5ddbd905" alt="Indy.ai Chrome Extension for Contra" style={{borderRadius: '8px', marginBottom: '1rem'}} width="1280" height="800" data-path="images/indy.png" />

> "Doug was incredible to work with and a great communicator. He operated quickly & efficiently, and even proposed ways to improve the feature to exceed our expectations. **10/10!**"
>
> — **Allison Nulty**, Head of Product @ Contra

**Project**: [Indy.ai Chrome Extension](/case-studies/contra-linkedin-automation) - AI-powered job discovery tool

**Results**:

* **30,000+ active users** using the extension daily
* **2x marketplace inventory growth** through crowdsourced job discovery
* **4.6/5 rating** on Chrome Web Store
* Built frictionless onboarding with zero-setup authentication
* Background workers that never disrupt browsing experience

**Technologies**: Chrome Extension (Plasmo), React, TypeScript, LLM integration, Service Workers

***

### The Motley Fool - Marketing & Technology Solutions

> "Doug is a pro. I'd hire him again for any future marketing & technology initiatives."
>
> — **Brian Tighe**, Head of Technology @ The Motley Fool

**Context**: Engineering solutions for one of the world's most recognized financial media companies, serving millions of investors globally.

**Impact**: Delivered production-ready tools that integrated seamlessly with existing technology infrastructure while maintaining high performance standards.

***

### Snacker.ai - AI Video Editing Platform

> "They're smart, fast, and trustworthy!"
>
> — **Shelby Stevens**, Founder @ Snacker.ai

**Project**: [LLM-Powered Video Platform](/case-studies/snacker-ai-video-platform) - AI video editor competing with Riverside and Descript

**Results**:

* Took broken Lovable prototype to **production in 6 weeks**
* **5,000+ users** creating AI-edited videos
* **20-second video editing** turnaround time
* **Revenue-generating platform** from day one
* Built custom HLS playlists to solve iOS Safari audio blocking

**Technologies**: TypeScript monorepo, Hono backend, Supabase, WebCodecs API, LLM integration

***

## Interactive Testimonials Widget

<TestimonialsWidget />

***

## Results By The Numbers

Our clients don't just say nice things - they see measurable business impact:

<CardGroup cols={3}>
  <Card icon="chart-line" title="Revenue Growth">
    **60% of revenue** driven by Vouchernaut automation (contributed to \$65M acquisition)
  </Card>

  <Card icon="users" title="User Scale">
    **30,000+ active users** for Contra's Chrome extension
  </Card>

  <Card icon="rocket" title="Speed to Market">
    **6 weeks** from broken prototype to revenue-generating platform (Snacker.ai)
  </Card>

  <Card icon="clock" title="Time Savings">
    **95% reduction** in research time (Fingers on Pulse)
  </Card>

  <Card icon="target" title="Marketplace Growth">
    **2x inventory increase** for Contra's freelancer marketplace
  </Card>

  <Card icon="award" title="Quality Rating">
    **100% accuracy** on analytics auditing (GrowthRunner DevTools)
  </Card>
</CardGroup>

## More Client Feedback

<AccordionGroup>
  <Accordion title="VoucherCloud - $65M Exit Success Story">
    **Project**: [Vouchernaut Programmatic PPC](/case-studies/vouchernaut-programmatic-ppc)

    Built automation that drove **60% of company revenue** and contributed to Groupon's **\$65M acquisition** of VoucherCloud.

    **Key Achievements**:

    * Campaigns launch in 10 seconds (vs. hours manually)
    * Self-optimizing performance
    * 10x scale without additional headcount
    * Autonomous marketplace management

    **Technologies**: Playwright automation, PPC campaign management, programmatic bidding
  </Accordion>

  <Accordion title="GrowthRunner - Analytics Auditing Revolution">
    **Project**: [GrowthRunner DevTools](/case-studies/growthrunner-devtools)

    Chrome extension that reduced analytics auditing time by **90%** while achieving **100% accuracy**.

    **Client Impact**:

    * Audits completed in minutes instead of hours
    * Zero errors reaching clients
    * Faster team learning through automated feedback
    * Premium pricing justified by quality assurance

    **Technologies**: Chrome Extension, Analytics debugging, Real-time monitoring
  </Accordion>

  <Accordion title="Lead Qualification System - 3x More Meetings">
    **Project**: [Automated Lead Qualifier](/case-studies/lead-qualifier)

    Real-time engagement tracking and prospect scoring system.

    **Results**:

    * **3x more qualified meetings** booked
    * **70% reduction** in prospecting time
    * Automatic lead scoring and prioritization
    * 24/7 lead processing

    **Technologies**: Browser automation, CRM integration, Real-time scoring
  </Accordion>
</AccordionGroup>

## Trusted By Leading Brands

We've delivered engineering solutions for companies across multiple industries:

<CardGroup cols={3}>
  <Card>
    <img
      src="https://mintcdn.com/withseismic/YriZh7rrEtBJQiT3/images/clients/1.png?fit=max&auto=format&n=YriZh7rrEtBJQiT3&q=85&s=11d024af10abb2484e9f4ef6f5bb2361"
      alt="Contra"
      style={{
    height: "60px",
    width: "auto",
    display: "block",
    margin: "0 auto",
    objectFit: "contain",
  }}
      width="640"
      height="270"
      data-path="images/clients/1.png"
    />
  </Card>

  <Card>
    <img
      src="https://mintcdn.com/withseismic/YriZh7rrEtBJQiT3/images/clients/2.png?fit=max&auto=format&n=YriZh7rrEtBJQiT3&q=85&s=753a050eb8872d289fb451cf7b716535"
      alt="Groupon"
      style={{
    height: "60px",
    width: "auto",
    display: "block",
    margin: "0 auto",
    objectFit: "contain",
  }}
      width="640"
      height="270"
      data-path="images/clients/2.png"
    />
  </Card>

  <Card>
    <img
      src="https://mintcdn.com/withseismic/YriZh7rrEtBJQiT3/images/clients/Group%204.png?fit=max&auto=format&n=YriZh7rrEtBJQiT3&q=85&s=9485edf22e62a9ad15e519905c563d76"
      alt="The Motley Fool"
      style={{
    height: "60px",
    width: "auto",
    display: "block",
    margin: "0 auto",
    objectFit: "contain",
  }}
      width="640"
      height="270"
      data-path="images/clients/Group 4.png"
    />
  </Card>

  <Card>
    <img
      src="https://mintcdn.com/withseismic/YriZh7rrEtBJQiT3/images/clients/Group%205.png?fit=max&auto=format&n=YriZh7rrEtBJQiT3&q=85&s=4ebc9d1f33c908b80c128ce4bc5928eb"
      alt="Sky"
      style={{
    height: "60px",
    width: "auto",
    display: "block",
    margin: "0 auto",
    objectFit: "contain",
  }}
      width="640"
      height="270"
      data-path="images/clients/Group 5.png"
    />
  </Card>

  <Card>
    <img
      src="https://mintcdn.com/withseismic/YriZh7rrEtBJQiT3/images/clients/Group%207.png?fit=max&auto=format&n=YriZh7rrEtBJQiT3&q=85&s=f13a06b8a8fcd98fd163c8700c36095e"
      alt="NOWTV"
      style={{
    height: "60px",
    width: "auto",
    display: "block",
    margin: "0 auto",
    objectFit: "contain",
  }}
      width="640"
      height="270"
      data-path="images/clients/Group 7.png"
    />
  </Card>

  <Card>
    <img
      src="https://mintcdn.com/withseismic/YriZh7rrEtBJQiT3/images/clients/Group%209.png?fit=max&auto=format&n=YriZh7rrEtBJQiT3&q=85&s=178cce75bc7bfd442fc300e76800f899"
      alt="TOPMAN"
      style={{
    height: "60px",
    width: "auto",
    display: "block",
    margin: "0 auto",
    objectFit: "contain",
  }}
      width="640"
      height="270"
      data-path="images/clients/Group 9.png"
    />
  </Card>

  <Card>
    <img
      src="https://mintcdn.com/withseismic/YriZh7rrEtBJQiT3/images/clients/Group%2010.png?fit=max&auto=format&n=YriZh7rrEtBJQiT3&q=85&s=62431297c70fa5052aced448db279e0f"
      alt="MIT"
      style={{
    height: "60px",
    width: "auto",
    display: "block",
    margin: "0 auto",
    objectFit: "contain",
  }}
      width="640"
      height="270"
      data-path="images/clients/Group 10.png"
    />
  </Card>

  <Card>
    <img
      src="https://mintcdn.com/withseismic/YriZh7rrEtBJQiT3/images/clients/Group%2011.png?fit=max&auto=format&n=YriZh7rrEtBJQiT3&q=85&s=74e39944803f4cc469c9146846dcc53c"
      alt="Very"
      style={{
    height: "60px",
    width: "auto",
    display: "block",
    margin: "0 auto",
    objectFit: "contain",
  }}
      width="640"
      height="270"
      data-path="images/clients/Group 11.png"
    />
  </Card>

  <Card>
    <img
      src="https://mintcdn.com/withseismic/YriZh7rrEtBJQiT3/images/clients/Group%2014.png?fit=max&auto=format&n=YriZh7rrEtBJQiT3&q=85&s=e949d25fcb92f542be96315f418e3825"
      alt="Snacker.ai"
      style={{
    height: "60px",
    width: "auto",
    display: "block",
    margin: "0 auto",
    objectFit: "contain",
  }}
      width="640"
      height="270"
      data-path="images/clients/Group 14.png"
    />
  </Card>
</CardGroup>

## What Makes Our Clients Successful?

<Info>
  Every client testimonial above represents a real engineering partnership where we focused on business outcomes, not just technical deliverables.
</Info>

**Common Themes Across Success Stories**:

1. **Fast Communication & Iteration** - Allison @ Contra highlighted our speed and efficiency. We work in rapid cycles with daily updates.

2. **Exceeding Expectations** - We don't just build what's requested - we propose improvements and optimizations that deliver better outcomes.

3. **Production-Ready Code** - From 30,000-user Chrome extensions to revenue-driving platforms, everything we ship is built for scale.

4. **Domain Expertise** - Whether it's browser automation, LLM workflows, or Chrome extensions, we bring specialized knowledge to every project.

5. **Business Impact Focus** - We measure success by business metrics: user growth, revenue impact, time saved, costs reduced.

## Why Clients Choose WithSeismic

<CardGroup cols={2}>
  <Card title="Real Production Experience" icon="code">
    15+ years shipping code that runs in production. From Chrome extensions with 30,000+ users to systems driving 60% of company revenue.
  </Card>

  <Card title="Senior-Level Engineering" icon="brain">
    No juniors, no outsourcing. Doug Silkstone personally leads all development with 15+ years of experience.
  </Card>

  <Card title="Fast Shipping Velocity" icon="bolt">
    Most projects delivered in 2-6 weeks. Broken prototypes to production in 6 weeks. First automation tool in 2 weeks.
  </Card>

  <Card title="Business-First Mindset" icon="chart-mixed">
    We figure out what needs to be built to solve your business problem, not just what you ask for.
  </Card>
</CardGroup>

## Common Client Outcomes

Based on 56+ projects delivered, here's what clients typically experience:

<Table>
  <TableHeader>
    <TableRow>
      <TableCell>Metric</TableCell>
      <TableCell>Month 1</TableCell>
      <TableCell>Month 3</TableCell>
      <TableCell>Month 6</TableCell>
    </TableRow>
  </TableHeader>

  <TableBody>
    <TableRow>
      <TableCell>Revenue Velocity</TableCell>
      <TableCell>1.5x baseline</TableCell>
      <TableCell>3x baseline</TableCell>
      <TableCell>10x+ baseline</TableCell>
    </TableRow>

    <TableRow>
      <TableCell>Time Savings</TableCell>
      <TableCell>30% reduction</TableCell>
      <TableCell>60% reduction</TableCell>
      <TableCell>90%+ reduction</TableCell>
    </TableRow>

    <TableRow>
      <TableCell>Team Capacity</TableCell>
      <TableCell>+50%</TableCell>
      <TableCell>+200%</TableCell>
      <TableCell>+500%</TableCell>
    </TableRow>

    <TableRow>
      <TableCell>ROI</TableCell>
      <TableCell>Positive</TableCell>
      <TableCell>10-20x return</TableCell>
      <TableCell>50x+ return</TableCell>
    </TableRow>
  </TableBody>
</Table>

## Ready to Join These Success Stories?

<Warning>
  **Limited Availability**: We work on a limited number of projects at a time to ensure quality. Current availability for new projects starting in 2-3 weeks.
</Warning>

<CardGroup cols={2}>
  <Card title="See More Case Studies" icon="chart-line" href="/case-studies/introduction">
    Explore detailed breakdowns of Chrome extensions, MVPs, LLM workflows, and browser automation projects.
  </Card>

  <Card title="Book a Discovery Call" icon="phone" href="/contact">
    30-minute consultation to discuss your project and see if we're the right fit. No pressure, no sales pitch.
  </Card>
</CardGroup>

## Frequently Asked Questions

<AccordionGroup>
  <Accordion title="How do I know if WithSeismic is right for my project?">
    Best fit for SaaS companies and marketplaces doing $300K-$5M ARR with revenue problems that require custom engineering. If you have manual work holding you back from scaling, we can help.

    [Book a discovery call](/contact) to discuss your specific situation.
  </Accordion>

  <Accordion title="What's your typical project timeline?">
    Most projects deliver initial results in 2-6 weeks:

    * **2-week Sprint**: One major automation tool
    * **4-week System**: Multiple connected tools
    * **6-week MVP**: Full platform from prototype to production

    Contra's extension took 8 weeks. Snacker.ai went from broken prototype to revenue in 6 weeks.
  </Accordion>

  <Accordion title="Do you provide ongoing support after launch?">
    Yes. We deliver production-ready systems with documentation and can provide ongoing maintenance if needed. Most tools are built to run autonomously.

    Many clients continue month-to-month for continuous optimization and new features (like our Contra partnership).
  </Accordion>

  <Accordion title="What if my project is different from these case studies?">
    Every project starts unique. These case studies show our approach: understand the business problem, build the right solution, deliver measurable results.

    Whether it's Chrome extensions, LLM workflows, browser automation, or custom tools - we adapt to your needs.
  </Accordion>

  <Accordion title="How do I leave a review?">
    If you've worked with us, we'd love your feedback:

    * Email your testimonial to [hello@withseismic.com](mailto:hello@withseismic.com)
    * Include your name, title, company, and project details
    * Optional: Include specific metrics or outcomes

    We feature the best client testimonials on this page and in our marketing materials (with your permission).
  </Accordion>
</AccordionGroup>

***

<Note>
  **Looking for specific examples?** Check out our [Case Studies](/case-studies/introduction) for detailed technical breakdowns, or [contact us](/contact) to discuss your project.
</Note>

**WithSeismic** - Trusted by leading brands to deliver production-ready engineering solutions that drive real business results.
