Files
tenext-next/data/site-config.ts
2026-07-30 12:58:31 +05:30

69 lines
2.0 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
// ─── 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: "AI Agency",
// Contact
phone: "+1 800 529 10 37",
phoneRaw: "+18005291037",
email: "tenext@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: "©tenext 2025. All rights reserved.",
legalLinks: [
{ label: "Terms of use", href: "#" },
{ label: "Privacy Policy", href: "#" },
] as FooterLink[],
} as const;