diff --git a/src/app/features/page.tsx b/src/app/features/page.tsx
index b70f70e..11e74d1 100644
--- a/src/app/features/page.tsx
+++ b/src/app/features/page.tsx
@@ -3,10 +3,21 @@
import Link from "next/link";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
-import SplitAbout from "@/components/sections/about/SplitAbout";
+import FeatureHoverPattern from "@/components/sections/feature/featureHoverPattern/FeatureHoverPattern";
import PricingCardEight from "@/components/sections/pricing/PricingCardEight";
import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
-import { Zap, Target, Globe, Users, DollarSign, Gift, Sparkles, Crown } from "lucide-react";
+import {
+ Zap,
+ TrendingUp,
+ Palette,
+ Monitor,
+ Upload,
+ Lock,
+ DollarSign,
+ Gift,
+ Sparkles,
+ Crown,
+} from "lucide-react";
export default function FeaturesPage() {
const navItems = [
@@ -39,33 +50,41 @@ export default function FeaturesPage() {
/>
-
-
+
@@ -81,28 +100,19 @@ export default function FeaturesPage() {
plans={[
{
id: "free", badge: "Free Trial", badgeIcon: Gift,
- price: "$0", subtitle: "Perfect for getting started", buttons: [
- {
- text: "Get Started", href: "/signup"},
- ],
+ price: "$0", subtitle: "Perfect for getting started", buttons: [{ text: "Get Started", href: "/signup" }],
features: [
"1 AI-generated script per day", "1 animated thumbnail per day", "Access to trending ideas", "Basic image upload (up to 5MB)", "YouTube, TikTok, Instagram, Facebook support", "Mobile app access", "Community support"],
},
{
id: "monthly", badge: "Most Popular", badgeIcon: Sparkles,
- price: "$10", subtitle: "Billed monthly. Great for consistent creators.", buttons: [
- {
- text: "Subscribe Now", href: "/checkout?plan=monthly"},
- ],
+ price: "$10", subtitle: "Billed monthly. Great for consistent creators.", buttons: [{ text: "Subscribe Now", href: "/checkout?plan=monthly" }],
features: [
"Unlimited AI-generated scripts", "Unlimited animated thumbnails", "Advanced customization options", "Unlimited image uploads", "All platform formats supported", "Priority email support", "Download in HD quality", "Monthly content calendar", "Early access to new features"],
},
{
id: "lifetime", badge: "Best Value", badgeIcon: Crown,
- price: "$50", subtitle: "One-time payment. Unlimited access forever.", buttons: [
- {
- text: "Buy Lifetime", href: "/checkout?plan=lifetime"},
- ],
+ price: "$50", subtitle: "One-time payment. Unlimited access forever.", buttons: [{ text: "Buy Lifetime", href: "/checkout?plan=lifetime" }],
features: [
"Unlimited everything forever", "All current and future features", "Lifetime updates included", "Priority support 24/7", "Team collaboration (up to 5 users)", "Advanced analytics dashboard", "Custom branding options", "API access for integrations", "No subscription. Ever."],
},
@@ -113,10 +123,10 @@ export default function FeaturesPage() {
);
-}
\ No newline at end of file
+}