diff --git a/src/app/page.tsx b/src/app/page.tsx index 1434c8e..78f5c87 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -12,7 +12,7 @@ import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaA import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import PricingCardThree from '@/components/sections/pricing/PricingCardThree'; import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; -import { Globe, LayoutDashboard, Settings, Shield, Star, User, Zap } from "lucide-react"; +import { Cpu, Globe, LayoutDashboard, Settings, Shield, Star, User, Zap } from "lucide-react"; export default function LandingPage() { return ( @@ -32,22 +32,10 @@ export default function LandingPage() {
@@ -213,41 +125,11 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={false} testimonials={[ - { - id: "1", - name: "Sarah Chen", - handle: "@sarah", - testimonial: "Brainyx is the gold standard for high-scale processing.", - imageSrc: "http://img.b2bpic.net/free-vector/artificial-intelligence-landing-page-template_23-2148358999.jpg?_wi=6", - }, - { - id: "2", - name: "John Doe", - handle: "@jd", - testimonial: "The performance gains were immediate.", - imageSrc: "http://img.b2bpic.net/free-vector/artificial-intelligence-landing-page-template_23-2148358999.jpg?_wi=7", - }, - { - id: "3", - name: "Emma Smith", - handle: "@es", - testimonial: "Unparalleled security features.", - imageSrc: "http://img.b2bpic.net/free-vector/artificial-intelligence-landing-page-template_23-2148358999.jpg?_wi=8", - }, - { - id: "4", - name: "Mark Wilson", - handle: "@mw", - testimonial: "Finally, a platform that scales with us.", - imageSrc: "http://img.b2bpic.net/free-vector/artificial-intelligence-landing-page-template_23-2148358999.jpg?_wi=9", - }, - { - id: "5", - name: "Alex Rivera", - handle: "@arivera", - testimonial: "The API integration was flawless and saved us months.", - imageSrc: "http://img.b2bpic.net/free-vector/artificial-intelligence-landing-page-template_23-2148358999.jpg?_wi=10", - }, + { id: "1", name: "Sarah Chen", handle: "@sarah", testimonial: "Brainyx is the gold standard for high-scale processing.", imageSrc: "http://img.b2bpic.net/free-vector/artificial-intelligence-landing-page-template_23-2148358999.jpg" }, + { id: "2", name: "John Doe", handle: "@jd", testimonial: "The performance gains were immediate.", imageSrc: "http://img.b2bpic.net/free-vector/artificial-intelligence-landing-page-template_23-2148358999.jpg" }, + { id: "3", name: "Emma Smith", handle: "@es", testimonial: "Unparalleled security features.", imageSrc: "http://img.b2bpic.net/free-vector/artificial-intelligence-landing-page-template_23-2148358999.jpg" }, + { id: "4", name: "Mark Wilson", handle: "@mw", testimonial: "Finally, a platform that scales with us.", imageSrc: "http://img.b2bpic.net/free-vector/artificial-intelligence-landing-page-template_23-2148358999.jpg" }, + { id: "5", name: "Alex Rivera", handle: "@arivera", testimonial: "The API integration was flawless and saved us months.", imageSrc: "http://img.b2bpic.net/free-vector/artificial-intelligence-landing-page-template_23-2148358999.jpg" }, ]} title="ENTERPRISE PROOF" description="Join global brands trusting Brainyx." @@ -260,53 +142,9 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={false} plans={[ - { - id: "starter", - price: "$499", - name: "Starter", - buttons: [ - { - text: "Get Started", - href: "#", - }, - ], - features: [ - "Core features", - "1 node", - ], - }, - { - id: "pro", - price: "$999", - name: "Professional", - buttons: [ - { - text: "Go Pro", - href: "#", - }, - ], - features: [ - "Pro features", - "5 nodes", - "Priority support", - ], - }, - { - id: "enterprise", - price: "$2999", - name: "Enterprise", - buttons: [ - { - text: "Contact Sales", - href: "#", - }, - ], - features: [ - "Unlimited access", - "Infinite nodes", - "Dedicated support", - ], - }, + { id: "starter", price: "$499", name: "Starter", buttons: [{ text: "Get Started", href: "#" }], features: ["Core features", "1 node"] }, + { id: "pro", price: "$999", name: "Professional", buttons: [{ text: "Go Pro", href: "#" }], features: ["Pro features", "5 nodes", "Priority support"] }, + { id: "enterprise", price: "$2999", name: "Enterprise", buttons: [{ text: "Contact Sales", href: "#" }], features: ["Unlimited access", "Infinite nodes", "Dedicated support"] }, ]} title="PRICING PLANS" description="Scalable tiers to match your growth." @@ -318,21 +156,9 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={false} faqs={[ - { - id: "1", - title: "Is Brainyx scalable?", - content: "Yes, completely elastic infrastructure.", - }, - { - id: "2", - title: "Do you support cloud?", - content: "We support AWS, Azure, and GCP.", - }, - { - id: "3", - title: "What about security?", - content: "We are ISO27001 certified.", - }, + { id: "1", title: "Is Brainyx scalable?", content: "Yes, completely elastic infrastructure." }, + { id: "2", title: "Do you support cloud?", content: "We support AWS, Azure, and GCP." }, + { id: "3", title: "What about security?", content: "We are ISO27001 certified." }, ]} title="FREQUENTLY ASKED" description="Common questions about Brainyx." @@ -343,18 +169,11 @@ export default function LandingPage() {