Merge version_1 into main
Merge version_1 into main
This commit was merged in pull request #1.
This commit is contained in:
@@ -62,7 +62,7 @@ export default function AboutPage() {
|
||||
},
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-vector/general-business-invoice-template_23-2148959395.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-vector/general-business-invoice-template_23-2148959395.jpg?_wi=2"
|
||||
imageAlt="Visión de Gextras - Plataforma de conexión hospitalaria"
|
||||
mediaAnimation="blur-reveal"
|
||||
testimonials={[
|
||||
@@ -71,28 +71,28 @@ export default function AboutPage() {
|
||||
handle: "@gextras_platform",
|
||||
testimonial: "Cada conexión que facilitamos es una oportunidad real. Cada empresa servida es confianza ganada. Cada trabajador beneficiado es éxito compartido.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-nerdy-waitress-work_329181-2082.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-nerdy-waitress-work_329181-2082.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
name: "Transparencia",
|
||||
handle: "@gextras_values",
|
||||
testimonial: "Creemos en operaciones justas y comunicación clara. No hay sorpresas, solo soluciones que funcionan.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/african-american-woman-overalls-beret-against-wooden-wall_627829-6901.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/african-american-woman-overalls-beret-against-wooden-wall_627829-6901.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
name: "Innovación",
|
||||
handle: "@gextras_tech",
|
||||
testimonial: "Construimos tecnología que escucha y aprende. Nuestros sistemas evolucionan con las necesidades reales del sector.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/3-young-workers-office_1301-5371.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/3-young-workers-office_1301-5371.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
name: "Impacto Social",
|
||||
handle: "@gextras_impact",
|
||||
testimonial: "Generamos empleo flexible, inclusivo y digno. Empoderamos trabajadores y simplificamos la vida de empresarios.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiley-woman-doing-pottery_23-2148944912.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiley-woman-doing-pottery_23-2148944912.jpg?_wi=2",
|
||||
},
|
||||
]}
|
||||
testimonialRotationInterval={5000}
|
||||
@@ -123,21 +123,21 @@ export default function AboutPage() {
|
||||
id: 1,
|
||||
title: "Velocidad sin Sacrificar Calidad",
|
||||
description: "Conectamos talento en minutos sin comprometer verificaciones rigurosas. La rapidez y la confiabilidad no son contradictorias en Gextras.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-people-working-together-office_23-2149307826.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-people-working-together-office_23-2149307826.jpg?_wi=2",
|
||||
imageAlt: "Equipo trabajando en velocidad y calidad",
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
title: "Oportunidad Equitativa",
|
||||
description: "Creemos que todos mereces acceso a trabajos dignos y flexibles. Nuestro sistema prioriza la igualdad de acceso para todos los trabajadores.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/chef-working-together-professional-kitchen_23-2149727979.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/chef-working-together-professional-kitchen_23-2149727979.jpg?_wi=2",
|
||||
imageAlt: "Ambiente inclusivo de trabajo colaborativo",
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
title: "Transparencia Radical",
|
||||
description: "Sin comisiones ocultas, sin sorpresas. Cada parte de nuestro servicio está documentada, clara y accesible para todos.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/store-mockup-device-used-as-advertising_482257-76227.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/store-mockup-device-used-as-advertising_482257-76227.jpg?_wi=2",
|
||||
imageAlt: "Transparencia en procesos y comunicación",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -1,24 +1,57 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Mulish } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Mulish } from "next/font/google";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant",
|
||||
subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Webild components 2",
|
||||
description: "Generated by create next app",
|
||||
};
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const mulish = Mulish({
|
||||
variable: "--font-mulish",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Gextras - Plataforma Inteligente de Talento Hospitalario",
|
||||
description: "Conecta empresas de eventos, restaurantes y hoteles con personal calificado en segundos. Control, velocidad y confianza en tu gestión de personal.",
|
||||
keywords: "plataforma hospitalaria, gestión de personal, staff temporal, trabajadores evento, bolsa de empleo, personal de catering, workers on demand, soluciones hospitalarias",
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
openGraph: {
|
||||
title: "Gextras - Talento Hospitalario Instantáneo",
|
||||
description: "La plataforma que revoluciona cómo empresas de hospitalidad contratan y trabajadores encuentran oportunidades.",
|
||||
url: "https://gextras.com",
|
||||
siteName: "Gextras",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-vector/general-business-invoice-template_23-2148959395.jpg",
|
||||
alt: "Gextras - Dashboard inteligente de gestión de personal",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Gextras - Revolución Hospitalaria",
|
||||
description: "Conecta talento con oportunidades en segundos. Plataforma inteligente para empresas y trabajadores.",
|
||||
images: ["http://img.b2bpic.net/free-vector/general-business-invoice-template_23-2148959395.jpg"],
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -27,7 +60,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${mulish.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${mulish.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +74,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -64,7 +64,7 @@ export default function LoginPage() {
|
||||
},
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-vector/general-business-invoice-template_23-2148959395.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-vector/general-business-invoice-template_23-2148959395.jpg?_wi=4"
|
||||
imageAlt="Sistema seguro de acceso Gextras"
|
||||
mediaAnimation="blur-reveal"
|
||||
testimonials={[
|
||||
@@ -73,28 +73,28 @@ export default function LoginPage() {
|
||||
handle: "@cmendez_eventos",
|
||||
testimonial: "Con Gextras cubrimos nuestro evento de 200 personas en menos de 2 horas. Increíble.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-nerdy-waitress-work_329181-2082.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-nerdy-waitress-work_329181-2082.jpg?_wi=4",
|
||||
},
|
||||
{
|
||||
name: "María López",
|
||||
handle: "@mlopez_hostelera",
|
||||
testimonial: "Ganamos más flexibilidad y confianza. El sistema es tan rápido que no lo creemos.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/african-american-woman-overalls-beret-against-wooden-wall_627829-6901.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/african-american-woman-overalls-beret-against-wooden-wall_627829-6901.jpg?_wi=4",
|
||||
},
|
||||
{
|
||||
name: "Roberto García",
|
||||
handle: "@rgarcia_hotel",
|
||||
testimonial: "Hemos reducido tiempos de contratación al 80%. Gextras es imprescindible.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/3-young-workers-office_1301-5371.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/3-young-workers-office_1301-5371.jpg?_wi=4",
|
||||
},
|
||||
{
|
||||
name: "Sofía Ruiz",
|
||||
handle: "@sruiz_staff",
|
||||
testimonial: "Finalmente trabajo cuando quiero. Gextras me dio libertad y oportunidades.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiley-woman-doing-pottery_23-2148944912.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiley-woman-doing-pottery_23-2148944912.jpg?_wi=4",
|
||||
},
|
||||
]}
|
||||
testimonialRotationInterval={5000}
|
||||
@@ -127,21 +127,21 @@ export default function LoginPage() {
|
||||
id: 1,
|
||||
title: "Seguridad y Confianza",
|
||||
description: "Todos los perfiles verificados con encriptación de nivel empresarial. Protegemos tus datos personales y profesionales.",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/medical-booking-application-interface_23-2148569125.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/medical-booking-application-interface_23-2148569125.jpg?_wi=3",
|
||||
imageAlt: "Sistema de seguridad verificado",
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
title: "Soporte Profesional",
|
||||
description: "Nuestro equipo está disponible para resolver tus dudas y ayudarte a maximizar tus oportunidades en la plataforma.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/hr-employers-analyzing-candidate-cv-after-job-interview_482257-101456.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/hr-employers-analyzing-candidate-cv-after-job-interview_482257-101456.jpg?_wi=3",
|
||||
imageAlt: "Equipo de soporte dedicado",
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
title: "Tecnología Innovadora",
|
||||
description: "Algoritmos inteligentes que conectan el talento correcto con las oportunidades adecuadas en tiempo real.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-happy-woman-using-mobile-phone-text-messaging-night-home_637285-4411.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-happy-woman-using-mobile-phone-text-messaging-night-home_637285-4411.jpg?_wi=3",
|
||||
imageAlt: "Tecnología de matching inteligente",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -65,7 +65,7 @@ export default function HomePage() {
|
||||
},
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-vector/general-business-invoice-template_23-2148959395.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-vector/general-business-invoice-template_23-2148959395.jpg?_wi=1"
|
||||
imageAlt="Dashboard de gestión de personal Gextras"
|
||||
mediaAnimation="blur-reveal"
|
||||
testimonials={[
|
||||
@@ -74,28 +74,28 @@ export default function HomePage() {
|
||||
handle: "@cmendez_eventos",
|
||||
testimonial: "Con Gextras cubrimos nuestro evento de 200 personas en menos de 2 horas. Increíble.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-nerdy-waitress-work_329181-2082.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-nerdy-waitress-work_329181-2082.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
name: "María López",
|
||||
handle: "@mlopez_hostelera",
|
||||
testimonial: "Ganamos más flexibilidad y confianza. El sistema es tan rápido que no lo creemos.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/african-american-woman-overalls-beret-against-wooden-wall_627829-6901.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/african-american-woman-overalls-beret-against-wooden-wall_627829-6901.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
name: "Roberto García",
|
||||
handle: "@rgarcia_hotel",
|
||||
testimonial: "Hemos reducido tiempos de contratación al 80%. Gextras es imprescindible.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/3-young-workers-office_1301-5371.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/3-young-workers-office_1301-5371.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
name: "Sofía Ruiz",
|
||||
handle: "@sruiz_staff",
|
||||
testimonial: "Finalmente trabajo cuando quiero. Gextras me dio libertad y oportunidades.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiley-woman-doing-pottery_23-2148944912.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiley-woman-doing-pottery_23-2148944912.jpg?_wi=1",
|
||||
},
|
||||
]}
|
||||
testimonialRotationInterval={5000}
|
||||
@@ -126,21 +126,21 @@ export default function HomePage() {
|
||||
id: 1,
|
||||
title: "Empresas Publican Ofertas",
|
||||
description: "Restaurantes, hoteles y empresas de eventos crean ofertas de trabajo con detalles específicos, horarios y requerimientos en minutos.",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/medical-booking-application-interface_23-2148569125.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/medical-booking-application-interface_23-2148569125.jpg?_wi=1",
|
||||
imageAlt: "Empresas publicando ofertas de trabajo",
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
title: "Trabajadores Se Postulan",
|
||||
description: "Personal calificado accede a ofertas disponibles, revisa perfiles verificados y se postula para posiciones que se adapten a su disponibilidad.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/hr-employers-analyzing-candidate-cv-after-job-interview_482257-101456.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/hr-employers-analyzing-candidate-cv-after-job-interview_482257-101456.jpg?_wi=1",
|
||||
imageAlt: "Trabajadores explorando oportunidades",
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
title: "Contratación Instantánea",
|
||||
description: "Las empresas confirman al personal seleccionado y reciben detalles completos del trabajador. Todo se sincroniza automáticamente en tiempo real.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-happy-woman-using-mobile-phone-text-messaging-night-home_637285-4411.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-happy-woman-using-mobile-phone-text-messaging-night-home_637285-4411.jpg?_wi=1",
|
||||
imageAlt: "Confirmación instantánea de contratación",
|
||||
},
|
||||
]}
|
||||
@@ -169,14 +169,14 @@ export default function HomePage() {
|
||||
id: 1,
|
||||
title: "Acceso Instantáneo a Talento",
|
||||
description: "Encuentra y contrata personal en cuestión de horas, no días. Gextras te conecta con profesionales verificados y disponibles.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-people-working-together-office_23-2149307826.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-people-working-together-office_23-2149307826.jpg?_wi=1",
|
||||
imageAlt: "Acceso rápido a talento verificado",
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
title: "Gestión Organizada",
|
||||
description: "Gestiona ofertas, aplicantes, contratos y nóminas desde un único dashboard intuitivo. Sin papeleos, solo eficiencia.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/chef-working-together-professional-kitchen_23-2149727979.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/chef-working-together-professional-kitchen_23-2149727979.jpg?_wi=1",
|
||||
imageAlt: "Panel de control de gestión de personal",
|
||||
},
|
||||
]}
|
||||
@@ -205,14 +205,14 @@ export default function HomePage() {
|
||||
id: 1,
|
||||
title: "Flexibilidad Total",
|
||||
description: "Elige los trabajos que se adapten a tu horario. Sin contratos fijos. Tú tienes el control de tu disponibilidad.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/store-mockup-device-used-as-advertising_482257-76227.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/store-mockup-device-used-as-advertising_482257-76227.jpg?_wi=1",
|
||||
imageAlt: "Trabajador eligiendo sus propias oportunidades",
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
title: "Ingresos Confiables",
|
||||
description: "Gana dinero consistente a través de trabajos verificados y pagos garantizados. Tu experiencia vale.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/mobile-payment_1098-16079.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/mobile-payment_1098-16079.jpg?_wi=1",
|
||||
imageAlt: "Sistema de pagos seguro y rápido",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -66,7 +66,7 @@ export default function SignupPage() {
|
||||
},
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-vector/general-business-invoice-template_23-2148959395.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-vector/general-business-invoice-template_23-2148959395.jpg?_wi=3"
|
||||
imageAlt="Dashboard de gestión de personal Gextras"
|
||||
mediaAnimation="blur-reveal"
|
||||
testimonials={[
|
||||
@@ -75,28 +75,28 @@ export default function SignupPage() {
|
||||
handle: "@cmendez_eventos",
|
||||
testimonial: "Con Gextras cubrimos nuestro evento de 200 personas en menos de 2 horas. Increíble.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-nerdy-waitress-work_329181-2082.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-nerdy-waitress-work_329181-2082.jpg?_wi=3",
|
||||
},
|
||||
{
|
||||
name: "María López",
|
||||
handle: "@mlopez_hostelera",
|
||||
testimonial: "Ganamos más flexibilidad y confianza. El sistema es tan rápido que no lo creemos.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/african-american-woman-overalls-beret-against-wooden-wall_627829-6901.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/african-american-woman-overalls-beret-against-wooden-wall_627829-6901.jpg?_wi=3",
|
||||
},
|
||||
{
|
||||
name: "Roberto García",
|
||||
handle: "@rgarcia_hotel",
|
||||
testimonial: "Hemos reducido tiempos de contratación al 80%. Gextras es imprescindible.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/3-young-workers-office_1301-5371.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/3-young-workers-office_1301-5371.jpg?_wi=3",
|
||||
},
|
||||
{
|
||||
name: "Sofía Ruiz",
|
||||
handle: "@sruiz_staff",
|
||||
testimonial: "Finalmente trabajo cuando quiero. Gextras me dio libertad y oportunidades.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiley-woman-doing-pottery_23-2148944912.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiley-woman-doing-pottery_23-2148944912.jpg?_wi=3",
|
||||
},
|
||||
]}
|
||||
testimonialRotationInterval={5000}
|
||||
@@ -129,21 +129,21 @@ export default function SignupPage() {
|
||||
id: 1,
|
||||
title: "Empresas Publican Ofertas",
|
||||
description: "Restaurantes, hoteles y empresas de eventos crean ofertas de trabajo con detalles específicos, horarios y requerimientos en minutos.",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/medical-booking-application-interface_23-2148569125.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/medical-booking-application-interface_23-2148569125.jpg?_wi=2",
|
||||
imageAlt: "Empresas publicando ofertas de trabajo",
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
title: "Trabajadores Se Postulan",
|
||||
description: "Personal calificado accede a ofertas disponibles, revisa perfiles verificados y se postula para posiciones que se adapten a su disponibilidad.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/hr-employers-analyzing-candidate-cv-after-job-interview_482257-101456.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/hr-employers-analyzing-candidate-cv-after-job-interview_482257-101456.jpg?_wi=2",
|
||||
imageAlt: "Trabajadores explorando oportunidades",
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
title: "Contratación Instantánea",
|
||||
description: "Las empresas confirman al personal seleccionado y reciben detalles completos del trabajador. Todo se sincroniza automáticamente en tiempo real.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-happy-woman-using-mobile-phone-text-messaging-night-home_637285-4411.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-happy-woman-using-mobile-phone-text-messaging-night-home_637285-4411.jpg?_wi=2",
|
||||
imageAlt: "Confirmación instantánea de contratación",
|
||||
},
|
||||
]}
|
||||
@@ -172,14 +172,14 @@ export default function SignupPage() {
|
||||
id: 1,
|
||||
title: "Acceso Instantáneo a Talento",
|
||||
description: "Encuentra y contrata personal en cuestión de horas, no días. Gextras te conecta con profesionales verificados y disponibles.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-people-working-together-office_23-2149307826.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-people-working-together-office_23-2149307826.jpg?_wi=3",
|
||||
imageAlt: "Acceso rápido a talento verificado",
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
title: "Gestión Organizada",
|
||||
description: "Gestiona ofertas, aplicantes, contratos y nóminas desde un único dashboard intuitivo. Sin papeleos, solo eficiencia.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/chef-working-together-professional-kitchen_23-2149727979.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/chef-working-together-professional-kitchen_23-2149727979.jpg?_wi=3",
|
||||
imageAlt: "Panel de control de gestión de personal",
|
||||
},
|
||||
]}
|
||||
@@ -208,14 +208,14 @@ export default function SignupPage() {
|
||||
id: 1,
|
||||
title: "Flexibilidad Total",
|
||||
description: "Elige los trabajos que se adapten a tu horario. Sin contratos fijos. Tú tienes el control de tu disponibilidad.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/store-mockup-device-used-as-advertising_482257-76227.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/store-mockup-device-used-as-advertising_482257-76227.jpg?_wi=3",
|
||||
imageAlt: "Trabajador eligiendo sus propias oportunidades",
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
title: "Ingresos Confiables",
|
||||
description: "Gana dinero consistente a través de trabajos verificados y pagos garantizados. Tu experiencia vale.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/mobile-payment_1098-16079.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/mobile-payment_1098-16079.jpg?_wi=2",
|
||||
imageAlt: "Sistema de pagos seguro y rápido",
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user