diff --git a/src/app/pricing/page.tsx b/src/app/pricing/page.tsx
index 00fc4ec..d788748 100644
--- a/src/app/pricing/page.tsx
+++ b/src/app/pricing/page.tsx
@@ -1,11 +1,16 @@
"use client";
+import Link from "next/link";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
+import HeroLogo from "@/components/sections/hero/HeroLogo";
+import FeatureCardTwentySeven from "@/components/sections/feature/FeatureCardTwentySeven";
import PricingCardTwo from "@/components/sections/pricing/PricingCardTwo";
+import MetricCardTen from "@/components/sections/metrics/MetricCardTen";
+import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCardSix";
import FaqSplitText from "@/components/sections/faq/FaqSplitText";
import FooterBase from "@/components/sections/footer/FooterBase";
-import Link from "next/link";
+import { Zap, Star, Crown } from "lucide-react";
export default function PricingPage() {
const navItems = [
@@ -17,17 +22,15 @@ export default function PricingPage() {
const footerColumns = [
{
- title: "Product",
- items: [
- { label: "Features", href: "/#features" },
+ title: "Product", items: [
+ { label: "Features", href: "#features" },
{ label: "Pricing", href: "/pricing" },
- { label: "How It Works", href: "/#how-it-works" },
+ { label: "How It Works", href: "#how-it-works" },
{ label: "Dashboard", href: "/dashboard" },
],
},
{
- title: "Company",
- items: [
+ title: "Company", items: [
{ label: "About Us", href: "#" },
{ label: "Blog", href: "#" },
{ label: "Careers", href: "#" },
@@ -35,8 +38,7 @@ export default function PricingPage() {
],
},
{
- title: "Legal",
- items: [
+ title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Cookie Policy", href: "#" },
@@ -44,8 +46,7 @@ export default function PricingPage() {
],
},
{
- title: "Connect",
- items: [
+ title: "Connect", items: [
{ label: "Twitter", href: "https://twitter.com" },
{ label: "GitHub", href: "https://github.com" },
{ label: "LinkedIn", href: "https://linkedin.com" },
@@ -71,6 +72,21 @@ export default function PricingPage() {