Initial commit

This commit is contained in:
dk
2026-03-10 16:34:40 +00:00
commit b2c1d049ba
633 changed files with 86369 additions and 0 deletions

225
src/app/pricing/page.tsx Normal file
View File

@@ -0,0 +1,225 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
import PricingCardThree from "@/components/sections/pricing/PricingCardThree";
import FooterSimple from "@/components/sections/footer/FooterSimple";
import { Sparkles } from "lucide-react";
import Link from "next/link";
export default function PricingPage() {
const navItems = [
{ name: "How It Works / Ako to funguje", id: "/" },
{ name: "Services / Služby", id: "/" },
{ name: "Portfolio / Portfólio", id: "/" },
{ name: "Pricing / Ceny", id: "/pricing" },
{ name: "Contact / Kontakt", id: "/contact" },
];
const pricingPlans = [
{
id: "1",
price: "$29/mo",
name: "Creator / Tvorca",
buttons: [
{
text: "Get Started / Začať",
href: "/signup?plan=creator",
},
{
text: "Learn More / Zistiť viac",
href: "#",
},
],
features: [
"AI Website Builder - Beginner Tier / Tvorca Webov - Úroveň Začiatočníka",
"Up to 5 Projects / Až 5 Projektov",
"Basic AI Marketing Tools / Základné AI Marketingové Nástroje",
"Email Support / E-mailová Podpora",
"Community Access / Prístup do Komunity",
],
},
{
id: "2",
badge: "Most Popular / Najpopulárnejší",
badgeIcon: Sparkles,
price: "$99/mo",
name: "Professional / Profesionál",
buttons: [
{
text: "Get Started / Začať",
href: "/signup?plan=professional",
},
{
text: "Learn More / Zistiť viac",
href: "#",
},
],
features: [
"AI Website Builder - Intermediate & Expert Tiers / Tvorca Webov - Medziľahlá a Expert Úroveň",
"Unlimited Projects / Neobmedzené Projekty",
"Advanced AI Marketing Engine / Pokročilý AI Marketingový Engine",
"Creative Services Access (10 hours/mo) / Prístup ku Kreatívnym Službám (10 hodín/mesiac)",
"Priority Support / Prioritná Podpora",
"Team Collaboration / Spolupráca Tímu",
],
},
{
id: "3",
price: "$299/mo",
name: "Enterprise / Podnik",
buttons: [
{
text: "Contact Sales / Kontaktujte Predaj",
href: "/contact",
},
{
text: "Learn More / Zistiť viac",
href: "#",
},
],
features: [
"Everything in Professional + / Všetko v Profesionáli +",
"Full AI Marketing Suite / Kompletná AI Marketingová Sada",
"Unlimited Creative Services / Neobmedzené Kreatívne Služby",
"AI Telephone Assistant / AI Telefonický Asistent",
"Dedicated Account Manager / Vyhradený Account Manager",
"Custom Integrations / Vlastné Integrácie",
"24/7 Premium Support / 24/7 Prémium Podpora",
],
},
];
const footerColumns = [
{
title: "Product / Produkt",
items: [
{
label: "Web Builder / Tvorca Webov",
href: "/",
},
{
label: "Creative Services / Kreatívne Služby",
href: "/",
},
{
label: "AI Marketing / AI Marketing",
href: "/",
},
{
label: "Pricing / Ceny",
href: "/pricing",
},
],
},
{
title: "Company / Spoločnosť",
items: [
{
label: "About / O Nás",
href: "/",
},
{
label: "Team / Tím",
href: "/",
},
{
label: "Blog / Blog",
href: "https://blog.aura.ai",
},
{
label: "Careers / Kariéra",
href: "https://careers.aura.ai",
},
],
},
{
title: "Resources / Zdroje",
items: [
{
label: "Documentation / Dokumentácia",
href: "https://docs.aura.ai",
},
{
label: "API Reference / API Referencia",
href: "https://api.aura.ai",
},
{
label: "Support / Podpora",
href: "https://support.aura.ai",
},
{
label: "Community / Komunita",
href: "https://community.aura.ai",
},
],
},
{
title: "Legal / Právne",
items: [
{
label: "Privacy Policy / Politika Ochrany",
href: "/privacy",
},
{
label: "Terms of Service / Podmienky Služby",
href: "/terms",
},
{
label: "Cookie Policy / Politika Cookies",
href: "/cookies",
},
{
label: "Contact / Kontakt",
href: "/contact",
},
],
},
];
return (
<ThemeProvider
defaultButtonVariant="elastic-effect"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="small"
sizing="largeSizeMediumTitles"
background="circleGradient"
cardStyle="solid"
primaryButtonStyle="diagonal-gradient"
secondaryButtonStyle="glass"
headingFontWeight="bold"
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
brandName="Aura"
navItems={navItems}
button={{
text: "Get Started / Začať",
href: "/pricing",
}}
/>
</div>
<div id="pricing" data-section="pricing">
<PricingCardThree
plans={pricingPlans}
animationType="slide-up"
title="Choose Your Plan / Vyberte si Svoj Plán"
description="Flexible pricing for every need. From individual creators to enterprise solutions. All plans include AI-powered tools, creative services access, and marketing automation. / Flexibilné ceny pre každú potrebu. Od jednotlivých tvorcov po podnikové riešenia. Všetky plány obsahujú nástroje poháňané AI, prístup ku kreatívnym službám a automatizáciu marketingu."
tag="Pricing / Ceny"
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
columns={footerColumns}
bottomLeftText="© 2024 Aura. All rights reserved. / Všetky práva vyhradené."
bottomRightText="Made with ✨ by Aura Team / Vytvorené s ✨ tímom Aura"
/>
</div>
</ThemeProvider>
);
}