From 728d0a711cd42116cc327eea973f5ab8b47d4193 Mon Sep 17 00:00:00 2001 From: Horacio Daniel Ros Date: Wed, 16 Sep 2026 11:31:28 -0300 Subject: [PATCH] =?UTF-8?q?feat:=20agregar=20nuevas=20p=C3=A1ginas=20de=20?= =?UTF-8?q?agenda=20online=20y=20sistema=20de=20turnos,=20y=20actualizar?= =?UTF-8?q?=20el=20sitemap=20con=20nuevas=20rutas?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 0 | Bin 0 -> 8 bytes .../src/app/landing/agenda-online/page.tsx | 22 ++++ .../offer-appointments/OfferContent.tsx | 121 ++++++++++++++++++ .../app/landing/offer-appointments/page.tsx | 118 +---------------- .../app/landing/sistema-de-turnos/page.tsx | 22 ++++ .../src/app/landing/turnos-online/page.tsx | 22 ++++ txclient/src/app/sitemap.xml/route.ts | 15 +++ 7 files changed, 207 insertions(+), 113 deletions(-) create mode 100644 0 create mode 100644 txclient/src/app/landing/agenda-online/page.tsx create mode 100644 txclient/src/app/landing/offer-appointments/OfferContent.tsx create mode 100644 txclient/src/app/landing/sistema-de-turnos/page.tsx create mode 100644 txclient/src/app/landing/turnos-online/page.tsx diff --git a/0 b/0 new file mode 100644 index 0000000000000000000000000000000000000000..ca9053508c38ce794241a50d536ce683f2f662f4 GIT binary patch literal 8 PcmezW&yazafr|kE5MTmE literal 0 HcmV?d00001 diff --git a/txclient/src/app/landing/agenda-online/page.tsx b/txclient/src/app/landing/agenda-online/page.tsx new file mode 100644 index 0000000..f4feebf --- /dev/null +++ b/txclient/src/app/landing/agenda-online/page.tsx @@ -0,0 +1,22 @@ +import { Metadata } from "next"; +import OfferContent from "../offer-appointments/OfferContent"; + +export const metadata: Metadata = { + title: "Agenda Online para Profesionales | Reservas Automáticas - TurnosXpress", + description: "Agendá citas online y eliminá el ida y vuelta de mensajes. Una agenda online automática, con recordatorios y reservas 24/7 para tu negocio.", + keywords: ["agenda online", "agenda digital", "agenda de citas online", "reservas online", "agenda para profesionales"], + openGraph: { + title: "Agenda Online para Profesionales | Reservas - TurnosXpress", + description: "Tu agenda online con reservas automáticas, recordatorios y gestión simple. ¡Empezá gratis!", + type: "website", + } +}; + +export default function AgendaOnlinePage() { + return ( + + ); +} diff --git a/txclient/src/app/landing/offer-appointments/OfferContent.tsx b/txclient/src/app/landing/offer-appointments/OfferContent.tsx new file mode 100644 index 0000000..f479489 --- /dev/null +++ b/txclient/src/app/landing/offer-appointments/OfferContent.tsx @@ -0,0 +1,121 @@ +import AnimatedContainer from "@components/AnimatedConainer/AnimatedContainer"; +import style from "./style.module.css"; +import HeaderConfProvider from "@core/app/components/HeaderConfProvider/HeaderConfProvider"; +import { ScrollToTop } from "@core/app/components/ScrollTop"; +import DefaultLoginAction from "@core/app/components/LoginAction/DefaultLoginAction"; +import CTABtn from "./CTABtn"; + +export interface OfferContentProps { + heroTitle: string; + heroSubtitle: string; +} + +export default function OfferContent({ heroTitle, heroSubtitle }: OfferContentProps) { + return ( + + + + + + {/* Hero Section */} +
+

{heroTitle}

+

{heroSubtitle}

+
+ +
+
+ + {/* Features Section */} +
+

Todo lo que necesitás para crecer

+
+
+
📅
+

Agenda Inteligente

+

Visualizá tus citas por día, semana o mes. Bloqueá horarios y manejá tu disponibilidad con un par de clics.

+
+
+
🔔
+

Recordatorios Automáticos

+

Reducí el ausentismo hasta un 80%. El sistema envía recordatorios automáticos a tus clientes antes de cada turno.

+
+
+
👥
+

Gestión de Colaboradores

+

Agregá a tu equipo de trabajo. Asignale a cada colaborador sus propios servicios, horarios y disponibilidad de forma individual.

+
+
+
🌐
+

Portal de Reservas Público

+

Mayor exposición. Tus servicios aparecerán en nuestro buscador público para que nuevos clientes te encuentren y reserven al instante.

+
+
+
+ + {/* Steps Section */} +
+

Recibí turnos en 4 simples pasos

+ +
+
1
+
+

Creá tu cuenta gratis

+

Registrate en segundos. Podés probar la plataforma completa sin compromisos ni tarjetas de crédito.

+
+
+ +
+
2
+
+

Configurá tu perfil

+

Personalizá tu espacio. Agregá tu logo, ubicación y una descripción atractiva para que los clientes te elijan al instante.

+
+
+ +
+
3
+
+

Definí servicios y horarios

+

¿Qué ofrecés y cuándo estás disponible? Configurá la duración de tus turnos, pausas entre clientes y tus días laborales.

+
+
+ +
+
4
+
+

¡Compartí tu enlace!

+

Te daremos un link único. Ponelo en tu biografía de Instagram, en WhatsApp o en tu web, y dejá que los turnos se agenden solos.

+
+
+
+ + {/* CTA Section */} +
+

¿Listo para modernizar tu negocio?

+

Unite a los profesionales que ya automatizaron su agenda y ganan más tiempo libre.

+ +

+ ¿Necesitás más información? Contactanos a info@turnosxpress.com.ar +

+
+ +
+ ); +} diff --git a/txclient/src/app/landing/offer-appointments/page.tsx b/txclient/src/app/landing/offer-appointments/page.tsx index 167fa3f..3a2c8f2 100644 --- a/txclient/src/app/landing/offer-appointments/page.tsx +++ b/txclient/src/app/landing/offer-appointments/page.tsx @@ -1,10 +1,5 @@ import { Metadata } from "next"; -import AnimatedContainer from "@components/AnimatedConainer/AnimatedContainer"; -import style from "./style.module.css"; -import HeaderConfProvider from "@core/app/components/HeaderConfProvider/HeaderConfProvider"; -import { ScrollToTop } from "@core/app/components/ScrollTop"; -import DefaultLoginAction from "@core/app/components/LoginAction/DefaultLoginAction"; -import CTABtn from "./CTABtn"; +import OfferContent from "./OfferContent"; export const metadata: Metadata = { title: "Ofrecé Turnos Online | Sistema de Gestión y Reservas - TurnosXpress", @@ -19,112 +14,9 @@ export const metadata: Metadata = { export default function OfferAppointmentsPage() { return ( - - - - - - {/* Hero Section */} -
-

Multiplicá tus clientes, simplificá tus turnos

-

- Olvidate del teléfono y los mensajes a deshora. Con nuestra plataforma, tus clientes pueden reservar turnos 24/7 de forma automática. Optimizá tu tiempo, reducí ausencias y llevá tu negocio al siguiente nivel. -

-
- -
-
- - {/* Features Section */} -
-

Todo lo que necesitás para crecer

-
-
-
📅
-

Agenda Inteligente

-

Visualizá tus citas por día, semana o mes. Bloqueá horarios y manejá tu disponibilidad con un par de clics.

-
-
-
🔔
-

Recordatorios Automáticos

-

Reducí el ausentismo hasta un 80%. El sistema envía recordatorios automáticos a tus clientes antes de cada turno.

-
-
-
👥
-

Gestión de Colaboradores

-

Agregá a tu equipo de trabajo. Asignale a cada colaborador sus propios servicios, horarios y disponibilidad de forma individual.

-
-
-
🌐
-

Portal de Reservas Público

-

Mayor exposición. Tus servicios aparecerán en nuestro buscador público para que nuevos clientes te encuentren y reserven al instante.

-
-
-
- - {/* Steps Section */} -
-

Recibí turnos en 4 simples pasos

- -
-
1
-
-

Creá tu cuenta gratis

-

Registrate en segundos. Podés probar la plataforma completa sin compromisos ni tarjetas de crédito.

-
-
- -
-
2
-
-

Configurá tu perfil

-

Personalizá tu espacio. Agregá tu logo, ubicación y una descripción atractiva para que los clientes te elijan al instante.

-
-
- -
-
3
-
-

Definí servicios y horarios

-

¿Qué ofrecés y cuándo estás disponible? Configurá la duración de tus turnos, pausas entre clientes y tus días laborales.

-
-
- -
-
4
-
-

¡Compartí tu enlace!

-

Te daremos un link único. Ponelo en tu biografía de Instagram, en WhatsApp o en tu web, y dejá que los turnos se agenden solos.

-
-
-
- - {/* CTA Section */} -
-

¿Listo para modernizar tu negocio?

-

Unite a los profesionales que ya automatizaron su agenda y ganan más tiempo libre.

- -

- ¿Necesitás más información? Contactanos a info@turnosxpress.com.ar -

-
- -
+ ); } diff --git a/txclient/src/app/landing/sistema-de-turnos/page.tsx b/txclient/src/app/landing/sistema-de-turnos/page.tsx new file mode 100644 index 0000000..3439e81 --- /dev/null +++ b/txclient/src/app/landing/sistema-de-turnos/page.tsx @@ -0,0 +1,22 @@ +import { Metadata } from "next"; +import OfferContent from "../offer-appointments/OfferContent"; + +export const metadata: Metadata = { + title: "Sistema de Turnos Online | Gestión de Reservas y Agenda - TurnosXpress", + description: "Un sistema de turnos online para gestionar reservas, reducir ausencias y organizar tu agenda. Automatizá tus turnos y probá TurnosXpress gratis.", + keywords: ["sistema de turnos", "gestión de turnos", "sistema de turnos online", "software de turnos", "reservas online"], + openGraph: { + title: "Sistema de Turnos Online | Gestión - TurnosXpress", + description: "Automatizá reservas y reducí ausencias con un sistema de turnos online. ¡Empezá gratis!", + type: "website", + } +}; + +export default function SistemaDeTurnosPage() { + return ( + + ); +} diff --git a/txclient/src/app/landing/turnos-online/page.tsx b/txclient/src/app/landing/turnos-online/page.tsx new file mode 100644 index 0000000..09435f5 --- /dev/null +++ b/txclient/src/app/landing/turnos-online/page.tsx @@ -0,0 +1,22 @@ +import { Metadata } from "next"; +import OfferContent from "../offer-appointments/OfferContent"; + +export const metadata: Metadata = { + title: "Turnos Online | Reservas Automáticas para tu Negocio - TurnosXpress", + description: "Ofrecé turnos online a tus clientes y dejá de coordinar por mensaje. Reservas automáticas, recordatorios y gestión simple con TurnosXpress.", + keywords: ["turnos online", "sacar turno online", "reservas de turnos", "turnos web", "turnos para profesionales"], + openGraph: { + title: "Turnos Online | Reservas Automáticas - TurnosXpress", + description: "Ofrecé turnos online con reservas 24/7 y recordatorios automáticos. ¡Empezá gratis!", + type: "website", + } +}; + +export default function TurnosOnlinePage() { + return ( + + ); +} diff --git a/txclient/src/app/sitemap.xml/route.ts b/txclient/src/app/sitemap.xml/route.ts index 85f5cd4..993f6f7 100644 --- a/txclient/src/app/sitemap.xml/route.ts +++ b/txclient/src/app/sitemap.xml/route.ts @@ -92,6 +92,21 @@ export async function GET() { changeFrequency: "weekly", priority: 0.9, }, + { + url: `${baseUrl}/landing/sistema-de-turnos`, + changeFrequency: "weekly", + priority: 0.9, + }, + { + url: `${baseUrl}/landing/agenda-online`, + changeFrequency: "weekly", + priority: 0.9, + }, + { + url: `${baseUrl}/landing/turnos-online`, + changeFrequency: "weekly", + priority: 0.9, + }, ]; // Category exploration pages