tenext redesign

This commit is contained in:
2026-08-03 14:42:01 +05:30
parent 1e3f225bed
commit 6625bb9018
78 changed files with 2798 additions and 859 deletions

View File

@@ -3,6 +3,8 @@
// Shared by: Footer, ContactFormSection, Navbar (mobile), TopBar.
// ─────────────────────────────────────────────────────────────────────
import { services } from "@/data/site-content";
export interface SocialLink {
platform: string;
url: string;
@@ -16,8 +18,13 @@ export interface FooterLink {
export const siteConfig = {
name: "tenext",
legalName: "Tenext Technologies",
tagline: "Enterprise Digital Transformation",
// Canonical site URL — used for metadataBase, sitemap, robots, and JSON-LD.
// Update if the production domain differs.
url: "https://www.tenext.in",
// Contact
phone: "+91 96294 15770",
phoneRaw: "+919629415770",
@@ -27,42 +34,42 @@ export const siteConfig = {
line2: "RS Puram, Coimbatore, India",
},
// Social
// Social — set each `url` to Tenext's real profile before launch.
// Left as "#" (not template links) until official handles are provided.
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/",
url: "#",
icon: "linkedin",
},
{ platform: "Youtube", url: "https://www.youtube.com/", icon: "youtube" },
{ platform: "X", url: "#", icon: "x-twitter" },
{
platform: "Facebook",
url: "#",
icon: "facebook",
},
{ platform: "Youtube", url: "#", icon: "youtube" },
] as SocialLink[],
// Footer link columns
footerLinks: {
company: [
{ label: "About Us", href: "/about" },
{ label: "Leadership", href: "/about#team" },
{ label: "Our Teams", href: "/about#teams" },
{ 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[],
// Derived from the single services source so the footer never drifts.
services: services.map((service) => ({
label: service.title,
href: `/services#${service.id}`,
})) as FooterLink[],
},
// Legal
copyright: "©Tenext Technologies 2026. All rights reserved.",
legalLinks: [
{ label: "Terms of use", href: "#" },
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of use", href: "/terms" },
{ label: "Privacy Policy", href: "/privacy" },
] as FooterLink[],
} as const;