61 lines
2.0 KiB
TypeScript
61 lines
2.0 KiB
TypeScript
// ─── 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;
|