--- import { Image } from "astro:assets"; import product5 from "../images/features-image.avif"; const title: string = "Why Choose ScrewFast?"; const subTitle: string = "Transform your ideas into tangible results with ScrewFast tools. Whether you're starting with a sketch on a napkin or diving into a comprehensive construction project, our tools are engineered to help you build with confidence."; const benefits: string[] = [ "Robust and reliable tools for long-lasting performance.", "Innovative solutions tailored to modern construction needs.", "Customer support dedicated to your project's success.", ]; const ListItemMarker: string = ``; ---
Mockup of floating boxes

{title}

{subTitle}

    { benefits.map((item) => (
  • {item}
  • )) }