Files
tenext-next/data/site-config.ts
2026-07-30 20:34:44 +05:30

69 lines
2.2 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: "tenext",
tagline: "Enterprise Digital Transformation",
// Contact
phone: "+91 96294 15770",
phoneRaw: "+919629415770",
email: "info@tenext.in",
address: {
line1: "424 Redrose Towers, DB Road",
line2: "RS Puram, Coimbatore, India",
},
// 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: "Leadership", href: "/about#team" },
{ label: "Careers", href: "/careers" },
{ label: "Contact", href: "/contacts" },
] as FooterLink[],
services: [
{ label: "Cloud & Enterprise Platforms", href: "/services#cloud-enterprise-platforms" },
{ label: "AI & Data Science", href: "/services#ai-data-science" },
{ label: "Enterprise Mobility", href: "/services#enterprise-mobility" },
{ label: "Digital Commerce", href: "/services#digital-commerce" },
] as FooterLink[],
},
// Legal
copyright: "©Tenext Technologies 2026. All rights reserved.",
legalLinks: [
{ label: "Terms of use", href: "#" },
{ label: "Privacy Policy", href: "#" },
] as FooterLink[],
} as const;