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
+36
View File
@@ -0,0 +1,36 @@
export interface NavbarMenuLink {
label: string;
href: string;
}
export const VIDEO_MAKER_NAV = {
browseLabel: "Browse Templates",
browseHref: "/templates",
items: [
{ label: "Animation Videos", href: "/templates?category=animation" },
{ label: "Intros & Logos", href: "/templates?category=intros" },
{ label: "Social Media", href: "/templates?category=social" },
{ label: "Slideshow", href: "/templates?category=slideshow" },
{ label: "Video Ad Templates", href: "/templates?category=ads" },
{ label: "Music Visualisation", href: "/templates?category=music" },
{ label: "Featured Animations", href: "/templates?category=featured" },
] satisfies NavbarMenuLink[],
};
export const IMAGE_MAKER_NAV = {
browseLabel: "Browse Image Templates",
browseHref: "/image-maker",
items: [
{ label: "Social Media Graphics", href: "/image-maker?category=social" },
{ label: "Banners & Ads", href: "/image-maker?category=banners" },
{ label: "Presentations", href: "/image-maker?category=presentations" },
{ label: "Posters & Flyers", href: "/image-maker?category=posters" },
{ label: "Logo Maker", href: "/image-maker?category=logos" },
] satisfies NavbarMenuLink[],
};
export const LEARN_NAV_ITEMS: NavbarMenuLink[] = [
{ label: "Blog", href: "/blog" },
{ label: "Tutorials", href: "/tutorials" },
{ label: "Help Center", href: "/help" },
];