Merge version_1 into main #2

Merged
bender merged 1 commits from version_1 into main 2026-03-29 07:53:05 +00:00

View File

@@ -6,8 +6,9 @@ import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import MetricCardThree from '@/components/sections/metrics/MetricCardThree';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo';
import { BarChart, Users, Zap } from 'lucide-react';
export default function LandingPage() {
export default function PricingPage() {
return (
<ThemeProvider
defaultButtonVariant="hover-magnetic"
@@ -26,21 +27,13 @@ export default function LandingPage() {
<NavbarStyleFullscreen
navItems={[
{
name: "Home",
id: "/",
},
name: "Home", id: "/"},
{
name: "Services",
id: "/services",
},
name: "Services", id: "/services"},
{
name: "Pricing",
id: "/pricing",
},
name: "Pricing", id: "/pricing"},
{
name: "Contact",
id: "/contact",
},
name: "Contact", id: "/contact"},
]}
brandName="ProService AI"
/>
@@ -53,38 +46,20 @@ export default function LandingPage() {
useInvertedBackground={false}
plans={[
{
id: "p1",
badge: "Basic",
price: "$99",
subtitle: "For small business",
buttons: [
id: "p1", badge: "Basic", price: "$99", subtitle: "For small business", buttons: [
{
text: "Purchase",
href: "/contact",
},
text: "Purchase", href: "/contact"},
],
features: [
"1 Chatbot",
"Web Setup",
"Basic Marketing",
],
"1 Chatbot", "Web Setup", "Basic Marketing"],
},
{
id: "p2",
badge: "Popular",
price: "$299",
subtitle: "For scale",
buttons: [
id: "p2", badge: "Popular", price: "$299", subtitle: "For scale", buttons: [
{
text: "Purchase",
href: "/contact",
},
text: "Purchase", href: "/contact"},
],
features: [
"5 Chatbots",
"Premium Web",
"Full Marketing",
],
"5 Chatbots", "Premium Web", "Full Marketing"],
},
]}
title="Tiered Plans"
@@ -99,19 +74,13 @@ export default function LandingPage() {
useInvertedBackground={false}
metrics={[
{
id: "m1",
title: "Projects",
value: "500+",
id: "m1", title: "Projects", value: "500+", icon: BarChart
},
{
id: "m2",
title: "Clients",
value: "200+",
id: "m2", title: "Clients", value: "200+", icon: Users
},
{
id: "m3",
title: "Uptime",
value: "99.9%",
id: "m3", title: "Uptime", value: "99.9%", icon: Zap
},
]}
title="Why Choose Us"
@@ -123,20 +92,13 @@ export default function LandingPage() {
<FooterBaseReveal
columns={[
{
title: "Links",
items: [
title: "Links", items: [
{
label: "Services",
href: "/services",
},
label: "Services", href: "/services"},
{
label: "Pricing",
href: "/pricing",
},
label: "Pricing", href: "/pricing"},
{
label: "Contact",
href: "/contact",
},
label: "Contact", href: "/contact"},
],
},
]}