From 29f001654e3da1af1d39b541fc3ef2d6baada675 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 22 Apr 2026 04:35:57 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 316 ++++++++--------------------------------------- 1 file changed, 49 insertions(+), 267 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index bfc23e5..e352ae7 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -12,7 +12,7 @@ import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarS import PricingCardThree from '@/components/sections/pricing/PricingCardThree'; import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard'; import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen'; -import { Box, Cloud, Globe, Lock, Server, Shield, Zap } from "lucide-react"; +import { Box, Cloud, Cpu, Globe, Lock, Shield, Zap } from "lucide-react"; export default function LandingPage() { return ( @@ -32,22 +32,10 @@ export default function LandingPage() { @@ -312,49 +172,9 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={true} plans={[ - { - id: "basic", - name: "Starter", - price: "$99", - features: [ - "Feature A", - "Feature B", - ], - buttons: [ - { - text: "Select", - }, - ], - }, - { - id: "pro", - name: "Professional", - price: "$299", - features: [ - "Feature A", - "Feature B", - "Feature C", - ], - buttons: [ - { - text: "Select", - }, - ], - }, - { - id: "enterprise", - name: "Enterprise", - price: "Custom", - features: [ - "All Features", - "24/7 Support", - ], - buttons: [ - { - text: "Select", - }, - ], - }, + { id: "basic", name: "Starter", price: "$99", features: ["Feature A", "Feature B"], buttons: [{ text: "Select" }] }, + { id: "pro", name: "Professional", price: "$299", features: ["Feature A", "Feature B", "Feature C"], buttons: [{ text: "Select" }] }, + { id: "enterprise", name: "Enterprise", price: "Custom", features: ["All Features", "24/7 Support"], buttons: [{ text: "Select" }] }, ]} title="Transparent Pricing" description="Choose the best plan for you." @@ -365,21 +185,9 @@ export default function LandingPage() { -- 2.49.1