mirror of
https://github.com/DavidHDev/vue-bits.git
synced 2026-03-07 14:39:30 -07:00
101 lines
1.8 KiB
TypeScript
101 lines
1.8 KiB
TypeScript
// Highlighted sidebar items
|
|
export const NEW = [];
|
|
export const UPDATED = [];
|
|
|
|
// Used for main sidebar navigation
|
|
export const CATEGORIES = [
|
|
{
|
|
name: 'Text Animations',
|
|
subcategories: [
|
|
'Split Text',
|
|
'Blur Text',
|
|
'Circular Text',
|
|
'Shiny Text',
|
|
'Text Pressure',
|
|
'Curved Loop',
|
|
'Fuzzy Text',
|
|
'Gradient Text',
|
|
'Text Trail',
|
|
'Falling Text',
|
|
'Text Cursor',
|
|
'Decrypted Text',
|
|
'Ascii Text',
|
|
'Scramble Text',
|
|
'True Focus',
|
|
'Scroll Float',
|
|
'Scroll Reveal',
|
|
'Rotating Text',
|
|
'Glitch Text',
|
|
'Scroll Velocity'
|
|
]
|
|
},
|
|
{
|
|
name: 'Animations',
|
|
subcategories: [
|
|
'Animated Content',
|
|
'Fade Content',
|
|
'Noise',
|
|
'Splash Cursor',
|
|
'Pixel Transition',
|
|
'Ribbons',
|
|
'Glare Hover',
|
|
'Magnet Lines',
|
|
'Count Up',
|
|
'Metallic Paint',
|
|
'Click Spark',
|
|
'Magnet',
|
|
'Cubes',
|
|
'Blob Cursor',
|
|
'Meta Balls',
|
|
'Image Trail',
|
|
'Shape Blur',
|
|
]
|
|
},
|
|
{
|
|
name: 'Components',
|
|
subcategories: [
|
|
'Masonry',
|
|
'Profile Card',
|
|
'Dock',
|
|
'Gooey Nav',
|
|
'Pixel Card',
|
|
'Carousel',
|
|
'Spotlight Card',
|
|
'Circular Gallery',
|
|
'Flying Posters',
|
|
'Card Swap',
|
|
'Infinite Scroll',
|
|
'Tilted Card',
|
|
'Glass Icons',
|
|
'Decay Card',
|
|
'Flowing Menu',
|
|
'Elastic Slider',
|
|
'Stack',
|
|
'Chroma Grid'
|
|
]
|
|
},
|
|
{
|
|
name: 'Backgrounds',
|
|
subcategories: [
|
|
'Aurora',
|
|
'Beams',
|
|
'Dot Grid',
|
|
'Hyperspeed',
|
|
'Silk',
|
|
'Lightning',
|
|
'Balatro',
|
|
'Letter Glitch',
|
|
'Particles',
|
|
'Waves',
|
|
'Squares',
|
|
'Iridescence',
|
|
'Threads',
|
|
'Grid Motion',
|
|
'Orb',
|
|
'Ballpit',
|
|
'Liquid Chrome',
|
|
'Grid Distortion'
|
|
]
|
|
}
|
|
];
|