feat: full studio build -- light theme, canvas thumbnails, i18n (fa/en)

This commit is contained in:
Soroush.Asadi
2026-05-24 17:37:21 +03:30
parent d962483359
commit c61f587767
295 changed files with 29797 additions and 265 deletions
+19
View File
@@ -0,0 +1,19 @@
import type { Metadata } from "next";
import { Pricing } from "@/components/sections/Pricing";
import { createPageMetadata } from "@/lib/metadata";
export const metadata: Metadata = createPageMetadata({
title: "Pricing",
description:
"Compare FlatRender Lite, Pro, and Business plans. Monthly or yearly billing with templates, exports, and AI tools for creators.",
path: "/pricing",
});
export default function PricingPage() {
return (
<main>
<Pricing className="pt-24" />
</main>
);
}