feat: Complete SEO optimization - meta tags, Open Graph, Twitter cards, JSON-LD structured data, keywords
This commit is contained in:
@@ -3,6 +3,35 @@
|
||||
import { useState, useEffect, useMemo } from "react";
|
||||
import Image from "next/image";
|
||||
import { motion } from "framer-motion";
|
||||
import type { Metadata } from "next";
|
||||
|
||||
// Static metadata for demos page
|
||||
export const metadata: Metadata = {
|
||||
title: "Demos | SiteMente - Webs IA para cada industria",
|
||||
description:
|
||||
"Ver demos de webs con IA para inmobiliarias, restaurantes, clínicas y servicios del hogar. Precios claros desde €390/mes.",
|
||||
keywords: [
|
||||
"demo web IA España",
|
||||
"inteligencia artificial inmobiliarias",
|
||||
"AI restaurantesdemo",
|
||||
"chatbot clínica",
|
||||
"IA servicios hogar",
|
||||
"web con AI Costa del Sol",
|
||||
],
|
||||
openGraph: {
|
||||
title: "Demos SiteMente | Webs IA por industria",
|
||||
description:
|
||||
"Ver demos de webs con IA para cada tipo de negocio. Desde €390/mes.",
|
||||
url: "https://sitemente.com/demos",
|
||||
images: [
|
||||
{
|
||||
url: "/og-image.png",
|
||||
width: 1200,
|
||||
height: 630,
|
||||
},
|
||||
],
|
||||
},
|
||||
};
|
||||
|
||||
type Language = "es" | "en";
|
||||
type Vertical = "real-estate" | "restaurant" | "clinic" | "home-services";
|
||||
|
||||
Reference in New Issue
Block a user