<?php
namespace App\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
class LegalController extends AbstractController
{
#[Route('/seller-agreement', name: 'legal_seller_agreement', methods: ['GET'])]
public function sellerAgreement(): Response
{
return $this->render('legal/seller_agreement.html.twig');
}
#[Route('/privacy', name: 'legal_privacy', methods: ['GET'])]
public function privacy(): Response
{
return $this->render('legal/privacy.html.twig');
}
}