diff --git a/src/components/FeaturesGeneral.astro b/src/components/FeaturesGeneral.astro
new file mode 100644
index 0000000..8d33405
--- /dev/null
+++ b/src/components/FeaturesGeneral.astro
@@ -0,0 +1,118 @@
+---
+// import necessary dependencies
+import { Image } from "astro:assets";
+import featureImage from "../images/features-image.avif";
+import IconBlock from "./ui/blocks/IconBlock.astro";
+
+/* `title` variable used to customise the heading. */
+const title: string = "Meeting Industry Demands";
+
+/* `subTitle` variable used to customise the sub-heading text. */
+const subTitle: string =
+ "At ScrewFast, we tackle the unique challenges encountered in the hardware and construction sectors. From cutting-edge tools to expert services, we're dedicated to helping you overcome obstacles and achieve your goals.";
+
+/*
+ In the above, the title and subTitle attributes are variables part of the FeaturesGeneral component.
+ */
+---
+
+