"use client"; import { Button } from "@/components/ui/Button"; import { Heading, Text } from "@/components/ui/Typography"; import { useTranslation } from "@/lib/hooks/useTranslation"; import { container } from "@/lib/utils"; import Image from "next/image"; export function WoltDelivery() { const { t } = useTranslation(); return (
{/* Top wave */}
{/* Main content with background color */}
{/* Desktop Wolt logo - only visible on desktop */}
Wolt
{/* Text and image layout */}
{/* Text container - comes first on both mobile and desktop */}
{t('woltDelivery.title')} {t('woltDelivery.description')}
{/* Image container with mobile logo */}
{t('woltDelivery.altText')} {/* Mobile Wolt logo - positioned at bottom-right of image */}
Wolt
); }