diff --git a/src/components/sections/HeroSection.astro b/src/components/sections/HeroSection.astro index 7c0d85b..8c5cb78 100644 --- a/src/components/sections/HeroSection.astro +++ b/src/components/sections/HeroSection.astro @@ -6,38 +6,59 @@ const statusText = process.env.STATUS_TEXT ? process.env.STATUS_TEXT : import.meta.env.STATUS_TEXT || "Accepting new clients"; -const statusColorConfig = (process.env.STATUS_COLOR - ? process.env.STATUS_COLOR - : import.meta.env.STATUS_COLOR || "green") as "green" | "yellow" | "red"; +const statusColorConfig = ( + process.env.STATUS_COLOR + ? process.env.STATUS_COLOR + : import.meta.env.STATUS_COLOR || "green" +) as "green" | "yellow" | "red"; -const statusColor = { - green: "bg-success", - yellow: "bg-warning", - red: "bg-error", -}[statusColorConfig] || "bg-success"; +const statusColor = + { + green: "bg-success", + yellow: "bg-warning", + red: "bg-error", + }[statusColorConfig] || "bg-success"; ---
-
- +
+
+
-
+
- - + + {statusText}
- -

")}> -

- -

- {siteConfig.hero.description}. {siteConfig.hero.subDescription} + +

", + )} + /> + +

+ {siteConfig.hero.description}.

- -
+ + - +
-

{siteConfig.hero.trustedText}

-
- {siteConfig.hero.features.map((feature) => ( -
- - {feature.text} -
- ))} +

+ {siteConfig.hero.trustedText} +

+
+ { + siteConfig.hero.features.map((feature) => ( +
+ + {feature.text} +
+ )) + }
diff --git a/src/config/site.ts b/src/config/site.ts index 7b85256..f366efb 100644 --- a/src/config/site.ts +++ b/src/config/site.ts @@ -42,7 +42,6 @@ export const siteConfig = { title: "Atash Consulting", mainTitle: "Building Digital Solutions That Drive Growth", description: "Software Consulting based in Edmonton, Alberta", - subDescription: "Reliable, scalable solutions tailored to your business needs.", cta: "Discuss Your Project", secondaryCta: "View Services", trustedText: "Trusted expertise in",