Files
havaran/src/app/documents/page.tsx
T
Alireza HassaniandCursor ccf8817b26 Add SEO metadata and fix mobile horizontal overflow.
Prevent homepage layout shift on small screens by constraining the hero aspect box and service/product carousels.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-08-09 17:44:15 +03:30

48 lines
1.4 KiB
TypeScript

import { DocumentsGallery } from "@/components/DocumentsGallery";
import { Footer } from "@/components/Footer";
import { Header } from "@/components/Header";
import { PageHero } from "@/components/PageShared";
import { documentsCerts, documentsSatisfaction } from "@/data/documents";
import type { Metadata } from "next";
import { pageMetadata } from "@/lib/seo";
export const metadata: Metadata = pageMetadata({
title: "مدارک",
description: "گواهینامه‌ها و رضایتمندی‌های مشتریان رسام تجارت هواران",
path: "/documents",
});
export default function DocumentsPage() {
return (
<>
<Header />
<main>
<PageHero
title="مدارک"
titleEn="DOCUMENTS"
breadcrumb={[
{ label: "صفحه اصلی", href: "/" },
{ label: "مدارک", href: "/documents" },
]}
/>
<section className="section">
<div className="container-page">
<DocumentsGallery items={documentsCerts} />
</div>
</section>
<section className="section section-gray">
<div className="container-page">
<div className="section-head">
<h2>رضایتمندی ها</h2>
</div>
<DocumentsGallery items={documentsSatisfaction} />
</div>
</section>
</main>
<Footer />
</>
);
}