Update src/app/testimonials/page.tsx
This commit is contained in:
@@ -23,8 +23,7 @@ export default function TestimonialsPage() {
|
||||
|
||||
const footerColumns = [
|
||||
{
|
||||
title: "Product",
|
||||
items: [
|
||||
title: "Product", items: [
|
||||
{ label: "Features", href: "services" },
|
||||
{ label: "Pricing", href: "pricing" },
|
||||
{ label: "Security", href: "#" },
|
||||
@@ -32,8 +31,7 @@ export default function TestimonialsPage() {
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
title: "Company", items: [
|
||||
{ label: "About", href: "about" },
|
||||
{ label: "Blog", href: "#" },
|
||||
{ label: "Careers", href: "#" },
|
||||
@@ -41,8 +39,7 @@ export default function TestimonialsPage() {
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Resources",
|
||||
items: [
|
||||
title: "Resources", items: [
|
||||
{ label: "Documentation", href: "#" },
|
||||
{ label: "API Reference", href: "#" },
|
||||
{ label: "Support", href: "#" },
|
||||
@@ -72,9 +69,7 @@ export default function TestimonialsPage() {
|
||||
id: item.id === "/" ? "/" : item.id,
|
||||
}))}
|
||||
button={{
|
||||
text: "Get Started",
|
||||
href: "contact",
|
||||
}}
|
||||
text: "Get Started", href: "contact"}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -85,29 +80,17 @@ export default function TestimonialsPage() {
|
||||
author="James Carter, CEO at TechFlow"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/close-up-portrait-bearded-smiling-black-man-wool-suit_613910-16049.jpg",
|
||||
alt: "James Carter",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/close-up-portrait-bearded-smiling-black-man-wool-suit_613910-16049.jpg", alt: "James Carter"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/businesswoman-working-warehouse_329181-12811.jpg",
|
||||
alt: "Lisa Anderson",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/businesswoman-working-warehouse_329181-12811.jpg", alt: "Lisa Anderson"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/portrait-grey-haired-businessman-standing_74855-10324.jpg",
|
||||
alt: "Robert Taylor",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/portrait-grey-haired-businessman-standing_74855-10324.jpg", alt: "Robert Taylor"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/portrait-senior-woman-professional-blazer-outdoors-laptop_23-2150296623.jpg",
|
||||
alt: "Amanda White",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/portrait-senior-woman-professional-blazer-outdoors-laptop_23-2150296623.jpg", alt: "Amanda White"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/close-up-calm-businessman-calm-with-crossed-arms_1139-203.jpg",
|
||||
alt: "Jennifer Lee",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/close-up-calm-businessman-calm-with-crossed-arms_1139-203.jpg", alt: "Jennifer Lee"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/happy-businessman-folding-his-arms-with-is-colleagues-background_23-2147900063.jpg",
|
||||
alt: "Mark Johnson",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/happy-businessman-folding-his-arms-with-is-colleagues-background_23-2147900063.jpg", alt: "Mark Johnson"},
|
||||
]}
|
||||
ratingAnimation="slide-up"
|
||||
avatarsAnimation="slide-up"
|
||||
@@ -123,43 +106,17 @@ export default function TestimonialsPage() {
|
||||
tagIcon={Star}
|
||||
plans={[
|
||||
{
|
||||
id: "1",
|
||||
badge: "Startup Growth",
|
||||
price: "3x ROI",
|
||||
subtitle: "Average growth for tech startups",
|
||||
features: [
|
||||
"Website redesign",
|
||||
"SEO optimization",
|
||||
"Performance improvements",
|
||||
"First 3 months support",
|
||||
],
|
||||
id: "1", badge: "Startup Growth", price: "3x ROI", subtitle: "Average growth for tech startups", features: [
|
||||
"Website redesign", "SEO optimization", "Performance improvements", "First 3 months support"],
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
badge: "E-commerce Success",
|
||||
badgeIcon: "TrendingUp",
|
||||
price: "2.5x Sales",
|
||||
subtitle: "Average sales increase for online stores",
|
||||
features: [
|
||||
"Platform development",
|
||||
"Payment integration",
|
||||
"Analytics setup",
|
||||
"Ongoing optimization",
|
||||
"6 months dedicated support",
|
||||
],
|
||||
id: "2", badge: "E-commerce Success", badgeIcon: Star,
|
||||
price: "2.5x Sales", subtitle: "Average sales increase for online stores", features: [
|
||||
"Platform development", "Payment integration", "Analytics setup", "Ongoing optimization", "6 months dedicated support"],
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
badge: "Enterprise Solutions",
|
||||
price: "Custom",
|
||||
subtitle: "Large-scale digital transformation",
|
||||
features: [
|
||||
"Full system architecture",
|
||||
"Custom integrations",
|
||||
"Team training",
|
||||
"Long-term partnership",
|
||||
"24/7 dedicated support",
|
||||
],
|
||||
id: "3", badge: "Enterprise Solutions", price: "Custom", subtitle: "Large-scale digital transformation", features: [
|
||||
"Full system architecture", "Custom integrations", "Team training", "Long-term partnership", "24/7 dedicated support"],
|
||||
},
|
||||
]}
|
||||
textboxLayout="default"
|
||||
@@ -175,35 +132,17 @@ export default function TestimonialsPage() {
|
||||
tag="FAQ"
|
||||
faqs={[
|
||||
{
|
||||
id: "1",
|
||||
title: "How quickly did you see results?",
|
||||
content: "Most of our clients see measurable improvements within the first 3-4 weeks of project launch. We focus on quick wins and long-term strategic growth simultaneously.",
|
||||
},
|
||||
id: "1", title: "How quickly did you see results?", content: "Most of our clients see measurable improvements within the first 3-4 weeks of project launch. We focus on quick wins and long-term strategic growth simultaneously."},
|
||||
{
|
||||
id: "2",
|
||||
title: "What makes Webild Studio different?",
|
||||
content: "We combine strategic thinking with technical excellence. Our team doesn't just build - we understand your business goals and create solutions that drive real ROI.",
|
||||
},
|
||||
id: "2", title: "What makes Webild Studio different?", content: "We combine strategic thinking with technical excellence. Our team doesn't just build - we understand your business goals and create solutions that drive real ROI."},
|
||||
{
|
||||
id: "3",
|
||||
title: "Do you provide post-launch support?",
|
||||
content: "Absolutely. We offer comprehensive support packages ranging from basic maintenance to full partnership models where we act as an extension of your team.",
|
||||
},
|
||||
id: "3", title: "Do you provide post-launch support?", content: "Absolutely. We offer comprehensive support packages ranging from basic maintenance to full partnership models where we act as an extension of your team."},
|
||||
{
|
||||
id: "4",
|
||||
title: "How do you measure success?",
|
||||
content: "We establish clear KPIs before project start. We track metrics like conversion rates, user engagement, performance benchmarks, and business growth targets throughout our partnership.",
|
||||
},
|
||||
id: "4", title: "How do you measure success?", content: "We establish clear KPIs before project start. We track metrics like conversion rates, user engagement, performance benchmarks, and business growth targets throughout our partnership."},
|
||||
{
|
||||
id: "5",
|
||||
title: "Can you handle complex integrations?",
|
||||
content: "Yes, our team specializes in complex integrations with third-party platforms, APIs, payment systems, CRMs, and enterprise solutions.",
|
||||
},
|
||||
id: "5", title: "Can you handle complex integrations?", content: "Yes, our team specializes in complex integrations with third-party platforms, APIs, payment systems, CRMs, and enterprise solutions."},
|
||||
{
|
||||
id: "6",
|
||||
title: "What's your development process like?",
|
||||
content: "We follow an agile approach with regular sprint cycles, client updates, and collaborative feedback loops. Transparency and communication are core to our process.",
|
||||
},
|
||||
id: "6", title: "What's your development process like?", content: "We follow an agile approach with regular sprint cycles, client updates, and collaborative feedback loops. Transparency and communication are core to our process."},
|
||||
]}
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
@@ -217,17 +156,12 @@ export default function TestimonialsPage() {
|
||||
text="Inspired by our client success stories? Let's discuss how we can help your business achieve similar results."
|
||||
animationType="background-highlight"
|
||||
background={{
|
||||
variant: "circleGradient",
|
||||
}}
|
||||
variant: "plain"}}
|
||||
buttons={[
|
||||
{
|
||||
text: "Schedule Consultation",
|
||||
href: "contact",
|
||||
},
|
||||
text: "Schedule Consultation", href: "contact"},
|
||||
{
|
||||
text: "View Case Studies",
|
||||
href: "services",
|
||||
},
|
||||
text: "View Case Studies", href: "services"},
|
||||
]}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
@@ -235,7 +169,7 @@ export default function TestimonialsPage() {
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/aesthetic-background-with-gradient-sunset-projector-lamp_53876-103679.jpg?_wi=4"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/aesthetic-background-with-gradient-sunset-projector-lamp_53876-103679.jpg"
|
||||
imageAlt="Footer background pattern"
|
||||
logoText="Webild Studio"
|
||||
copyrightText="© 2025 Webild Studio. All rights reserved."
|
||||
|
||||
Reference in New Issue
Block a user