From 7cea7b36094eff24c24ba5d2c29773097960003c Mon Sep 17 00:00:00 2001
From: Emil Gulamov <125820963+mearashadowfax@users.noreply.github.com>
Date: Sun, 11 Feb 2024 23:54:52 +0400
Subject: [PATCH] Add ClientsSection component with custom titles
A new ClientsSection component has been added, with customizable title and subTitle variables. This allows for easy customization of the section's content, providing increased flexibility. Includes relevant SVGs to represent each group of clients.
---
src/components/ClientsSection.astro | 2516 +++++++++++++++++++++++++++
1 file changed, 2516 insertions(+)
create mode 100644 src/components/ClientsSection.astro
diff --git a/src/components/ClientsSection.astro b/src/components/ClientsSection.astro
new file mode 100644
index 0000000..28ae0ac
--- /dev/null
+++ b/src/components/ClientsSection.astro
@@ -0,0 +1,2516 @@
+---
+/* `title` variable used to customise the heading. */
+const title:string = "Trusted by Industry Leaders";
+
+/* `subTitle` variable used to customise the sub-heading text. */
+const subTitle:string = "Experience the reliability chosen by industry giants.";
+
+/*
+ In the above, the title and subTitle attributes are variables part of the ClientsSection component.
+ */
+---
+
+