beactio-landing/src/lib/config.tsx
2025-01-18 13:08:50 +07:00

271 lines
7.4 KiB
TypeScript

import { Icons } from "@/components/icons";
import { FaTwitter } from "react-icons/fa";
import { FaYoutube } from "react-icons/fa6";
import { RiInstagramFill } from "react-icons/ri";
export const BLUR_FADE_DELAY = 0.15;
export const siteConfig = {
name: "beactio.ai",
description: "Automate your workflow with AI",
url: process.env.NEXT_PUBLIC_APP_URL || "http://localhost:3000",
keywords: ["SaaS", "Template", "Next.js", "React", "Tailwind CSS"],
links: {
email: "support@acme.ai",
twitter: "https://twitter.com/magicuidesign",
discord: "https://discord.gg/87p2vpsat5",
github: "https://github.com/magicuidesign/magicui",
instagram: "https://instagram.com/magicuidesign/",
},
header: [
{
trigger: "Features",
content: {
main: {
icon: <Icons.logo className="h-6 w-6" />,
title: "AI-Powered Automation",
description: "Streamline your workflow with intelligent automation.",
href: "#",
},
items: [
{
href: "#",
title: "Task Automation",
description: "Automate repetitive tasks and save time.",
},
{
href: "#",
title: "Workflow Optimization",
description: "Optimize your processes with AI-driven insights.",
},
{
href: "#",
title: "Intelligent Scheduling",
description: "AI-powered scheduling for maximum efficiency.",
},
],
},
},
{
trigger: "Solutions",
content: {
items: [
{
title: "For Small Businesses",
href: "#",
description: "Tailored automation solutions for growing companies.",
},
{
title: "Enterprise",
href: "#",
description: "Scalable AI automation for large organizations.",
},
{
title: "Developers",
href: "#",
description: "API access and integration tools for developers.",
},
{
title: "Healthcare",
href: "#",
description: "Specialized automation for healthcare workflows.",
},
{
title: "Finance",
href: "#",
description: "AI-driven process automation for financial services.",
},
{
title: "Education",
href: "#",
description:
"Streamline administrative tasks in educational institutions.",
},
],
},
},
{
href: "/explore",
label: "Explore Agents",
},
],
pricing: [
{
name: "BASIC",
href: "#",
price: "$19",
period: "month",
yearlyPrice: "$16",
features: [
"1 User",
"5GB Storage",
"Basic Support",
"Limited API Access",
"Standard Analytics",
],
description: "Perfect for individuals and small projects",
buttonText: "Subscribe",
isPopular: false,
},
{
name: "PRO",
href: "#",
price: "$49",
period: "month",
yearlyPrice: "$40",
features: [
"5 Users",
"50GB Storage",
"Priority Support",
"Full API Access",
"Advanced Analytics",
],
description: "Ideal for growing businesses and teams",
buttonText: "Subscribe",
isPopular: true,
},
{
name: "ENTERPRISE",
href: "#",
price: "$99",
period: "month",
yearlyPrice: "$82",
features: [
"Unlimited Users",
"500GB Storage",
"24/7 Premium Support",
"Custom Integrations",
"AI-Powered Insights",
],
description: "For large-scale operations and high-volume users",
buttonText: "Subscribe",
isPopular: false,
},
],
faqs: [
{
question: "What is acme.ai?",
answer: (
<span>
acme.ai is a platform that helps you build and manage your AI-powered
applications. It provides tools and services to streamline the
development and deployment of AI solutions.
</span>
),
},
{
question: "How can I get started with acme.ai?",
answer: (
<span>
You can get started with acme.ai by signing up for an account on our
website, creating a new project, and following our quick-start guide.
We also offer tutorials and documentation to help you along the way.
</span>
),
},
{
question: "What types of AI models does acme.ai support?",
answer: (
<span>
acme.ai supports a wide range of AI models, including but not limited
to natural language processing, computer vision, and predictive
analytics. We continuously update our platform to support the latest
AI technologies.
</span>
),
},
{
question: "Is acme.ai suitable for beginners in AI development?",
answer: (
<span>
Yes, acme.ai is designed to be user-friendly for both beginners and
experienced developers. We offer intuitive interfaces, pre-built
templates, and extensive learning resources to help users of all skill
levels create AI-powered applications.
</span>
),
},
{
question: "What kind of support does acme.ai provide?",
answer: (
<span>
acme.ai provides comprehensive support including documentation, video
tutorials, a community forum, and dedicated customer support. We also
offer premium support plans for enterprises with more complex needs.
</span>
),
},
],
footer: [
// {
// title: "Product",
// links: [
// { href: "#", text: "Features", icon: null },
// // { href: "#", text: "Pricing", icon: null },
// { href: "#", text: "Documentation", icon: null },
// { href: "#", text: "API", icon: null },
// ],
// },
// {
// title: "Company",
// links: [
// { href: "#", text: "About Us", icon: null },
// { href: "#", text: "Careers", icon: null },
// { href: "#", text: "Blog", icon: null },
// { href: "#", text: "Press", icon: null },
// { href: "#", text: "Partners", icon: null },
// ],
// },
// {
// title: "Resources",
// links: [
// // { href: "#", text: "Community", icon: null },
// // { href: "#", text: "Contact", icon: null },
// { href: "#", text: "Support", icon: null },
// { href: "#", text: "Status", icon: null },
// ],
// },
{
title: "Social",
links: [
{
href: "#",
text: "X",
icon: <FaTwitter />,
},
// {
// href: "#",
// text: "Instagram",
// icon: <RiInstagramFill />,
// },
// {
// href: "#",
// text: "Youtube",
// icon: <FaYoutube />,
// },
],
},
],
};
export type SiteConfig = typeof siteConfig;
export default class PostgrestError extends Error {
details: string;
hint: string;
code: string;
constructor(context: {
message: string;
details: string;
hint: string;
code: string;
}) {
super(context.message);
this.name = "PostgrestError";
this.details = context.details;
this.hint = context.hint;
this.code = context.code;
}
}