@zyacreatives/shared 2.4.9 → 2.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/constants.d.ts +1 -0
- package/dist/constants.js +746 -465
- package/dist/schemas/product.d.ts +3 -2
- package/dist/schemas/product.js +2 -1
- package/package.json +1 -1
- package/src/constants.ts +756 -468
- package/src/schemas/product.ts +2 -1
package/src/constants.ts
CHANGED
|
@@ -597,55 +597,40 @@ export type MarketplaceCategory = {
|
|
|
597
597
|
|
|
598
598
|
export const MARKETPLACE_CATEGORIES: MarketplaceCategory[] = [
|
|
599
599
|
{
|
|
600
|
-
name: "
|
|
600
|
+
name: "Design & Illustration",
|
|
601
601
|
imgUrl:
|
|
602
602
|
"https://images.unsplash.com/photo-1581291518857-4e27b48ff24e?auto=format&fit=crop&w=800&q=80",
|
|
603
603
|
},
|
|
604
604
|
{
|
|
605
|
-
name: "
|
|
606
|
-
imgUrl:
|
|
607
|
-
"https://images.unsplash.com/photo-1516054575922-f0b8eeadec1a?auto=format&fit=crop&w=800&q=80",
|
|
608
|
-
},
|
|
609
|
-
{
|
|
610
|
-
name: "Graphics",
|
|
611
|
-
imgUrl:
|
|
612
|
-
"https://images.unsplash.com/photo-1626785774573-4b799315345d?auto=format&fit=crop&w=800&q=80",
|
|
613
|
-
},
|
|
614
|
-
{
|
|
615
|
-
name: "Photos & Video",
|
|
605
|
+
name: "Visual Media",
|
|
616
606
|
imgUrl:
|
|
617
607
|
"https://images.unsplash.com/photo-1516035069371-29a1b244cc32?auto=format&fit=crop&w=800&q=80",
|
|
618
608
|
},
|
|
619
609
|
{
|
|
620
|
-
name: "Audio",
|
|
610
|
+
name: "Audio & Music",
|
|
621
611
|
imgUrl:
|
|
622
612
|
"https://images.unsplash.com/photo-1598488035139-bdbb2231ce04?auto=format&fit=crop&w=800&q=80",
|
|
623
613
|
},
|
|
624
614
|
{
|
|
625
|
-
name: "
|
|
615
|
+
name: "Writing & Copy",
|
|
626
616
|
imgUrl:
|
|
627
|
-
"https://images.unsplash.com/photo-
|
|
617
|
+
"https://images.unsplash.com/photo-1455390582262-044cdead27d8?auto=format&fit=crop&w=800&q=80",
|
|
628
618
|
},
|
|
629
619
|
{
|
|
630
|
-
name: "
|
|
620
|
+
name: "Tools & Presets",
|
|
631
621
|
imgUrl:
|
|
632
622
|
"https://images.unsplash.com/photo-1551269901-5c5e14c25df7?auto=format&fit=crop&w=800&q=80",
|
|
633
623
|
},
|
|
634
624
|
{
|
|
635
|
-
name: "
|
|
625
|
+
name: "3D & Interactive",
|
|
636
626
|
imgUrl:
|
|
637
|
-
"https://images.unsplash.com/photo-
|
|
627
|
+
"https://images.unsplash.com/photo-1618005182384-a83a8bd57fbe?auto=format&fit=crop&w=800&q=80",
|
|
638
628
|
},
|
|
639
629
|
{
|
|
640
|
-
name: "Print
|
|
630
|
+
name: "Print-Ready Artwork",
|
|
641
631
|
imgUrl:
|
|
642
632
|
"https://images.unsplash.com/photo-1562157873-818bc0726f68?auto=format&fit=crop&w=800&q=80",
|
|
643
633
|
},
|
|
644
|
-
{
|
|
645
|
-
name: "Bundles",
|
|
646
|
-
imgUrl:
|
|
647
|
-
"https://images.unsplash.com/photo-1607344645866-eea33a4ca4eb?auto=format&fit=crop&w=800&q=80",
|
|
648
|
-
},
|
|
649
634
|
{
|
|
650
635
|
name: "Other",
|
|
651
636
|
imgUrl:
|
|
@@ -653,460 +638,763 @@ export const MARKETPLACE_CATEGORIES: MarketplaceCategory[] = [
|
|
|
653
638
|
},
|
|
654
639
|
];
|
|
655
640
|
|
|
641
|
+
|
|
656
642
|
export const CATEGORIES_MAP: Record<string, string[]> = {
|
|
657
|
-
|
|
643
|
+
"Design & Illustration": [
|
|
658
644
|
"Website Templates",
|
|
659
|
-
"
|
|
660
|
-
"
|
|
661
|
-
"
|
|
662
|
-
"
|
|
663
|
-
"
|
|
664
|
-
"
|
|
665
|
-
"Portfolio Templates",
|
|
666
|
-
"Blog Templates",
|
|
667
|
-
"E-commerce Templates",
|
|
668
|
-
"Pitch Deck Templates",
|
|
669
|
-
"Presentation Templates",
|
|
670
|
-
"Google Slides Templates",
|
|
671
|
-
"Keynote Templates",
|
|
672
|
-
"PowerPoint Templates",
|
|
673
|
-
"Canva Templates",
|
|
645
|
+
"UI Kits & Design Systems",
|
|
646
|
+
"Logo & Brand Identity",
|
|
647
|
+
"Illustrations",
|
|
648
|
+
"Icons & Icon Sets",
|
|
649
|
+
"Typography & Fonts",
|
|
650
|
+
"Social Media Templates",
|
|
674
651
|
"Email Templates",
|
|
675
|
-
"
|
|
676
|
-
"
|
|
677
|
-
"
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
"
|
|
681
|
-
"
|
|
682
|
-
"
|
|
683
|
-
"
|
|
652
|
+
"Infographics",
|
|
653
|
+
"Patterns & Backgrounds",
|
|
654
|
+
"Mockup Templates",
|
|
655
|
+
],
|
|
656
|
+
"Visual Media": [
|
|
657
|
+
"Stock Photography",
|
|
658
|
+
"Stock Video & Footage",
|
|
659
|
+
"Textures & Surfaces",
|
|
660
|
+
"Vector Graphics",
|
|
661
|
+
"Generative & AI Art",
|
|
662
|
+
"GIFs & Animated Assets",
|
|
663
|
+
"Overlays & Filters",
|
|
664
|
+
],
|
|
665
|
+
"Audio & Music": [
|
|
666
|
+
"Music Tracks",
|
|
667
|
+
"Sound Effects",
|
|
668
|
+
"Loops & Stems",
|
|
669
|
+
"Podcasts & Voiceovers",
|
|
670
|
+
"Jingles & Intros",
|
|
671
|
+
"Beats & Instrumentals",
|
|
672
|
+
"Audio Templates & Presets",
|
|
673
|
+
"ASMR & Ambient",
|
|
674
|
+
],
|
|
675
|
+
"Writing & Copy": [
|
|
676
|
+
"Blog & Article Templates",
|
|
677
|
+
"Ad & Marketing Copy",
|
|
678
|
+
"Social Media Captions",
|
|
679
|
+
"Scripts",
|
|
680
|
+
"Email Sequences",
|
|
681
|
+
"eBooks & Guides",
|
|
682
|
+
"Business Writing",
|
|
683
|
+
"Creative Writing",
|
|
684
|
+
"Website Copy",
|
|
685
|
+
],
|
|
686
|
+
"Tools & Presets": [
|
|
687
|
+
"Lightroom Presets",
|
|
688
|
+
"Photoshop Actions & Brushes",
|
|
689
|
+
"LUTs (Video Colour Grading)",
|
|
690
|
+
"Procreate Brushes & Stamps",
|
|
684
691
|
"Notion Templates",
|
|
685
|
-
"
|
|
686
|
-
"
|
|
687
|
-
"
|
|
688
|
-
"
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
"
|
|
692
|
-
"
|
|
693
|
-
"
|
|
694
|
-
"
|
|
695
|
-
"
|
|
696
|
-
"
|
|
697
|
-
"
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
"
|
|
702
|
-
"
|
|
703
|
-
"
|
|
704
|
-
"
|
|
705
|
-
"
|
|
706
|
-
"
|
|
707
|
-
"
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
"
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
"
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
"
|
|
722
|
-
"
|
|
723
|
-
"
|
|
724
|
-
"
|
|
692
|
+
"Spreadsheet Templates",
|
|
693
|
+
"Presentation Templates",
|
|
694
|
+
"AI Prompt Packs",
|
|
695
|
+
"Figma Plugins & Resources",
|
|
696
|
+
],
|
|
697
|
+
"3D & Interactive": [
|
|
698
|
+
"3D Models & Objects",
|
|
699
|
+
"Rigged & Animated Characters",
|
|
700
|
+
"Motion Graphics & VFX",
|
|
701
|
+
"3D Scenes & Environments",
|
|
702
|
+
"AR & VR Assets",
|
|
703
|
+
"Game Assets",
|
|
704
|
+
"3D Fonts & Text Effects",
|
|
705
|
+
],
|
|
706
|
+
"Print-Ready Artwork": [
|
|
707
|
+
"Wall Art & Prints",
|
|
708
|
+
"Posters & Flyers",
|
|
709
|
+
"Digital Painting & Fine Art",
|
|
710
|
+
"Stationery & Paper Goods",
|
|
711
|
+
"Apparel & Merch Designs",
|
|
712
|
+
"Packaging Design",
|
|
713
|
+
"Planner & Journal Inserts",
|
|
714
|
+
"Pattern & Surface Design",
|
|
715
|
+
],
|
|
716
|
+
"Other": [
|
|
717
|
+
"Bundles & Kits",
|
|
718
|
+
],
|
|
719
|
+
};
|
|
720
|
+
|
|
721
|
+
|
|
722
|
+
export const SUBCATEGORIES_MAP: Record<string, string[]> = {
|
|
723
|
+
// Design & Illustration
|
|
724
|
+
"Website Templates": [
|
|
725
|
+
"SaaS",
|
|
726
|
+
"Blog",
|
|
727
|
+
"Portfolio",
|
|
728
|
+
"Landing Page",
|
|
729
|
+
"E-commerce",
|
|
730
|
+
"Agency",
|
|
731
|
+
"Magazine",
|
|
732
|
+
"Tech",
|
|
733
|
+
"Startup",
|
|
734
|
+
"Minimal",
|
|
735
|
+
"Dark Mode",
|
|
736
|
+
"One Page",
|
|
737
|
+
],
|
|
738
|
+
"UI Kits & Design Systems": [
|
|
739
|
+
"Figma",
|
|
740
|
+
"Sketch",
|
|
741
|
+
"Adobe XD",
|
|
742
|
+
"Mobile",
|
|
743
|
+
"Web",
|
|
744
|
+
"Dashboard",
|
|
745
|
+
"Design Tokens",
|
|
746
|
+
"Component Library",
|
|
747
|
+
"iOS",
|
|
748
|
+
"Android",
|
|
749
|
+
],
|
|
750
|
+
"Logo & Brand Identity": [
|
|
751
|
+
"Monogram",
|
|
752
|
+
"Wordmark",
|
|
753
|
+
"Emblem",
|
|
754
|
+
"Mascot",
|
|
755
|
+
"Brand Kit",
|
|
756
|
+
"Badge",
|
|
757
|
+
"Minimalist",
|
|
758
|
+
"Vintage",
|
|
759
|
+
"Tech",
|
|
760
|
+
"Luxury",
|
|
761
|
+
"Playful",
|
|
762
|
+
],
|
|
763
|
+
"Illustrations": [
|
|
764
|
+
"Flat",
|
|
765
|
+
"Isometric",
|
|
766
|
+
"Character",
|
|
767
|
+
"Hand-Drawn",
|
|
725
768
|
"Line Art",
|
|
726
|
-
"
|
|
727
|
-
"
|
|
728
|
-
"
|
|
729
|
-
"
|
|
730
|
-
"
|
|
731
|
-
"
|
|
732
|
-
"
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
"
|
|
769
|
+
"Editorial",
|
|
770
|
+
"Scene",
|
|
771
|
+
"Abstract",
|
|
772
|
+
"Doodle",
|
|
773
|
+
"Botanical",
|
|
774
|
+
"Portrait",
|
|
775
|
+
"Conceptual",
|
|
776
|
+
],
|
|
777
|
+
"Icons & Icon Sets": [
|
|
778
|
+
"Outline",
|
|
779
|
+
"Filled",
|
|
780
|
+
"Duo-tone",
|
|
736
781
|
"3D Icons",
|
|
737
|
-
"Animated
|
|
738
|
-
"
|
|
739
|
-
"
|
|
740
|
-
"
|
|
741
|
-
"
|
|
742
|
-
"
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
"
|
|
746
|
-
"
|
|
747
|
-
"
|
|
748
|
-
"
|
|
749
|
-
"
|
|
750
|
-
"
|
|
751
|
-
"
|
|
752
|
-
"
|
|
753
|
-
"
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
"
|
|
757
|
-
"
|
|
758
|
-
"
|
|
759
|
-
"
|
|
760
|
-
"
|
|
761
|
-
"
|
|
762
|
-
"
|
|
763
|
-
"
|
|
764
|
-
"
|
|
765
|
-
"
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
"
|
|
771
|
-
"
|
|
772
|
-
"
|
|
773
|
-
"
|
|
774
|
-
"
|
|
775
|
-
"
|
|
776
|
-
"
|
|
777
|
-
"
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
"
|
|
781
|
-
"
|
|
782
|
-
"
|
|
783
|
-
"
|
|
784
|
-
"
|
|
785
|
-
"
|
|
786
|
-
"
|
|
787
|
-
"
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
"
|
|
791
|
-
"
|
|
792
|
-
"
|
|
793
|
-
"
|
|
794
|
-
"
|
|
795
|
-
"
|
|
796
|
-
"
|
|
797
|
-
"
|
|
798
|
-
"
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
"
|
|
802
|
-
"
|
|
803
|
-
"
|
|
804
|
-
"
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
"
|
|
808
|
-
"
|
|
809
|
-
"
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
"
|
|
815
|
-
"
|
|
816
|
-
"
|
|
817
|
-
"
|
|
818
|
-
"
|
|
782
|
+
"Animated",
|
|
783
|
+
"App Icons",
|
|
784
|
+
"Social Media",
|
|
785
|
+
"Tech",
|
|
786
|
+
"Business",
|
|
787
|
+
"Flat",
|
|
788
|
+
],
|
|
789
|
+
"Typography & Fonts": [
|
|
790
|
+
"Serif",
|
|
791
|
+
"Sans-Serif",
|
|
792
|
+
"Script",
|
|
793
|
+
"Display",
|
|
794
|
+
"Monospace",
|
|
795
|
+
"Handwritten",
|
|
796
|
+
"Decorative",
|
|
797
|
+
"Variable Font",
|
|
798
|
+
"Multilingual",
|
|
799
|
+
],
|
|
800
|
+
"Social Media Templates": [
|
|
801
|
+
"Instagram",
|
|
802
|
+
"Facebook",
|
|
803
|
+
"Twitter/X",
|
|
804
|
+
"LinkedIn",
|
|
805
|
+
"Pinterest",
|
|
806
|
+
"TikTok",
|
|
807
|
+
"YouTube",
|
|
808
|
+
"Stories",
|
|
809
|
+
"Reels",
|
|
810
|
+
"Carousel",
|
|
811
|
+
"Post",
|
|
812
|
+
"Cover",
|
|
813
|
+
],
|
|
814
|
+
"Email Templates": [
|
|
815
|
+
"Newsletter",
|
|
816
|
+
"Marketing",
|
|
817
|
+
"Transactional",
|
|
818
|
+
"Welcome",
|
|
819
|
+
"Promotional",
|
|
820
|
+
"HTML Email",
|
|
821
|
+
"Mailchimp",
|
|
822
|
+
"Minimal",
|
|
823
|
+
],
|
|
824
|
+
"Infographics": [
|
|
825
|
+
"Data Viz",
|
|
826
|
+
"Timeline",
|
|
827
|
+
"Process",
|
|
828
|
+
"Statistical",
|
|
829
|
+
"Comparison",
|
|
830
|
+
"Map",
|
|
831
|
+
"Editorial",
|
|
832
|
+
"Social",
|
|
833
|
+
],
|
|
834
|
+
"Patterns & Backgrounds": [
|
|
835
|
+
"Seamless",
|
|
836
|
+
"Geometric",
|
|
837
|
+
"Abstract",
|
|
838
|
+
"Floral",
|
|
839
|
+
"Ethnic",
|
|
840
|
+
"Gradient",
|
|
841
|
+
"Noise",
|
|
842
|
+
"Grid",
|
|
843
|
+
"Watercolor",
|
|
844
|
+
],
|
|
845
|
+
"Mockup Templates": [
|
|
846
|
+
"Device",
|
|
847
|
+
"Apparel",
|
|
848
|
+
"Packaging",
|
|
849
|
+
"Stationery",
|
|
850
|
+
"Outdoor",
|
|
851
|
+
"Print",
|
|
852
|
+
"Branding",
|
|
853
|
+
"Scene Creator",
|
|
854
|
+
"Flat Lay",
|
|
855
|
+
],
|
|
856
|
+
|
|
857
|
+
// Visual Media
|
|
858
|
+
"Stock Photography": [
|
|
859
|
+
"Lifestyle",
|
|
860
|
+
"Business",
|
|
861
|
+
"Nature",
|
|
862
|
+
"Architecture",
|
|
863
|
+
"Food & Drink",
|
|
864
|
+
"People",
|
|
865
|
+
"Travel",
|
|
866
|
+
"Abstract",
|
|
867
|
+
"Tech",
|
|
868
|
+
"Fashion",
|
|
869
|
+
"Editorial",
|
|
870
|
+
],
|
|
871
|
+
"Stock Video & Footage": [
|
|
872
|
+
"Aerial",
|
|
873
|
+
"Cinematic",
|
|
874
|
+
"Time-Lapse",
|
|
875
|
+
"Slow Motion",
|
|
876
|
+
"Loop",
|
|
877
|
+
"Nature",
|
|
878
|
+
"Urban",
|
|
879
|
+
"Abstract",
|
|
880
|
+
"4K",
|
|
881
|
+
"Vertical",
|
|
882
|
+
],
|
|
883
|
+
"Textures & Surfaces": [
|
|
884
|
+
"Fabric",
|
|
885
|
+
"Wood",
|
|
886
|
+
"Metal",
|
|
887
|
+
"Concrete",
|
|
888
|
+
"Paper",
|
|
889
|
+
"Stone",
|
|
890
|
+
"Leather",
|
|
891
|
+
"Grunge",
|
|
892
|
+
"Seamless",
|
|
893
|
+
"PBR",
|
|
894
|
+
],
|
|
895
|
+
"Vector Graphics": [
|
|
896
|
+
"Clipart",
|
|
897
|
+
"Character",
|
|
898
|
+
"Scene",
|
|
899
|
+
"Abstract",
|
|
900
|
+
"Nature",
|
|
901
|
+
"Business",
|
|
902
|
+
"Flat",
|
|
903
|
+
"Line Art",
|
|
904
|
+
"SVG",
|
|
905
|
+
"EPS",
|
|
906
|
+
],
|
|
907
|
+
"Generative & AI Art": [
|
|
908
|
+
"Prompt Pack",
|
|
909
|
+
"Midjourney",
|
|
910
|
+
"Stable Diffusion",
|
|
911
|
+
"DALL-E",
|
|
912
|
+
"Abstract",
|
|
913
|
+
"Portrait",
|
|
914
|
+
"Landscape",
|
|
915
|
+
"Surreal",
|
|
916
|
+
"Concept Art",
|
|
917
|
+
],
|
|
918
|
+
"GIFs & Animated Assets": [
|
|
919
|
+
"Stickers",
|
|
920
|
+
"Emoji",
|
|
921
|
+
"Loader",
|
|
922
|
+
"Background",
|
|
923
|
+
"Loop",
|
|
924
|
+
"Character",
|
|
925
|
+
"Reaction",
|
|
926
|
+
"Social Media",
|
|
927
|
+
],
|
|
928
|
+
"Overlays & Filters": [
|
|
929
|
+
"Light Leak",
|
|
930
|
+
"Film Grain",
|
|
931
|
+
"Bokeh",
|
|
932
|
+
"Glitch",
|
|
933
|
+
"Smoke",
|
|
934
|
+
"Dust",
|
|
935
|
+
"Flare",
|
|
936
|
+
"Color Grade",
|
|
937
|
+
"Cinematic",
|
|
938
|
+
],
|
|
939
|
+
|
|
940
|
+
// Audio & Music
|
|
941
|
+
"Music Tracks": [
|
|
942
|
+
"Royalty-Free",
|
|
943
|
+
"Ambient",
|
|
944
|
+
"Hip-Hop",
|
|
945
|
+
"Electronic",
|
|
946
|
+
"Jazz",
|
|
947
|
+
"Classical",
|
|
948
|
+
"Pop",
|
|
949
|
+
"Lo-Fi",
|
|
950
|
+
"Cinematic",
|
|
951
|
+
"Acoustic",
|
|
952
|
+
"R&B",
|
|
953
|
+
"Gospel",
|
|
819
954
|
"Afrobeats",
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
"
|
|
823
|
-
"
|
|
824
|
-
"
|
|
825
|
-
"
|
|
826
|
-
"
|
|
827
|
-
"
|
|
828
|
-
"
|
|
829
|
-
"
|
|
830
|
-
"
|
|
831
|
-
"
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
"
|
|
835
|
-
"
|
|
836
|
-
"
|
|
837
|
-
"
|
|
838
|
-
"
|
|
839
|
-
"
|
|
840
|
-
"
|
|
841
|
-
"
|
|
842
|
-
|
|
843
|
-
|
|
955
|
+
],
|
|
956
|
+
"Sound Effects": [
|
|
957
|
+
"UI/UX",
|
|
958
|
+
"Nature",
|
|
959
|
+
"Foley",
|
|
960
|
+
"Cinematic",
|
|
961
|
+
"Cartoon",
|
|
962
|
+
"Game",
|
|
963
|
+
"Ambient",
|
|
964
|
+
"Notification",
|
|
965
|
+
"Transition",
|
|
966
|
+
"Horror",
|
|
967
|
+
],
|
|
968
|
+
"Loops & Stems": [
|
|
969
|
+
"Drum Loop",
|
|
970
|
+
"Bass Loop",
|
|
971
|
+
"Melody Loop",
|
|
972
|
+
"Guitar Loop",
|
|
973
|
+
"Vocal Chop",
|
|
974
|
+
"Acapella",
|
|
975
|
+
"Stem Pack",
|
|
976
|
+
"BPM Tagged",
|
|
977
|
+
],
|
|
978
|
+
"Podcasts & Voiceovers": [
|
|
844
979
|
"Narration",
|
|
845
|
-
"Commercial
|
|
846
|
-
"
|
|
847
|
-
"
|
|
848
|
-
"
|
|
849
|
-
"
|
|
850
|
-
"
|
|
851
|
-
"
|
|
980
|
+
"Commercial",
|
|
981
|
+
"Explainer",
|
|
982
|
+
"Character Voice",
|
|
983
|
+
"Meditation",
|
|
984
|
+
"News Style",
|
|
985
|
+
"Male",
|
|
986
|
+
"Female",
|
|
987
|
+
"Accent",
|
|
988
|
+
],
|
|
989
|
+
"Jingles & Intros": [
|
|
990
|
+
"Logo Sting",
|
|
991
|
+
"Podcast Intro",
|
|
992
|
+
"YouTube Intro",
|
|
993
|
+
"Outro",
|
|
994
|
+
"Ad Jingle",
|
|
995
|
+
"Short",
|
|
996
|
+
"Corporate",
|
|
997
|
+
"Fun",
|
|
998
|
+
],
|
|
999
|
+
"Beats & Instrumentals": [
|
|
1000
|
+
"Trap",
|
|
1001
|
+
"Drill",
|
|
1002
|
+
"Boom Bap",
|
|
1003
|
+
"Afrobeats",
|
|
1004
|
+
"Dancehall",
|
|
1005
|
+
"Pop Beat",
|
|
1006
|
+
"Exclusive",
|
|
1007
|
+
"Leased",
|
|
1008
|
+
"Tagged",
|
|
1009
|
+
],
|
|
1010
|
+
"Audio Templates & Presets": [
|
|
1011
|
+
"DAW Template",
|
|
1012
|
+
"Ableton",
|
|
1013
|
+
"FL Studio",
|
|
1014
|
+
"Logic Pro",
|
|
1015
|
+
"Pro Tools",
|
|
1016
|
+
"VST Preset",
|
|
1017
|
+
"Mixer Chain",
|
|
1018
|
+
"Mastering",
|
|
1019
|
+
],
|
|
1020
|
+
"ASMR & Ambient": [
|
|
1021
|
+
"Nature",
|
|
852
1022
|
"White Noise",
|
|
853
|
-
"Rain
|
|
854
|
-
"
|
|
855
|
-
"
|
|
856
|
-
"
|
|
857
|
-
"
|
|
858
|
-
"
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
"
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
"
|
|
867
|
-
"
|
|
868
|
-
"
|
|
869
|
-
"
|
|
870
|
-
"
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
"
|
|
874
|
-
"
|
|
875
|
-
"FBX & OBJ Files",
|
|
876
|
-
"GLB & GLTF Files",
|
|
877
|
-
"3D Interior Scenes",
|
|
878
|
-
"3D Exterior Scenes",
|
|
879
|
-
"Fantasy World Environments",
|
|
880
|
-
"Sci-Fi Environments",
|
|
881
|
-
"Game Environments",
|
|
882
|
-
"HDRI Maps",
|
|
883
|
-
"Sky Maps",
|
|
884
|
-
"Studio Setups",
|
|
885
|
-
"Rigged Characters",
|
|
886
|
-
"Animated Characters",
|
|
887
|
-
"Human Characters",
|
|
888
|
-
"Fantasy Characters",
|
|
889
|
-
"Cartoon Characters",
|
|
890
|
-
"Game-Ready Characters",
|
|
891
|
-
"Walk Cycles",
|
|
892
|
-
"After Effects Templates",
|
|
893
|
-
"Premiere Pro Templates",
|
|
894
|
-
"Title Animations",
|
|
895
|
-
"Transitions",
|
|
896
|
-
"Lower Thirds",
|
|
897
|
-
"Particle Effects",
|
|
898
|
-
"Kinetic Typography",
|
|
899
|
-
"Explainer Animations",
|
|
900
|
-
"Sprite Sheets",
|
|
901
|
-
"Tilemaps",
|
|
902
|
-
"UI Packs",
|
|
903
|
-
"Pixel Art",
|
|
904
|
-
"Unity Assets",
|
|
905
|
-
"Unreal Engine Assets",
|
|
906
|
-
"Godot Assets",
|
|
907
|
-
"AR Filters",
|
|
908
|
-
"Instagram Filters",
|
|
909
|
-
"Spark AR Assets",
|
|
910
|
-
"VR Environments",
|
|
911
|
-
"WebXR Assets",
|
|
912
|
-
"3D Font Effects",
|
|
913
|
-
"Neon Text Effects",
|
|
914
|
-
"Metallic Text Effects",
|
|
915
|
-
"Retro 3D Text",
|
|
916
|
-
"Animated 3D Text",
|
|
917
|
-
],
|
|
918
|
-
"Presets & Tools": [
|
|
919
|
-
"Lightroom Presets",
|
|
920
|
-
"Portrait Presets",
|
|
921
|
-
"Landscape Presets",
|
|
922
|
-
"Cinematic Presets",
|
|
923
|
-
"Moody Presets",
|
|
924
|
-
"Vintage Presets",
|
|
925
|
-
"Film Presets",
|
|
926
|
-
"Bright & Airy Presets",
|
|
927
|
-
"Dark & Gritty Presets",
|
|
928
|
-
"Mobile Lightroom Presets",
|
|
929
|
-
"Photoshop Actions",
|
|
930
|
-
"Photoshop Brushes",
|
|
931
|
-
"Photo Retouching Actions",
|
|
932
|
-
"Photo Effect Actions",
|
|
933
|
-
"Texture Actions",
|
|
934
|
-
"Double Exposure Actions",
|
|
935
|
-
"Colour Grading Actions",
|
|
936
|
-
"LUTs",
|
|
937
|
-
"Cinematic LUTs",
|
|
938
|
-
"Film Emulation LUTs",
|
|
939
|
-
"Drone LUTs",
|
|
940
|
-
"DaVinci Resolve Presets",
|
|
941
|
-
"Premiere Pro Presets",
|
|
942
|
-
"Procreate Brushes",
|
|
943
|
-
"Procreate Lettering Brushes",
|
|
944
|
-
"Procreate Watercolour Brushes",
|
|
945
|
-
"Procreate Inking Brushes",
|
|
946
|
-
"Procreate Texture Brushes",
|
|
947
|
-
"Procreate Stamp Sets",
|
|
948
|
-
"Figma UI Kits",
|
|
949
|
-
"Figma Component Libraries",
|
|
950
|
-
"Figma Plugins",
|
|
951
|
-
"Figma Wireframe Kits",
|
|
952
|
-
"Figma Flow Kits",
|
|
953
|
-
"Figma Variable Sets",
|
|
954
|
-
"Midjourney Prompt Packs",
|
|
955
|
-
"ChatGPT Prompt Packs",
|
|
956
|
-
"Stable Diffusion Prompts",
|
|
957
|
-
"DALL-E Prompt Packs",
|
|
958
|
-
"AI Marketing Prompts",
|
|
959
|
-
"AI Business Prompts",
|
|
960
|
-
"AI Writing Prompts",
|
|
961
|
-
"AI Image Generation Prompts",
|
|
962
|
-
],
|
|
963
|
-
"Content & Copy": [
|
|
964
|
-
"Homepage Copy",
|
|
965
|
-
"Landing Page Copy",
|
|
966
|
-
"About Page Copy",
|
|
967
|
-
"Product Page Copy",
|
|
968
|
-
"SaaS Website Copy",
|
|
969
|
-
"Agency Website Copy",
|
|
970
|
-
"FAQ Copy",
|
|
971
|
-
"SEO Copy",
|
|
972
|
-
"Facebook Ad Copy",
|
|
973
|
-
"Google Ad Copy",
|
|
974
|
-
"Sales Page Copy",
|
|
975
|
-
"Product Descriptions",
|
|
976
|
-
"Taglines & Slogans",
|
|
977
|
-
"CTA Copy",
|
|
1023
|
+
"Rain",
|
|
1024
|
+
"Fire",
|
|
1025
|
+
"Study",
|
|
1026
|
+
"Sleep",
|
|
1027
|
+
"Meditation",
|
|
1028
|
+
"Binaural",
|
|
1029
|
+
],
|
|
1030
|
+
|
|
1031
|
+
// Writing & Copy
|
|
1032
|
+
"Blog & Article Templates": [
|
|
1033
|
+
"SEO",
|
|
1034
|
+
"Listicle",
|
|
1035
|
+
"How-To",
|
|
1036
|
+
"Opinion",
|
|
1037
|
+
"Review",
|
|
1038
|
+
"Case Study",
|
|
1039
|
+
"Thought Leadership",
|
|
1040
|
+
"Long-Form",
|
|
1041
|
+
],
|
|
1042
|
+
"Ad & Marketing Copy": [
|
|
1043
|
+
"Facebook Ads",
|
|
1044
|
+
"Google Ads",
|
|
978
1045
|
"Email Subject Lines",
|
|
979
|
-
"
|
|
980
|
-
"
|
|
981
|
-
"
|
|
982
|
-
"
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
"
|
|
986
|
-
"
|
|
987
|
-
"
|
|
988
|
-
"
|
|
989
|
-
"
|
|
990
|
-
"
|
|
991
|
-
"
|
|
992
|
-
"
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
"
|
|
996
|
-
"
|
|
997
|
-
"
|
|
998
|
-
"
|
|
999
|
-
"
|
|
1000
|
-
"
|
|
1001
|
-
"
|
|
1002
|
-
"
|
|
1003
|
-
"
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
"
|
|
1007
|
-
"
|
|
1008
|
-
"
|
|
1009
|
-
"
|
|
1010
|
-
"
|
|
1011
|
-
"
|
|
1046
|
+
"CTA Copy",
|
|
1047
|
+
"Sales Page",
|
|
1048
|
+
"Product Description",
|
|
1049
|
+
"Tagline",
|
|
1050
|
+
],
|
|
1051
|
+
"Social Media Captions": [
|
|
1052
|
+
"Instagram",
|
|
1053
|
+
"LinkedIn",
|
|
1054
|
+
"Twitter/X",
|
|
1055
|
+
"TikTok",
|
|
1056
|
+
"Hashtag Pack",
|
|
1057
|
+
"Engagement",
|
|
1058
|
+
"Brand Voice",
|
|
1059
|
+
"Story",
|
|
1060
|
+
],
|
|
1061
|
+
"Scripts": [
|
|
1062
|
+
"YouTube",
|
|
1063
|
+
"TikTok",
|
|
1064
|
+
"Podcast",
|
|
1065
|
+
"VSL",
|
|
1066
|
+
"Webinar",
|
|
1067
|
+
"Explainer",
|
|
1068
|
+
"Short Film",
|
|
1069
|
+
"Documentary",
|
|
1070
|
+
"Ad Script",
|
|
1071
|
+
],
|
|
1072
|
+
"Email Sequences": [
|
|
1073
|
+
"Welcome Series",
|
|
1074
|
+
"Nurture",
|
|
1075
|
+
"Sales Funnel",
|
|
1076
|
+
"Abandoned Cart",
|
|
1077
|
+
"Re-engagement",
|
|
1078
|
+
"Onboarding",
|
|
1079
|
+
"Cold Outreach",
|
|
1080
|
+
],
|
|
1081
|
+
"eBooks & Guides": [
|
|
1082
|
+
"Lead Magnet",
|
|
1083
|
+
"How-To",
|
|
1084
|
+
"Industry Report",
|
|
1085
|
+
"Workbook",
|
|
1086
|
+
"Playbook",
|
|
1087
|
+
"White Paper",
|
|
1088
|
+
"Tutorial",
|
|
1089
|
+
],
|
|
1090
|
+
"Business Writing": [
|
|
1091
|
+
"Proposal",
|
|
1092
|
+
"Contract Template",
|
|
1093
|
+
"Cover Letter",
|
|
1094
|
+
"Resume",
|
|
1095
|
+
"Bio",
|
|
1096
|
+
"Press Release",
|
|
1097
|
+
"Business Plan",
|
|
1012
1098
|
"Pitch Deck Copy",
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
"
|
|
1016
|
-
"
|
|
1017
|
-
"
|
|
1018
|
-
"
|
|
1019
|
-
"
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
"
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
"
|
|
1026
|
-
"
|
|
1027
|
-
"
|
|
1028
|
-
"
|
|
1029
|
-
"
|
|
1030
|
-
"
|
|
1031
|
-
"
|
|
1032
|
-
"
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
"
|
|
1038
|
-
"
|
|
1039
|
-
"
|
|
1040
|
-
"
|
|
1041
|
-
"
|
|
1042
|
-
"
|
|
1043
|
-
"
|
|
1044
|
-
"
|
|
1045
|
-
"
|
|
1099
|
+
],
|
|
1100
|
+
"Creative Writing": [
|
|
1101
|
+
"Fiction",
|
|
1102
|
+
"Poetry",
|
|
1103
|
+
"Song Lyrics",
|
|
1104
|
+
"Short Story",
|
|
1105
|
+
"Screenplay",
|
|
1106
|
+
"Fantasy",
|
|
1107
|
+
"Romance",
|
|
1108
|
+
"Thriller",
|
|
1109
|
+
],
|
|
1110
|
+
"Website Copy": [
|
|
1111
|
+
"Homepage",
|
|
1112
|
+
"About Page",
|
|
1113
|
+
"Landing Page",
|
|
1114
|
+
"Product Page",
|
|
1115
|
+
"FAQ",
|
|
1116
|
+
"SEO Copy",
|
|
1117
|
+
"SaaS",
|
|
1118
|
+
"Agency",
|
|
1119
|
+
],
|
|
1120
|
+
|
|
1121
|
+
// Tools & Presets
|
|
1122
|
+
"Lightroom Presets": [
|
|
1123
|
+
"Portrait",
|
|
1124
|
+
"Landscape",
|
|
1125
|
+
"Cinematic",
|
|
1126
|
+
"Vintage",
|
|
1127
|
+
"Moody",
|
|
1128
|
+
"Film",
|
|
1129
|
+
"Bright & Airy",
|
|
1130
|
+
"Dark & Gritty",
|
|
1131
|
+
"Mobile",
|
|
1132
|
+
"Desktop",
|
|
1133
|
+
],
|
|
1134
|
+
"Photoshop Actions & Brushes": [
|
|
1135
|
+
"Retouching",
|
|
1136
|
+
"Photo Effect",
|
|
1137
|
+
"Brush Pack",
|
|
1138
|
+
"Texture Action",
|
|
1139
|
+
"Matte Effect",
|
|
1140
|
+
"HDR",
|
|
1141
|
+
"Double Exposure",
|
|
1142
|
+
"Colour Grading",
|
|
1143
|
+
],
|
|
1144
|
+
"LUTs (Video Colour Grading)": [
|
|
1145
|
+
"Cinematic",
|
|
1146
|
+
"Film Emulation",
|
|
1147
|
+
"Drone",
|
|
1148
|
+
"Log",
|
|
1149
|
+
"Vintage",
|
|
1150
|
+
"Music Video",
|
|
1151
|
+
"Documentary",
|
|
1152
|
+
"Premiere Pro",
|
|
1153
|
+
"DaVinci Resolve",
|
|
1154
|
+
],
|
|
1155
|
+
"Procreate Brushes & Stamps": [
|
|
1156
|
+
"Lettering",
|
|
1157
|
+
"Watercolour",
|
|
1158
|
+
"Inking",
|
|
1159
|
+
"Sketching",
|
|
1160
|
+
"Texture",
|
|
1161
|
+
"Stamp Set",
|
|
1162
|
+
"Gouache",
|
|
1163
|
+
"Charcoal",
|
|
1164
|
+
],
|
|
1165
|
+
"Notion Templates": [
|
|
1166
|
+
"Personal Dashboard",
|
|
1167
|
+
"Project Management",
|
|
1168
|
+
"Content Planner",
|
|
1169
|
+
"Finance Tracker",
|
|
1170
|
+
"Second Brain",
|
|
1171
|
+
"Business OS",
|
|
1172
|
+
"Student",
|
|
1173
|
+
"CRM",
|
|
1174
|
+
],
|
|
1175
|
+
"Spreadsheet Templates": [
|
|
1176
|
+
"Budget",
|
|
1177
|
+
"Invoice",
|
|
1178
|
+
"Project Plan",
|
|
1179
|
+
"Tracker",
|
|
1180
|
+
"KPI Dashboard",
|
|
1181
|
+
"Excel",
|
|
1182
|
+
"Google Sheets",
|
|
1183
|
+
"Airtable",
|
|
1184
|
+
],
|
|
1185
|
+
"Presentation Templates": [
|
|
1186
|
+
"Pitch Deck",
|
|
1187
|
+
"Business",
|
|
1188
|
+
"Startup",
|
|
1189
|
+
"Portfolio",
|
|
1190
|
+
"Keynote",
|
|
1191
|
+
"PowerPoint",
|
|
1192
|
+
"Google Slides",
|
|
1193
|
+
"Canva",
|
|
1194
|
+
"Minimal",
|
|
1195
|
+
"Bold",
|
|
1196
|
+
],
|
|
1197
|
+
"AI Prompt Packs": [
|
|
1198
|
+
"Midjourney",
|
|
1199
|
+
"ChatGPT",
|
|
1200
|
+
"Stable Diffusion",
|
|
1201
|
+
"DALL-E",
|
|
1202
|
+
"Business",
|
|
1203
|
+
"Marketing",
|
|
1204
|
+
"Image Generation",
|
|
1205
|
+
"Productivity",
|
|
1206
|
+
"Writing",
|
|
1207
|
+
],
|
|
1208
|
+
"Figma Plugins & Resources": [
|
|
1209
|
+
"Plugin",
|
|
1210
|
+
"Auto Layout",
|
|
1211
|
+
"Wireframe Kit",
|
|
1212
|
+
"Flow Kit",
|
|
1213
|
+
"Annotation",
|
|
1214
|
+
"Variable Set",
|
|
1215
|
+
"Prototype",
|
|
1216
|
+
],
|
|
1217
|
+
|
|
1218
|
+
// 3D & Interactive
|
|
1219
|
+
"3D Models & Objects": [
|
|
1220
|
+
"Low Poly",
|
|
1221
|
+
"High Poly",
|
|
1222
|
+
"Character",
|
|
1223
|
+
"Architecture",
|
|
1224
|
+
"Product Viz",
|
|
1225
|
+
"Vehicle",
|
|
1226
|
+
"Nature",
|
|
1227
|
+
"FBX",
|
|
1228
|
+
"OBJ",
|
|
1229
|
+
"GLB/GLTF",
|
|
1230
|
+
"Blender",
|
|
1231
|
+
],
|
|
1232
|
+
"Rigged & Animated Characters": [
|
|
1233
|
+
"Human",
|
|
1234
|
+
"Animal",
|
|
1235
|
+
"Fantasy",
|
|
1236
|
+
"Sci-Fi",
|
|
1237
|
+
"Cartoon",
|
|
1238
|
+
"Game Ready",
|
|
1239
|
+
"Mixamo",
|
|
1240
|
+
"Rigged",
|
|
1241
|
+
"Walk Cycle",
|
|
1242
|
+
],
|
|
1243
|
+
"Motion Graphics & VFX": [
|
|
1244
|
+
"After Effects",
|
|
1245
|
+
"Premiere Pro",
|
|
1246
|
+
"Title Animation",
|
|
1247
|
+
"Transition",
|
|
1248
|
+
"Lower Third",
|
|
1249
|
+
"Particle FX",
|
|
1250
|
+
"Explainer",
|
|
1251
|
+
"Kinetic Type",
|
|
1252
|
+
],
|
|
1253
|
+
"3D Scenes & Environments": [
|
|
1254
|
+
"Interior",
|
|
1255
|
+
"Exterior",
|
|
1256
|
+
"Fantasy World",
|
|
1257
|
+
"Sci-Fi",
|
|
1258
|
+
"Game Environment",
|
|
1259
|
+
"HDRI",
|
|
1260
|
+
"Sky Map",
|
|
1261
|
+
"Studio Setup",
|
|
1262
|
+
],
|
|
1263
|
+
"AR & VR Assets": [
|
|
1264
|
+
"AR Filter",
|
|
1265
|
+
"Instagram Filter",
|
|
1266
|
+
"Spark AR",
|
|
1267
|
+
"VR Environment",
|
|
1268
|
+
"Meta",
|
|
1269
|
+
"WebXR",
|
|
1270
|
+
"Spatial Audio",
|
|
1271
|
+
],
|
|
1272
|
+
"Game Assets": [
|
|
1273
|
+
"Sprite Sheet",
|
|
1274
|
+
"Tilemap",
|
|
1275
|
+
"UI Pack",
|
|
1276
|
+
"Character Skin",
|
|
1277
|
+
"Prop",
|
|
1278
|
+
"Pixel Art",
|
|
1279
|
+
"Unity",
|
|
1280
|
+
"Unreal Engine",
|
|
1281
|
+
"Godot",
|
|
1282
|
+
"2D",
|
|
1283
|
+
"3D",
|
|
1284
|
+
],
|
|
1285
|
+
"3D Fonts & Text Effects": [
|
|
1286
|
+
"Extruded",
|
|
1287
|
+
"Metallic",
|
|
1288
|
+
"Neon",
|
|
1289
|
+
"Retro",
|
|
1290
|
+
"Logo Mockup",
|
|
1291
|
+
"Blender",
|
|
1292
|
+
"C4D",
|
|
1293
|
+
"Animated Text",
|
|
1294
|
+
],
|
|
1295
|
+
|
|
1296
|
+
// Print-Ready Artwork
|
|
1297
|
+
"Wall Art & Prints": [
|
|
1298
|
+
"Abstract",
|
|
1299
|
+
"Botanical",
|
|
1300
|
+
"Portrait",
|
|
1301
|
+
"Typography",
|
|
1302
|
+
"Landscape",
|
|
1303
|
+
"Minimalist",
|
|
1304
|
+
"Boho",
|
|
1305
|
+
"Gallery Wall",
|
|
1306
|
+
"Black & White",
|
|
1307
|
+
"Colour Pop",
|
|
1308
|
+
],
|
|
1309
|
+
"Posters & Flyers": [
|
|
1310
|
+
"Event",
|
|
1311
|
+
"Concert",
|
|
1312
|
+
"Party",
|
|
1313
|
+
"Retro",
|
|
1314
|
+
"Vintage",
|
|
1315
|
+
"Modern",
|
|
1316
|
+
"Movie Poster",
|
|
1317
|
+
"A3",
|
|
1318
|
+
"A4",
|
|
1319
|
+
"US Letter",
|
|
1320
|
+
],
|
|
1321
|
+
"Digital Painting & Fine Art": [
|
|
1322
|
+
"Portrait",
|
|
1323
|
+
"Fantasy",
|
|
1324
|
+
"Realism",
|
|
1325
|
+
"Impressionist",
|
|
1326
|
+
"Surrealism",
|
|
1327
|
+
"Oil Style",
|
|
1328
|
+
"Watercolour",
|
|
1046
1329
|
"Concept Art",
|
|
1047
|
-
"
|
|
1048
|
-
"Letterheads",
|
|
1049
|
-
"Greeting Cards",
|
|
1050
|
-
"Wedding Invitations",
|
|
1051
|
-
"Event Invitations",
|
|
1052
|
-
"Thank You Cards",
|
|
1053
|
-
"Notebook Covers",
|
|
1054
|
-
"T-Shirt Designs",
|
|
1055
|
-
"Hoodie Designs",
|
|
1056
|
-
"Hat Designs",
|
|
1057
|
-
"Tote Bag Designs",
|
|
1058
|
-
"Mug Designs",
|
|
1059
|
-
"Phone Case Designs",
|
|
1060
|
-
"Sticker Designs",
|
|
1061
|
-
"Print-On-Demand Designs",
|
|
1062
|
-
"Embroidery Designs",
|
|
1063
|
-
"Box Designs",
|
|
1064
|
-
"Label Designs",
|
|
1065
|
-
"Bag Designs",
|
|
1066
|
-
"Bottle Designs",
|
|
1067
|
-
"Pouch Designs",
|
|
1068
|
-
"Food & Beverage Packaging",
|
|
1069
|
-
"Cosmetics Packaging",
|
|
1070
|
-
"Dieline Templates",
|
|
1071
|
-
"Daily Planner Inserts",
|
|
1072
|
-
"Weekly Planner Inserts",
|
|
1073
|
-
"Monthly Planner Inserts",
|
|
1074
|
-
"Habit Trackers",
|
|
1075
|
-
"Gratitude Journals",
|
|
1076
|
-
"Goal Setting Sheets",
|
|
1077
|
-
"Budget Planners",
|
|
1078
|
-
"Fabric Print Designs",
|
|
1079
|
-
"Wallpaper Designs",
|
|
1080
|
-
"Wrapping Paper Designs",
|
|
1081
|
-
"Repeat Pattern Designs",
|
|
1082
|
-
"CMYK Print-Ready Files",
|
|
1083
|
-
],
|
|
1084
|
-
Bundles: [
|
|
1085
|
-
"Design Bundles",
|
|
1086
|
-
"Font Bundles",
|
|
1087
|
-
"Illustration Bundles",
|
|
1088
|
-
"Icon Bundles",
|
|
1089
|
-
"Template Bundles",
|
|
1090
|
-
"Mockup Bundles",
|
|
1091
|
-
"Photo Bundles",
|
|
1092
|
-
"Video Bundles",
|
|
1093
|
-
"Audio Bundles",
|
|
1094
|
-
"Preset Bundles",
|
|
1095
|
-
"Procreate Bundles",
|
|
1096
|
-
"Notion Bundles",
|
|
1097
|
-
"Social Media Bundles",
|
|
1098
|
-
"Branding Bundles",
|
|
1099
|
-
"Print Bundles",
|
|
1100
|
-
"Creator Packs",
|
|
1101
|
-
"Starter Kits",
|
|
1102
|
-
"Seasonal & Limited Edition",
|
|
1103
|
-
],
|
|
1104
|
-
Other: [
|
|
1105
|
-
"Miscellaneous",
|
|
1106
|
-
"Consulting & Services",
|
|
1107
|
-
"Custom Commissions",
|
|
1108
|
-
"Memberships & Subscriptions",
|
|
1109
|
-
"Gift Cards",
|
|
1110
|
-
"Uncategorized",
|
|
1330
|
+
"High Res",
|
|
1111
1331
|
],
|
|
1112
|
-
|
|
1332
|
+
"Stationery & Paper Goods": [
|
|
1333
|
+
"Business Card",
|
|
1334
|
+
"Letterhead",
|
|
1335
|
+
"Notebook Cover",
|
|
1336
|
+
"Greeting Card",
|
|
1337
|
+
"Invitation",
|
|
1338
|
+
"Wedding",
|
|
1339
|
+
"Thank You Card",
|
|
1340
|
+
"Planner",
|
|
1341
|
+
],
|
|
1342
|
+
"Apparel & Merch Designs": [
|
|
1343
|
+
"T-Shirt",
|
|
1344
|
+
"Hoodie",
|
|
1345
|
+
"Hat",
|
|
1346
|
+
"Tote Bag",
|
|
1347
|
+
"Mug",
|
|
1348
|
+
"Phone Case",
|
|
1349
|
+
"Sticker",
|
|
1350
|
+
"Print-On-Demand",
|
|
1351
|
+
"DTG",
|
|
1352
|
+
"Embroidery",
|
|
1353
|
+
],
|
|
1354
|
+
"Packaging Design": [
|
|
1355
|
+
"Box",
|
|
1356
|
+
"Label",
|
|
1357
|
+
"Bag",
|
|
1358
|
+
"Bottle",
|
|
1359
|
+
"Pouch",
|
|
1360
|
+
"Mockup Ready",
|
|
1361
|
+
"Dieline",
|
|
1362
|
+
"Food & Beverage",
|
|
1363
|
+
"Cosmetics",
|
|
1364
|
+
],
|
|
1365
|
+
"Planner & Journal Inserts": [
|
|
1366
|
+
"Daily Planner",
|
|
1367
|
+
"Weekly",
|
|
1368
|
+
"Monthly",
|
|
1369
|
+
"Habit Tracker",
|
|
1370
|
+
"Gratitude Journal",
|
|
1371
|
+
"Budget Sheet",
|
|
1372
|
+
"Goal Setting",
|
|
1373
|
+
"A5",
|
|
1374
|
+
"Letter",
|
|
1375
|
+
],
|
|
1376
|
+
"Pattern & Surface Design": [
|
|
1377
|
+
"Fabric Print",
|
|
1378
|
+
"Wallpaper",
|
|
1379
|
+
"Wrapping Paper",
|
|
1380
|
+
"Seamless",
|
|
1381
|
+
"Floral",
|
|
1382
|
+
"Geometric",
|
|
1383
|
+
"Abstract",
|
|
1384
|
+
"Repeat Pattern",
|
|
1385
|
+
"CMYK",
|
|
1386
|
+
],
|
|
1387
|
+
|
|
1388
|
+
// Other
|
|
1389
|
+
"Bundles & Kits": [
|
|
1390
|
+
"Brand Bundle",
|
|
1391
|
+
"Design Bundle",
|
|
1392
|
+
"Audio Bundle",
|
|
1393
|
+
"Photo Bundle",
|
|
1394
|
+
"Multi-Format",
|
|
1395
|
+
"Starter Kit",
|
|
1396
|
+
"Creator Pack",
|
|
1397
|
+
"Limited Edition",
|
|
1398
|
+
"Seasonal",
|
|
1399
|
+
],
|
|
1400
|
+
};
|