File size: 4,168 Bytes
6076169 |
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 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 |
import { FolderOpenIcon, ScrollText, WandSparklesIcon } from "lucide-react";
export const DEFAULT_AVATAR_URL =
"https://api.dicebear.com/8.x/initials/svg?backgroundType=gradientLinear&backgroundRotation=0,360&seed=";
export const PAGINATION_LIMIT = 10;
export const COMPANIES = [
{
name: "Asana",
logo: "/assets/company-01.svg",
},
{
name: "Tidal",
logo: "/assets/company-02.svg",
},
{
name: "Innovaccer",
logo: "/assets/company-03.svg",
},
{
name: "Linear",
logo: "/assets/company-04.svg",
},
{
name: "Raycast",
logo: "/assets/company-05.svg",
},
{
name: "Labelbox",
logo: "/assets/company-06.svg",
},
] as const;
export const PROCESS = [
{
title: "Upload Your Video",
description:
"Easily categorize the scripts and optimize the media to create high-quality blog posts.",
icon: FolderOpenIcon,
},
{
title: "AI Magic",
description:
"Create SEO-optimized blog posts that are easy to customize and share.",
icon: WandSparklesIcon,
},
{
title: "Optimize and Export",
description:
"Content is provided in Markdown format and can be easily exported.",
icon: ScrollText,
},
] as const;
export const FEATURES = [
{
title: "Link shortening",
description: "Create short links that are easy to remember and share.",
},
{
title: "Advanced analytics",
description: "Track and measure the performance of your links.",
},
{
title: "Password protection",
description: "Secure your links with a password.",
},
{
title: "Custom QR codes",
description: "Generate custom QR codes for your links.",
},
{
title: "Link expiration",
description: "Set an expiration date for your links.",
},
{
title: "Team collaboration",
description: "Share links with your team and collaborate in real-time.",
},
] as const;
export const REVIEWS = [
{
name: "Michael Smith",
username: "@michaelsmith",
avatar: "https://randomuser.me/api/portraits/men/1.jpg",
rating: 5,
review:
"This app is fantastic! It offers everything I need to manage my blog contents efficiently.",
},
{
name: "Emily Johnson",
username: "@emilyjohnson",
avatar: "https://randomuser.me/api/portraits/women/1.jpg",
rating: 4,
review:
"This platform saved us time and improved our content quality. The AI suggestions are incredibly helpful!”",
},
{
name: "Daniel Williams",
username: "@danielwilliams",
avatar: "https://randomuser.me/api/portraits/men/2.jpg",
rating: 5,
review:
"I've been using this app daily for months. The insights and analytics it provides are invaluable. Highly recommend it!",
},
{
name: "Sophia Brown",
username: "@sophiabrown",
avatar: "https://randomuser.me/api/portraits/women/2.jpg",
rating: 4,
review:
"Great app with a lot of potential. It has already saved me a lot of time. Looking forward to future updates and improvements.",
},
{
name: "James Taylor",
username: "@jamestaylor",
avatar: "https://randomuser.me/api/portraits/men/3.jpg",
rating: 5,
review:
"Absolutely love this app! It's intuitive and feature-rich. Has significantly improved how I manage and create content.",
},
{
name: "Olivia Martinez",
username: "@oliviamartinez",
avatar: "https://randomuser.me/api/portraits/women/3.jpg",
rating: 4,
review:
"This app is a game-changer for generate posts. It's easy to use, extremely powerful and highly recommended!",
},
{
name: "William Garcia",
username: "@williamgarcia",
avatar: "https://randomuser.me/api/portraits/men/4.jpg",
rating: 5,
review:
"Effortless blogging with amazing SEO tools. This platform made our content strategy more effective.",
},
{
name: "Mia Rodriguez",
username: "@miarodriguez",
avatar: "https://randomuser.me/api/portraits/women/4.jpg",
rating: 4,
review:
"I've tried several content generator tools, but this one stands out. It's simple, effective.",
},
{
name: "Henry Lee",
username: "@henrylee",
avatar: "https://randomuser.me/api/portraits/men/5.jpg",
rating: 5,
review:
"This app has transformed my workflow. Managing and analyzing links is now a breeze. I can't imagine working without it.",
},
] as const;
|