diff --git a/src/app/(nav-bar)/index.tsx b/src/app/(nav-bar)/index.tsx index 815dde1..351c7f1 100644 --- a/src/app/(nav-bar)/index.tsx +++ b/src/app/(nav-bar)/index.tsx @@ -1,6 +1,7 @@ 'use client' import { Button } from '@/components/button' import Image from 'next/image' +import Link from 'next/link' import { HiBars3 } from 'react-icons/hi2' import { ContactIcon, ShoppingCartIcon } from '@/assets/icons' import { MobileMenu } from './mobile-menu' @@ -14,15 +15,17 @@ export type RoutesProps = Array<{ label: string to: string sub?: Array<{ label: string; to: string }> + target?: string }> const routes: RoutesProps = [ { label: 'Tienda', to: 'https://shop.actualizatucarro.com/', + target: '_blank' }, { label: 'Como comprar', to: '/como-comprar' }, - { label: 'Blog', to: 'https://actualizatucarro.blogspot.com' }, + { label: 'Blog', to: 'https://actualizatucarro.blogspot.com', target: '_blank' }, { label: 'Nosotros', to: '/about-us' }, ] @@ -58,16 +61,17 @@ export function NavBar() { />