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:
Alireza Hassani
2026-08-09 15:54:40 +03:30
co-authored by Cursor
parent 65da23bd0f
commit c49347061c
199 changed files with 14738 additions and 93 deletions
+28
View File
@@ -0,0 +1,28 @@
import { Footer } from "@/components/Footer";
import { Header } from "@/components/Header";
import { PageHero, UpdatingNotice } from "@/components/PageShared";
export const metadata = {
title: "تهویه مطبوع | هواران",
};
export default function HvacSolutionPage() {
return (
<>
<Header />
<main>
<PageHero
title="تهویه مطبوع"
titleEn="Air Conditioning"
breadcrumb={[
{ label: "صفحه اصلی", href: "/" },
{ label: "راهکارها", href: "/solutions" },
{ label: "تهویه مطبوع", href: "/solutions/hvac" },
]}
/>
<UpdatingNotice />
</main>
<Footer />
</>
);
}