"use client"; import Image from "next/image"; import Link from "next/link"; const CTA_IMAGES = { main: "/images/cta/cta-01.webp", kitty: "/images/cta/cta-02.webp", doggy: "/images/cta/cta-03.webp", } as const; export function CtaSection() { return (
{/* Main CTA — Up to 45% OFF */}

Up to

45% OFF

Thousands of pet favourites

Shop Now
{/* Kitty CTA */}

Lookin for Kitty
Stuff???

Shop here
{/* Doggy CTA */}

Lookin for Doggy
Stuff???

Shop here
); }