Add torob related pages

This commit is contained in:
marzban-dev
2026-05-24 12:52:37 +03:30
parent b6cc9bb715
commit fdb4261434
4 changed files with 128 additions and 8 deletions
+37
View File
@@ -0,0 +1,37 @@
<script setup lang="ts">
useSeoMeta({
title: "شرایط و روش های پرداخت",
});
</script>
<template>
<main
dir="rtl"
class="container py-16 lg:py-20"
>
<section class="mx-auto max-w-4xl">
<header class="mb-8 lg:mb-10">
<h1 class="typo-h-5 md:typo-h-4 text-black mb-4">شرایط و روش های پرداخت</h1>
</header>
<div class="space-y-5">
<section class="rounded-3xl border border-slate-200 bg-white p-5 md:p-7">
<div class="space-y-3" aria-hidden="true">
<!-- Add content here later -->
<div class="h-4 w-2/3 rounded bg-slate-100"></div>
<div class="h-4 w-full rounded bg-slate-100"></div>
<div class="h-4 w-5/6 rounded bg-slate-100"></div>
</div>
</section>
<section class="rounded-3xl border border-slate-200 bg-white p-5 md:p-7">
<div class="h-24 rounded-2xl border border-dashed border-slate-200 bg-slate-50" aria-hidden="true"></div>
</section>
<section class="rounded-3xl border border-slate-200 bg-white p-5 md:p-7">
<div class="h-24 rounded-2xl border border-dashed border-slate-200 bg-slate-50" aria-hidden="true"></div>
</section>
</div>
</section>
</main>
</template>