Moved to keeping the SVGs in repo
Some checks failed
Docker Deploy / build-and-push (push) Failing after 3m7s

This commit is contained in:
2026-02-12 13:15:34 -07:00
parent b15dce4cd4
commit 62dcec8202
13 changed files with 324 additions and 793 deletions

View File

@@ -1,3 +1,5 @@
import type { IconName } from "./icons";
type Card = {
title: string;
content: string;
@@ -59,9 +61,9 @@ export const siteConfig = {
secondaryCta: "View Services",
trustedText: "Trusted expertise in",
features: [
{ icon: "heroicons:computer-desktop", text: "Web Development" },
{ icon: "heroicons:device-phone-mobile", text: "Mobile Apps" },
{ icon: "heroicons:cog-6-tooth", text: "DevOps" },
{ icon: "computer-desktop", text: "Web Development" },
{ icon: "device-phone-mobile", text: "Mobile Apps" },
{ icon: "cog-6-tooth", text: "DevOps" },
],
},
@@ -72,28 +74,28 @@ export const siteConfig = {
title: "Web Development",
content: "Functional, accessible, and beautiful websites.",
variant: "primary",
icon: "heroicons:computer-desktop",
icon: "computer-desktop",
},
{
title: "Mobile App Development",
content: "iOS, Android, and cross-platform mobile applications.",
variant: "secondary",
icon: "heroicons:device-phone-mobile",
icon: "device-phone-mobile",
},
{
title: "DevOps",
content: "From CI/CD pipelines to end-to-end automation.",
variant: "secondary",
icon: "heroicons:cog-6-tooth",
icon: "cog-6-tooth",
},
{
title: "IT Support Processes",
content:
"Expert technical guidance backed by over a decade of experience.",
variant: "primary",
icon: "heroicons:lifebuoy",
icon: "lifebuoy",
},
] as (Card & { icon: string })[],
] as (Card & { icon: IconName })[],
},
whyUs: {