2024-09-20 08:48:32 +00:00
import {
2024-10-07 08:36:21 +00:00
Grid3x3 , Database , Workflow , Cog , Target , Scale ,
Layers , FileSpreadsheet , Folder , Wand2 , LayoutDashboard , Users , UserCheck ,
Lock , UserPlus , ScrollText , Megaphone , Gem , Mail , GitBranch ,
Box , GitMerge , ShoppingBag , Wand , Flag , ShieldCheck , Cloud , Container , Boxes , Server , Telescope , Globe
2024-09-20 08:48:32 +00:00
} from 'lucide-react' ;
export const featureCards = [
2024-10-07 08:36:21 +00:00
{
icon : Grid3x3 ,
title : "App Builder" ,
color : "text-blue-500" ,
2024-10-07 11:35:25 +00:00
content : "Design and create applications with ToolJet's intuitive app builder, featuring a drag-and-drop interface and powerful pre-built components to streamline development." ,
2024-10-07 08:36:21 +00:00
href : "/docs/app-builder/overview"
} ,
{
icon : Database ,
title : "ToolJet Database" ,
color : "text-blue-500" ,
2024-10-07 11:35:25 +00:00
content : "Powered by PostgreSQL, offering a user-friendly UI editor. ToolJet Database allows you to manage, edit, and interact with your data directly within the platform." ,
2024-10-07 11:50:56 +00:00
href : "/docs/tooljet-db/tooljet-database"
2024-10-07 08:36:21 +00:00
} ,
{
icon : Workflow ,
title : "Workflows" ,
color : "text-blue-500" ,
2024-10-07 11:35:25 +00:00
content : "Automate processes and define workflows with precision, allowing your apps to handle tasks intelligently." ,
2024-10-07 08:36:21 +00:00
href : "/docs/workflows/overview"
}
2024-09-20 08:48:32 +00:00
] ;
export const setupCards = [
2024-10-07 08:36:21 +00:00
{
icon : Cog ,
title : "Try ToolJet" ,
color : "text-blue-500" ,
2024-10-07 11:35:25 +00:00
content : "Get started with ToolJet in under 2 minutes by running it with Docker. Experience a seamless setup and explore the full capabilities of ToolJet." ,
2024-10-07 08:36:21 +00:00
href : "/docs/setup/try-tooljet"
} ,
{
icon : Cog ,
title : "System Requirements" ,
color : "text-blue-500" ,
content : "Ensure your system meets the requirements for running ToolJet. Check hardware and software specifications to get the best performance from the platform." ,
href : "/docs/setup/system-requirements"
} ,
{
icon : Target ,
title : "Choose Your ToolJet" ,
color : "text-blue-500" ,
2024-10-07 11:35:25 +00:00
content : "Discover the ideal ToolJet version for your development needs. Choose between our Long-Term Support (LTS) versions for stability and reliability, or explore Pre-Release versions to access the latest features. Select the option that best aligns with your project requirements " ,
2024-10-07 11:50:56 +00:00
href : "/docs/setup/choose-your-tooljet/"
2024-10-07 08:36:21 +00:00
} ,
{
icon : Scale ,
title : "Upgrade to LTS" ,
color : "text-blue-500" ,
content : "Upgrade to the Long Term Support (LTS) version of ToolJet for extended support, stability, and access to critical updates." ,
href : "/docs/setup/upgrade-to-lts"
}
2024-09-20 08:48:32 +00:00
] ;
export const deployOptions = [
2024-10-07 08:36:21 +00:00
{ icon : Cloud , title : "DigitalOcean" , href : "/docs/setup/digitalocean" } ,
{ icon : Container , title : "Docker" , href : "/docs/setup/docker" } ,
2024-10-07 11:50:56 +00:00
{ icon : Server , title : "AWS EC2" , href : "/docs/setup/ec2" } ,
{ icon : Server , title : "AWS ECS" , href : "/docs/setup/ecs" } ,
2024-10-07 08:36:21 +00:00
{ icon : Server , title : "Openshift" , href : "/docs/setup/openshift" } ,
{ icon : Telescope , title : "Helm" , href : "/docs/setup/helm" } ,
{ icon : Boxes , title : "Kubernetes" , href : "/docs/setup/kubernetes" } ,
{ icon : Globe , title : "Kubernetes (GKE)" , href : "/docs/setup/kubernetes-gke" } ,
{ icon : Globe , title : "Kubernetes (AKS)" , href : "/docs/setup/kubernetes-aks" } ,
{ icon : Globe , title : "Kubernetes (EKS)" , href : "/docs/setup/kubernetes-eks" } ,
2024-10-07 13:21:52 +00:00
{ icon : Globe , title : "Azure Container Apps" , href : "/docs/setup/azure-container" } ,
2024-10-07 11:50:56 +00:00
{ icon : Globe , title : "Google Cloud Run" , href : "/docs/setup/google-cloud-run" } ,
2024-09-20 08:48:32 +00:00
] ;
export const dataCards = [
2024-10-07 08:36:21 +00:00
{
icon : Layers ,
title : "Overview" ,
color : "text-blue-500" ,
content : "Gain a broad understanding of ToolJet's features and capabilities. Learn how it simplifies app development with powerful tools and an intuitive interface." ,
2024-10-07 11:50:56 +00:00
href : "/docs/data-sources/overview"
2024-10-07 08:36:21 +00:00
} ,
{
icon : FileSpreadsheet ,
title : "Sample Data Source" ,
color : "text-blue-500" ,
content : "Explore sample data sources to quickly integrate with ToolJet. Test features and workflows using predefined datasets." ,
2024-10-07 11:50:56 +00:00
href : "/docs/data-sources/sample-data-sources"
2024-10-07 08:36:21 +00:00
} ,
{
icon : Folder ,
title : "Datasource Library" ,
color : "text-blue-500" ,
content : "Browse ToolJet's datasource library to connect with databases, APIs, and external services seamlessly." ,
2024-10-07 11:50:56 +00:00
href : "/docs/tooljet-concepts/what-are-datasources/"
2024-10-07 08:36:21 +00:00
} ,
{
icon : Wand2 ,
title : "Transformation" ,
color : "text-blue-500" ,
content : "Leverage ToolJet's transformation capabilities to manipulate and format data from various sources with ease." ,
2024-10-07 11:50:56 +00:00
href : "/docs/tutorial/transformations/"
2024-10-07 08:36:21 +00:00
}
2024-09-20 08:48:32 +00:00
] ;
export const organizationCards = [
2024-10-07 11:50:56 +00:00
{ icon : LayoutDashboard , title : "Dashboard" , href : "/docs/dashboard" } ,
{ icon : Users , title : "Workspaces" , href : "/docs/org-management/workspaces/workspace_overview" } ,
{ icon : UserCheck , title : "User authentication" , href : "/docs/user-authentication/workspace-login" } ,
{ icon : Lock , title : "Permissions" , href : "/docs/org-management/permissions" } ,
{ icon : UserPlus , title : "Users and groups" , href : "/docs/tutorial/manage-users-groups" } ,
2024-10-07 11:54:33 +00:00
{ icon : ScrollText , title : "Audit logs" , href : "/docs/Enterprise/audit_logs" } ,
2024-10-07 11:50:56 +00:00
{ icon : Megaphone , title : "White label" , href : "/docs/Enterprise/white-label" } ,
{ icon : Gem , title : "Super admin" , href : "/docs/Enterprise/superadmin" } ,
{ icon : Mail , title : "Licensing" , href : "/docs/org-management/licensing/self-hosted" }
2024-09-20 08:48:32 +00:00
] ;
export const releaseCards = [
2024-10-07 08:36:21 +00:00
{
icon : GitBranch ,
title : "Git Sync" ,
color : "text-blue-500" ,
2024-10-07 11:35:25 +00:00
content : "Sync your ToolJet projects with Git repositories, enabling version control and collaboration across teams." ,
2024-10-07 11:54:33 +00:00
href : "/docs/gitsync"
2024-10-07 08:36:21 +00:00
} ,
{
icon : Box ,
title : "Multi-Environment" ,
color : "text-blue-500" ,
content : "Easily manage and deploy applications across multiple environments, ensuring smooth transitions between development, staging, and production." ,
2024-10-07 11:50:56 +00:00
href : "/docs/release-management/multi-environment"
2024-10-07 08:36:21 +00:00
} ,
{
icon : GitMerge ,
title : "Versioning and Release" ,
color : "text-blue-500" ,
content : "Implement version control and release management to track changes, roll back updates, and maintain stable app deployments." ,
2024-10-07 11:50:56 +00:00
href : "/docs/tutorial/versioning-and-release"
2024-10-07 08:36:21 +00:00
}
2024-09-20 08:48:32 +00:00
] ;
export const resourceCards = [
2024-10-07 08:36:21 +00:00
{
icon : ShoppingBag ,
title : "Marketplace" ,
color : "text-blue-500" ,
2024-10-07 11:35:25 +00:00
content : "Discover a variety of plugins, extensions and integrations in ToolJet's marketplace to enhance your app-building experience." ,
2024-10-07 11:50:56 +00:00
href : "/docs/marketplace/marketplace-overview"
2024-10-07 08:36:21 +00:00
} ,
{
icon : Wand ,
title : "Copilot" ,
color : "text-blue-500" ,
content : "Boost productivity with ToolJet Copilot. Get AI-powered suggestions and assistance while building your applications." ,
2024-10-07 11:50:56 +00:00
href : "/docs/tooljet-copilot"
2024-10-07 08:36:21 +00:00
} ,
{
icon : Flag ,
title : "Tracking" ,
color : "text-blue-5000" ,
2024-10-07 11:35:25 +00:00
content : "ToolJet ensures user privacy by acting as a proxy, never storing data from sources. It offers anonymous usage tracking with options to disable features for enhanced control." ,
2024-10-07 11:50:56 +00:00
href : "/docs/tracking"
2024-10-07 08:36:21 +00:00
} ,
{
icon : ShieldCheck ,
title : "Security" ,
color : "text-blue-500" ,
2024-10-07 11:35:25 +00:00
content : "ToolJet guarantees your data security with SOC 2 compliance, robust encryption, and secure credential handling. We never store your data, ensuring peace of mind with every connection" ,
2024-10-07 11:50:56 +00:00
href : "/docs/security"
2024-10-07 08:36:21 +00:00
}
2024-09-20 09:15:54 +00:00
] ;
export const textLabels = {
2024-10-07 08:36:21 +00:00
title : {
prefix : "ToolJet" ,
highlight : "Documentation"
} ,
subtitle : "Learn how to get up and running with ToolJet" ,
gettingStarted : {
2024-09-20 09:15:54 +00:00
title : "Getting Started" ,
description : "Discover how to create and publish apps within minutes"
2024-10-07 08:36:21 +00:00
} ,
setupToolJet : {
2024-09-20 09:15:54 +00:00
title : "Setup ToolJet" ,
2024-10-07 11:35:25 +00:00
description : "Learn about the different methods you can use to deploy ToolJet"
2024-10-07 08:36:21 +00:00
} ,
deployOn : {
2024-09-20 09:15:54 +00:00
title : "Deploy on"
2024-10-07 08:36:21 +00:00
} ,
exploreMore : "Explore more details" ,
bringData : {
2024-09-20 09:15:54 +00:00
title : "Bring your data to ToolJet" ,
2024-10-07 11:35:25 +00:00
description : "Learn how to connect your data sources to ToolJet"
2024-10-07 08:36:21 +00:00
} ,
manageOrganization : {
2024-09-20 09:15:54 +00:00
title : "Manage your organization" ,
2024-10-07 11:35:25 +00:00
description : "Learn how to secure your apps and manage user authentication in ToolJet."
2024-10-07 08:36:21 +00:00
} ,
manageReleases : {
2024-09-20 09:15:54 +00:00
title : "Manage releases" ,
2024-10-07 11:35:25 +00:00
description : "Learn how you can efficiently control the release cycle in ToolJet"
2024-10-07 08:36:21 +00:00
} ,
additionalResources : {
2024-09-20 09:15:54 +00:00
title : "Additional resources" ,
2024-10-07 11:35:25 +00:00
description : "Learn more about Marketplace Plugins, ToolJet Copilot, App Performance, and Security."
2024-10-07 08:36:21 +00:00
}
2024-10-07 09:19:05 +00:00
} ;
export const sectionCards = {
gettingStarted : {
title : "Getting Started" ,
description : "Discover how to create and publish apps within minutes" ,
2024-10-07 11:50:56 +00:00
link : "/docs/getting-started/quickstart-guide" ,
2024-10-07 09:19:05 +00:00
}
2024-10-07 08:36:21 +00:00
} ;