"use client"; import Head from "next/head"; type SeoMetaProps = { lang: "es" | "en"; }; export default function SeoMeta({ lang }: SeoMetaProps) { const isEs = lang === "es"; const title = isEs ? "SiteMente | Implementación de IA Málaga - Chatbots para Restaurantes, Inmobiliarias, Rent a Car" : "SiteMente | AI Implementation Málaga - Chatbots for Restaurants, Real Estate, Car Rentals"; const description = isEs ? "Agencia de IA en Málaga. Chatbots y automatización para restaurantes, inmobiliarias y alquiler de coches desde €299/mes. Soporte bilingüe ES/EN. +120 clientes en Costa del Sol." : "AI agency in Málaga. Chatbots and automation for restaurants, real estate and car rentals from €299/month. Bilingual support ES/EN. +120 clients in Costa del Sol."; const keywords = isEs ? "implementación IA España, chatbot restaurantes Málaga, IA inmobiliarias Costa del Sol, automatización negocios Marbella, agencia IA España" : "AI implementation Spain, restaurant chatbot Málaga, real estate AI Costa del Sol, business automation Marbella"; const url = isEs ? "https://sitemente.com" : "https://sitemente.com/en"; const locale = isEs ? "es_ES" : "en_US"; return ( {title} ); }