All files / varjoliitokauppa/app/toimitusehdot page.tsx

100% Statements 1/1
100% Branches 0/0
100% Functions 1/1
100% Lines 1/1

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20          1x                            
'use client';
 
import { Section } from '../../components/Section';
 
export default function ToimitusehdotPage() {
  return (
    <Section variant="white" className="min-h-[50vh]">
      <h1 className="text-3xl font-black mb-8">Toimitusehdot</h1>
      <div className="prose prose-lg text-gray-600">
        <p>Tähän tulisi verkkokaupan toimitusehdot. Koska tämä on demo, emme ole lisänneet pitkää lakitekstiä.</p>
        <ul className="list-disc pl-5 mt-4 space-y-2">
          <li>Toimitusaika 2-5 arkipäivää</li>
          <li>Ilmainen palautus 14 vrk sisällä</li>
          <li>Toimitus Postilla tai Matkahuollolla</li>
        </ul>
      </div>
    </Section>
  );
}