mirror of
https://git.meshkee.com/Meshkee-Websites/havaran.git
synced 2026-08-12 04:50:58 +04:30
Build Havaran storefront with Meshkee-backed blogs and portfolios.
Clone product, solution, and company pages from the original site and wire articles/projects to the Meshkee Website API with pagination and media from the backend CDN. Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
co-authored by
Cursor
parent
65da23bd0f
commit
c49347061c
@@ -0,0 +1,45 @@
|
||||
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";
|
||||
|
||||
export const metadata = {
|
||||
title: "مدارک | رسام تجارت هواران",
|
||||
description:
|
||||
"گواهینامهها و رضایتمندیهای مشتریان رسام تجارت هواران",
|
||||
};
|
||||
|
||||
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 />
|
||||
</>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user