forked from pqoqubbw/icons
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconstants.ts
More file actions
49 lines (46 loc) · 1.27 KB
/
Copy pathconstants.ts
File metadata and controls
49 lines (46 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
const SITE = {
NAME: "lucide-animated",
URL: "https://lucide-animated.com",
OG_IMAGE: "/og.png",
AUTHOR: {
NAME: "pqoqubbw",
TWITTER: "@pqoqubbw",
},
DESCRIPTION: {
LONG: "Free open-source library of 350+ beautifully crafted animated React icons. Built with Motion and Lucide. Copy-paste ready, MIT licensed, fully customizable SVG icons with smooth animations.",
SHORT:
"Free animated React icons library with 350+ smooth Motion-powered icons based on Lucide. MIT licensed, copy-paste ready.",
},
KEYWORDS: [
"animated icons",
"react icons",
"motion icons",
"lucide icons",
"svg icons",
"animated svg",
"react components",
"icon library",
"open source icons",
"framer motion icons",
"animated react components",
"free icons",
"MIT license icons",
"copy paste icons",
"tailwind icons",
"nextjs icons",
],
} as const;
const LINK = {
TWITTER: "https://x.com/pqoqubbw",
GITHUB: "https://github.com/pqoqubbw/icons",
LUCIDE: "https://lucide.dev",
MOTION: "https://motion.dev",
LICENSE: "https://github.com/pqoqubbw/icons/blob/main/LICENSE",
} as const;
const PACKAGE_MANAGER = {
PNPM: "pnpm",
NPM: "npm",
YARN: "yarn",
BUN: "bun",
} as const;
export { LINK, PACKAGE_MANAGER, SITE };