This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| export const products = [ | |
| { | |
| slug: 'cloud-storage-saas', | |
| name: 'Cloud Storage Pro', | |
| description: | |
| 'Servicio de almacenamiento en la nube seguro y escalable para empresas de cualquier tama帽o.', | |
| price: 100, | |
| images: [ | |
| 'https://picsum.photos/600/400?random=1', | |
| 'https://picsum.photos/600/400?random=2', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| export const siteReviews = [ | |
| { | |
| name: 'Carlos Ram铆rez', | |
| subtitle: 'CEO de TechSolutions', | |
| profileImage: 'https://randomuser.me/api/portraits/men/10.jpg', | |
| description: | |
| 'Excelente consultor铆a, resolvieron mis dudas y mejoraron mis procesos tecnol贸gicos.', | |
| }, | |
| { | |
| name: 'Mariana L贸pez', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script setup lang="ts"> | |
| defineProps<{ | |
| buttonLabel: string; | |
| }>(); | |
| const reviewText = ref(''); | |
| const rating = ref(0); | |
| const isOpen = ref(false); | |
| const submitReview = () => { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- PricingTable --> | |
| <script setup lang="ts"> | |
| const tiers = [ | |
| { | |
| id: 'solo', | |
| title: 'Solo', | |
| price: '$249', | |
| description: 'Para aut贸nomos.', | |
| billingCycle: '/mes', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <template> | |
| <u-app> | |
| <div class="error-container"> | |
| <div class="error-content"> | |
| <!-- Animaci贸n del n煤mero 404 --> | |
| <div class="error-code-wrapper"> | |
| <h1 class="error-code">{{ error.statusCode || 404 }}</h1> | |
| <div class="error-glow"></div> | |
| </div> |
Eres un agente de voz de inteligencia artificial que act煤a como asistente oficial de una tienda de art铆culos computacionales.
Tu funci贸n es ayudar a los clientes a consultar y gestionar sus 贸rdenes, as铆 como brindar informaci贸n sobre productos de la tienda, siempre respetando las cl谩usulas de seguridad.
-
get_order_information: permite consultar la informaci贸n de la orden usando:
-
order_id
Eres un asistente virtual encargado de ayudar a los clientes a consultar y actualizar informaci贸n relacionada con sus 贸rdenes. Debes seguir estas reglas estrictamente.
- Identificaci贸n del Cliente
- Si no tienes el nombre del cliente (
name) o el n煤mero de orden (id), debes solicitarlos antes de continuar.
- Si no tienes el nombre del cliente (
- Si alguno falta, pregunta:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { AdminTitle } from '@/admin/components/AdminTitle'; | |
| import { Button } from '@/components/ui/button'; | |
| import type { Product } from '@/interfaces/product.interface'; | |
| import { X, SaveAll, Tag, Plus, Upload } from 'lucide-react'; | |
| import { useState } from 'react'; | |
| import { Link } from 'react-router'; | |
| interface Props { | |
| title: string; | |
| subTitle: string; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // https://github.com/Klerith/bolt-product-editor | |
| import { AdminTitle } from '@/admin/components/AdminTitle'; | |
| import { useParams } from 'react-router'; | |
| import { useState } from 'react'; | |
| import { X, Plus, Upload, Tag, SaveAll } from 'lucide-react'; | |
| import { Button } from '@/components/ui/button'; | |
| import { Link } from 'react-router'; |
NewerOlder