diff --git a/src/components/FeaturesStats2.astro b/src/components/FeaturesStats2.astro
new file mode 100644
index 0000000..db7d2c9
--- /dev/null
+++ b/src/components/FeaturesStats2.astro
@@ -0,0 +1,56 @@
+---
+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 = ``;
+---
+
+
+
+
+
+
+
+
+
+
+
+ {title}
+
+
+ {subTitle}
+
+
+
+ {
+ benefits.map((item) => (
+
+
+
+
+ {item}
+
+
+ ))
+ }
+
+
+
+
+
diff --git a/src/components/TestimonialsSection2.astro b/src/components/TestimonialsSection2.astro
new file mode 100644
index 0000000..8bceb65
--- /dev/null
+++ b/src/components/TestimonialsSection2.astro
@@ -0,0 +1,94 @@
+---
+// Import the necessary dependencies from individual component files
+import AvatarTestimonialSection2 from "./ui/avatars/AvatarTestimonialSection2.astro";
+
+// Variables for customization of the LoginModal Component
+// Main heading
+const title: string = "What Our Customers Say";
+
+/* TypeScript type for product. */
+type Testimonial = {
+ content: string;
+ author: string;
+ role: string;
+ avatarSrc: string;
+ avatarAlt: string;
+};
+
+const testimonials: Testimonial[] = [
+ {
+ content:
+ " \"Since switching to ScrewFast's hardware tools, the efficiency on our construction sites has skyrocketed. The durability of the hex bolts and precision of the machine screws are simply unmatched. It's refreshing to work with a company that truly understands the daily demands of the industry.\" ",
+ author: "Jason Clark",
+ role: "Site Foreman | TopBuild",
+ avatarSrc:
+ "https://images.unsplash.com/photo-1500648767791-00dcc994a43e?q=80&w=1374&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=facearea&facepad=2&w=320&h=320&q=80",
+ avatarAlt: "Image Description",
+ },
+ {
+ content:
+ " \"As an interior designer, I'm always looking for high-quality materials and tools that help bring my visions to life. ScrewFast's mixed screws assortment has been a game-changer for my projects, providing the perfect blend of quality and variety. The outstanding customer support was just the cherry on top!\" ",
+ author: "Maria Gonzalez",
+ role: "Interior Designer | Creative Spaces",
+ avatarSrc:
+ "https://images.unsplash.com/photo-1544005313-94ddf0286df2?q=80&w=1376&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",
+ avatarAlt: "Image Description",
+ },
+ {
+ content:
+ " \"I’ve been a professional carpenter for over 15 years, and I can sincerely say that ScrewFast’s tap bolts and nuts are some of the best I've used. They grip like no other, and I have full confidence in every joint and fixture. Plus, the service is impeccable – they truly care about my project's success.\" ",
+ author: "Richard Kim",
+ role: "Master Carpenter | WoodWright",
+ avatarSrc:
+ "https://images.unsplash.com/photo-1474176857210-7287d38d27c6?q=80&w=1470&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",
+ avatarAlt: "Image Description",
+ },
+];
+---
+
+