update home page

This commit is contained in:
2026-06-18 16:32:31 +05:30
parent d9cc83aa82
commit 8e0d704438
57 changed files with 2813 additions and 301 deletions

60
data/site-config.ts Normal file
View File

@@ -0,0 +1,60 @@
// ─── Site Configuration ──────────────────────────────────────────────
// Single source for branding, contact info, social links, and footer data.
// Shared by: Footer, ContactFormSection, Navbar (mobile), TopBar.
// ─────────────────────────────────────────────────────────────────────
export interface SocialLink {
platform: string;
url: string;
icon: "facebook" | "x-twitter" | "linkedin" | "youtube";
}
export interface FooterLink {
label: string;
href: string;
}
export const siteConfig = {
name: "Aiero",
tagline: "AI Agency",
// Contact
phone: "+1 800 529 10 37",
phoneRaw: "+18005291037",
email: "aiero@mail.co",
address: {
line1: "USA, New York 1060",
line2: "Str. First Avenue 1",
},
// Social
socials: [
{ platform: "Facebook", url: "https://www.facebook.com/", icon: "facebook" },
{ platform: "X", url: "https://twitter.com/", icon: "x-twitter" },
{ platform: "LinkedIn", url: "https://www.linkedin.com/", icon: "linkedin" },
{ platform: "Youtube", url: "https://www.youtube.com/", icon: "youtube" },
] as SocialLink[],
// Footer link columns
footerLinks: {
company: [
{ label: "About Us", href: "/about" },
{ label: "Creative Team", href: "#" },
{ label: "Pricing Plans", href: "#" },
{ label: "FAQ", href: "#" },
] as FooterLink[],
services: [
{ label: "Services Page", href: "/services" },
{ label: "AI Systems", href: "#" },
{ label: "Deep Learning", href: "#" },
{ label: "Neural Networks", href: "#" },
] as FooterLink[],
},
// Legal
copyright: "©Aiero 2025. All rights reserved.",
legalLinks: [
{ label: "Terms of use", href: "#" },
{ label: "Privacy Policy", href: "#" },
] as FooterLink[],
} as const;