"use client"; import React from "react"; import Image from "next/image"; import { Reveal } from "@/components/Reveal"; import { TechBackground } from "@/components/TechBackground"; import { Counter } from "@/components/Counter"; interface AboutHeroProps { tagline: string; title: React.ReactNode; subtitle: string; } export function AboutHero({ tagline, title, subtitle }: AboutHeroProps) { return (
About MB Grid Solutions
{tagline}

{title}

{subtitle}

); }