"use client"; import { bannerSlides } from "@/data/heroSlides"; import React from "react"; import { Swiper, SwiperSlide } from "swiper/react"; import Link from "next/link"; import Image from "next/image"; // const brands = [ // { id: 1, src: "/images/brands/brand-1.png", width: 169, height: 56 }, // { id: 2, src: "/images/brands/brand-2.png", width: 169, height: 56 }, // { id: 3, src: "/images/brands/brand-3.png", width: 213, height: 56 }, // { id: 4, src: "/images/brands/brand-4.png", width: 187, height: 56 }, // { id: 5, src: "/images/brands/brand-5.png", width: 169, height: 56 }, // { id: 6, src: "/images/brands/brand-6.png", width: 169, height: 56 }, // { id: 7, src: "/images/brands/brand-7.png", width: 169, height: 56 }, // { id: 8, src: "/images/brands/brand-8.png", width: 168, height: 56 }, // ]; export default function Hero() { // const allBrands = [...brands, ...brands, ...brands]; return (

Bridging Opportunities Between India and Ireland

Fostering global business ventures across tech, energy, food, and logistics.

Providing expert financial consulting services to help you grow,
optimize, and thrive in today's competitive landscape

Explore Opportunities Partner With Us
{bannerSlides.map((slide) => (
banner

{slide.title}

))}
{/*
{allBrands.map((elm, i) => (
))}
*/}
); }