Fixed some wording
All checks were successful
Build and Deploy / build-and-push (push) Successful in 2m54s

This commit is contained in:
2025-12-20 00:56:32 -07:00
parent 0297d0a8ef
commit 6ca843a4f8
10 changed files with 819 additions and 387 deletions

View File

@@ -35,48 +35,135 @@ export const siteConfig = {
text: "Get Started",
href: "#contact",
},
mobileLogoText: "Atash",
},
hero: {
title: "Atash Consulting",
badge: "Accepting new clients",
mainTitle: "Building Digital Solutions That Drive Growth",
description: "Software Consulting based in Edmonton, Alberta",
subDescription: "Delivering reliable, scalable solutions tailored to your business needs.",
cta: "Start Your Project",
secondaryCta: "Explore Service",
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" },
],
},
featureCards: {
enabled: true,
services: {
badge: "What We Do",
title: "Our Services",
cards: [
{
title: "Web Development",
content: "Functional, accessible, and beautiful websites.",
variant: "primary",
icon: "heroicons:computer-desktop",
},
{
title: "Mobile App Development",
content: "iOS, Android, and cross-platform mobile applications.",
variant: "secondary",
icon: "heroicons:device-phone-mobile",
},
{
title: "DevOps",
content: "Anything from CI/CD to end-to-end UI testing.",
variant: "secondary",
icon: "heroicons:cog-6-tooth",
},
{
title: "IT Support Processes",
content:
"We provide expert technical support expertise, backed by over a decade of client support experience.",
"Expert technical support backed by over a decade of client support experience.",
variant: "primary",
icon: "heroicons:lifebuoy",
},
] as (Card & { icon: string })[],
},
whyUs: {
badge: "Why Us",
title: "Why Choose Atash Consulting?",
cards: [
{
title: "Fast Delivery",
content: "Quick turnaround without compromising quality",
variant: "primary",
},
{
title: "Built With Care",
content: "Rigorous testing and quality control processes",
variant: "secondary",
},
{
title: "Expert Support",
content: "Ongoing support and maintenance services",
variant: "accent",
},
] as Card[],
},
contact: {
title: "Contact Us",
description: "Ready to get started? Reach out to us for a consultation.",
cta: {
text: "Get in Touch",
href: "#contact",
ariaLabel: "Contact us for consultation",
},
badge: "Contact",
mainTitle: "Get In Touch",
form: {
firstName: "First Name *",
lastName: "Last Name *",
email: "Email Address *",
company: "Company",
service: "Service Needed",
budget: "Project Budget",
message: "Project Details *",
placeholders: {
firstName: "John",
lastName: "Doe",
email: "john@example.com",
company: "Your company name (optional)",
message:
"Tell me about your project requirements, timeline, and any specific needs...",
},
selectPlaceholders: {
service: "Select a service...",
budget: "Select budget range...",
},
services: [
{ value: "web-development", label: "Web Development" },
{ value: "mobile-development", label: "Mobile App Development" },
{ value: "devops", label: "DevOps" },
{ value: "it-support", label: "IT Support Processes" },
{ value: "consultation", label: "General Consultation" },
],
budgets: [
{ value: "under-5k", label: "Under $5,000" },
{ value: "5k-15k", label: "$5,000 - $15,000" },
{ value: "15k-50k", label: "$15,000 - $50,000" },
{ value: "50k-plus", label: "$50,000+" },
],
submit: "Send Message",
sending: "Sending...",
success: "Message sent successfully! We'll get back to you soon.",
error: "Error sending message. Please try again.",
},
direct: {
text: "Prefer to reach out directly?",
email: "contact@atash.dev",
},
},
footer: {
copyright: "Copyright",
rights: "All rights reserved.",
},
} as const;