Integrates www.gigafibre.ca (React/Vite) into the monorepo. Full git history accessible via `git log -- apps/website/`. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
195 lines
5.8 KiB
TypeScript
195 lines
5.8 KiB
TypeScript
export type SearchItem = {
|
|
id: string;
|
|
title: string;
|
|
url: string;
|
|
type: "Page" | "Business" | "Support" | "Legal";
|
|
keywords?: string[];
|
|
description?: string;
|
|
};
|
|
|
|
export const searchItems: SearchItem[] = [
|
|
// Main Pages
|
|
{
|
|
id: "home",
|
|
title: "Accueil",
|
|
url: "/",
|
|
type: "Page",
|
|
keywords: ["home", "index", "start"],
|
|
description: "Page d'accueil Targo"
|
|
},
|
|
{
|
|
id: "internet",
|
|
title: "Internet Résidentiel",
|
|
url: "/internet",
|
|
type: "Page",
|
|
keywords: ["wifi", "fibre", "vitesse", "résidentiel"],
|
|
description: "Nos forfaits internet illimités"
|
|
},
|
|
{
|
|
id: "television",
|
|
title: "Télévision",
|
|
url: "/television",
|
|
type: "Page",
|
|
keywords: ["tv", "chaînes", "câble", "hd", "4k"],
|
|
description: "Forfaits télévision et chaînes à la carte"
|
|
},
|
|
{
|
|
id: "telephone",
|
|
title: "Téléphonie Résidentielle",
|
|
url: "/telephone",
|
|
type: "Page",
|
|
keywords: ["téléphone", "ligne", "fixe", "appel"],
|
|
description: "Téléphonie résidentielle fiable"
|
|
},
|
|
|
|
// Business Pages
|
|
{
|
|
id: "business",
|
|
title: "Solutions Affaires",
|
|
url: "/business",
|
|
type: "Business",
|
|
keywords: ["entreprise", "business", "pro", "commercial"],
|
|
description: "Solutions pour entreprises"
|
|
},
|
|
{
|
|
id: "business-telephonie",
|
|
title: "Téléphonie IP Affaires",
|
|
url: "/business/telephonie",
|
|
type: "Business",
|
|
keywords: ["voip", "ip", "pbx", "nuage"],
|
|
description: "Systèmes téléphoniques pour entreprises"
|
|
},
|
|
{
|
|
id: "business-internet",
|
|
title: "Internet Affaires",
|
|
url: "/business/internet",
|
|
type: "Business",
|
|
keywords: ["fibre", "dedié", "symétrique"],
|
|
description: "Connexion internet haute performance pour entreprises"
|
|
},
|
|
{
|
|
id: "business-multilogement",
|
|
title: "Multilogement & RPA",
|
|
url: "/business/multilogement",
|
|
type: "Business",
|
|
keywords: ["immeuble", "condo", "résidence", "aînés"],
|
|
description: "Solutions pour multilogements et résidences"
|
|
},
|
|
{
|
|
id: "business-amplification",
|
|
title: "Amplification Cellulaire",
|
|
url: "/business/amplification-cellulaire",
|
|
type: "Business",
|
|
keywords: ["mobile", "signal", "réseau", "couverture"],
|
|
description: "Amélioration du signal cellulaire en entreprise"
|
|
},
|
|
{
|
|
id: "business-virtualisation",
|
|
title: "Virtualisation",
|
|
url: "/business/virtualisation",
|
|
type: "Business",
|
|
keywords: ["vm", "serveur", "virtuel"],
|
|
description: "Solutions de virtualisation"
|
|
},
|
|
{
|
|
id: "business-reseau",
|
|
title: "Réseaux Inter-sites",
|
|
url: "/business/reseau-inter-sites",
|
|
type: "Business",
|
|
keywords: ["mpls", "vpn", "site", "lan", "wan"],
|
|
description: "Interconnexion de sites d'entreprise"
|
|
},
|
|
{
|
|
id: "business-wifi",
|
|
title: "WiFi Commercial",
|
|
url: "/business/wifi",
|
|
type: "Business",
|
|
keywords: ["sans fil", "hotspot", "guest"],
|
|
description: "Solutions WiFi gérées pour entreprises"
|
|
},
|
|
{
|
|
id: "business-cablage",
|
|
title: "Câblage Structuré",
|
|
url: "/business/cablage",
|
|
type: "Business",
|
|
keywords: ["ethernet", "fibre", "cat6", "installation"],
|
|
description: "Installation de câblage structuré"
|
|
},
|
|
{
|
|
id: "business-microsoft",
|
|
title: "Microsoft 365",
|
|
url: "/business/microsoft-365",
|
|
type: "Business",
|
|
keywords: ["office", "teams", "outlook", "licence"],
|
|
description: "Licences et gestion Microsoft 365"
|
|
},
|
|
{
|
|
id: "business-sdwan",
|
|
title: "SD-WAN",
|
|
url: "/business/sd-wan",
|
|
type: "Business",
|
|
keywords: ["wan", "réseau", "gestion", "optimisation"],
|
|
description: "Solutions SD-WAN pour entreprises"
|
|
},
|
|
{
|
|
id: "business-sip",
|
|
title: "Trunking SIP",
|
|
url: "/business/sip",
|
|
type: "Business",
|
|
keywords: ["sip", "trunk", "voip"],
|
|
description: "Lignes SIP pour IP-PBX"
|
|
},
|
|
{
|
|
id: "business-cloud",
|
|
title: "Services Cloud",
|
|
url: "/business/cloud",
|
|
type: "Business",
|
|
keywords: ["nuage", "hébergement", "serveur"],
|
|
description: "Solutions d'infrastructure cloud"
|
|
},
|
|
{
|
|
id: "business-vpn",
|
|
title: "VPN Entreprise",
|
|
url: "/business/vpn",
|
|
type: "Business",
|
|
keywords: ["sécurité", "télétravail", "accès à distance"],
|
|
description: "Accès distant sécurisé"
|
|
},
|
|
{
|
|
id: "business-securite",
|
|
title: "Sécurité Réseau",
|
|
url: "/business/securite",
|
|
type: "Business",
|
|
keywords: ["firewall", "pare-feu", "cybersécurité", "menace"],
|
|
description: "Protection et sécurité des réseaux"
|
|
},
|
|
|
|
// Support & Info
|
|
{
|
|
id: "support",
|
|
title: "Support Technique",
|
|
url: "/support",
|
|
type: "Support",
|
|
keywords: ["aide", "contact", "problème", "panne"],
|
|
description: "Obtenez de l'aide rapidement"
|
|
},
|
|
{
|
|
id: "actualites",
|
|
title: "Actualités",
|
|
url: "/actualites",
|
|
type: "Support",
|
|
keywords: ["nouvelles", "blog", "presse"],
|
|
description: "Dernières nouvelles de Targo"
|
|
},
|
|
|
|
// External
|
|
{
|
|
id: "client-portal",
|
|
title: "Espace Client",
|
|
url: "https://store.targo.ca/clients",
|
|
type: "Support",
|
|
keywords: ["login", "connexion", "facture", "compte"],
|
|
description: "Accédez à votre compte client"
|
|
}
|
|
];
|