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
+21
View File
@@ -0,0 +1,21 @@
import type { MetadataRoute } from "next";
const siteUrl =
process.env.NEXT_PUBLIC_SITE_URL ?? "http://localhost:3000";
const PUBLIC_ROUTES = [
"/",
"/video-maker",
"/image-maker",
"/templates",
"/pricing",
] as const;
export default function sitemap(): MetadataRoute.Sitemap {
const lastModified = new Date();
return PUBLIC_ROUTES.map((path) => ({
url: new URL(path, siteUrl).toString(),
lastModified,
}));
}