--- // Variables for customization of the LoginModal Component // Main heading const title: string = "Fast-Track Your Projects"; // Sub-heading text const subTitle: string = "At ScrewFast, we ensure a swift start with instant account setup. Experience the speed of construction redefined."; /* TypeScript type for testimonials. */ type Testimonial = { content: string; author: string; role: string; avatarSrc: string; }; /* An array of testimonials, each being an object that conforms to the above `Testimonial` type. */ const testimonials: Testimonial[] = [ { content: "ScrewFast dramatically boosted our project efficiency. Setup was instant, and their rapid response times are phenomenal. Truly a game-changer in hardware and construction support!", author: "Samantha Ruiz", role: "Chief Operating Officer | ConstructIt Inc.", avatarSrc: "https://images.unsplash.com/photo-1593104547489-5cfb3839a3b5?q=80&w=1453&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D8&auto=format&fit=facearea&facepad=2&w=320&h=320&q=80", }, ]; /* TypeScript type for stats. */ type StatProps = { count: string; description: string; }; /* An array of stats, each being an object that conforms to the above `StatProps` type. */ const statistics: StatProps[] = [ { count: "70k+", description: "customers equipped — from DIY to major construction firms", }, { count: "35%", description: "uptick in project efficiency with ScrewFast tools and services", }, { count: "15.3%", description: "reduction in maintenance costs reported by long-term clients", }, { count: "2x", description: "quicker assembly using innovative fastening solutions", }, ]; ---

{title}

{subTitle}

{ testimonials.map((testimonial) => (

{testimonial.content}

Image Description
{testimonial.author}
{testimonial.role}
)) }
    { statistics.map((stat, index) => (
  • {index === 1 || index === 2 ? ( ) : null} {stat.count}

    {stat.description}

  • )) }