37 lines
1.4 KiB
TypeScript
37 lines
1.4 KiB
TypeScript
|
|
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" },
|
||
|
|
];
|