"use client"; import React from "react"; import Image from "next/image"; import { Button } from "@/components/Button"; import { Counter } from "@/components/Counter"; import { Reveal } from "@/components/Reveal"; import { TechBackground } from "@/components/TechBackground"; interface HeroProps { tag: string; title: React.ReactNode; subtitle: string; ctaPrimary: string; ctaSecondary: string; } export function Hero({ tag, title, subtitle, ctaPrimary, ctaSecondary, }: HeroProps) { return (
MB Grid Solutions Hero
{tag}

{title}

{subtitle}

); }