Files
atashdotdev/src/config/site.ts
Atridad Lahiji a33c106785
Some checks are pending
Build and Deploy / build-and-push (push) Has started running
More text changes
2025-12-22 14:48:21 -07:00

166 lines
4.4 KiB
TypeScript

type Card = {
title: string;
content: string;
variant: "primary" | "secondary" | "accent" | "neutral";
};
export const siteConfig = {
name: "Atash Consulting",
description: "Software Consulting based in Edmonton, Alberta",
header: {
logo: {
text: "Atash Consulting",
href: "/",
},
nav: [
{
text: "Home",
href: "#",
},
{
text: "Services",
href: "#services",
},
{
text: "About",
href: "#about",
},
{
text: "Contact",
href: "#contact",
},
],
cta: {
text: "Let's Talk",
href: "#contact",
},
mobileLogoText: "Atash",
},
hero: {
title: "Atash Consulting",
mainTitle: "Building Digital Solutions That Drive Growth",
description: "Software Consulting based in Edmonton, Alberta",
cta: "Discuss Your Project",
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" },
],
},
services: {
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: "From CI/CD pipelines to end-to-end automation.",
variant: "secondary",
icon: "heroicons:cog-6-tooth",
},
{
title: "IT Support Processes",
content:
"Expert technical guidance backed by over a decade of experience.",
variant: "primary",
icon: "heroicons:lifebuoy",
},
] as (Card & { icon: string })[],
},
whyUs: {
title: "Why Partner With Us?",
cards: [
{
title: "Fast Delivery",
content: "Efficient delivery without compromising quality",
variant: "primary",
},
{
title: "Built With Care",
content: "Built with rigorous testing and attention to detail",
variant: "secondary",
},
{
title: "Expert Support",
content: "Ongoing support and maintenance services",
variant: "accent",
},
] as Card[],
},
contact: {
title: "Contact Us",
cta: {
text: "Let's Talk",
href: "#contact",
ariaLabel: "Contact us for consultation",
},
mainTitle: "Let's Work Together",
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 us 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;
export type SiteConfig = typeof siteConfig;