Logo marquee

A flexible and simple to configure marquee component.

The LogoMarquee is very simple to configure, you can use any JSX as children and it will just work.

Technologies

My favourite technologies include

page.tsx
import { LogoMarquee } from "@/components/LogoMarquee";
import { Astro, Netlify, Nextjs, Tailwind, Vercel } from "@/icons/brands";
 
export default function Page() {
  return (
    <LogoMarquee
      title="Technologies"
      description="My favourite technologies include"
    >
      <Nextjs className="w-20 h-20 mx-10" />
      <Astro className="w-20 h-20 mx-10" />
      <Netlify className="w-20 h-20 mx-10" />
      <Tailwind className="w-20 h-20 mx-10" />
      <Vercel className="w-20 h-20 mx-10" />
    </LogoMarquee>
  );
}