diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx
index 95481ab..7a2b8a1 100644
--- a/src/app/about/page.tsx
+++ b/src/app/about/page.tsx
@@ -44,7 +44,7 @@ export default function AboutPage() {
title="Our Mission: Democratize Elite Technology"
description="Revolution Digital was founded on a simple belief: enterprise-grade digital tools should not be gatekept by budget. We empower small businesses with the same technology weapons that Fortune 500 companies use, at a fraction of the cost. Speed, design excellence, and affordability are not tradeoffs—they are our standard."
tag="Who We Are"
- imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Am6HmwYYicG9DTaOhl5cOOUSDv/modern-illustration-of-a-small-business--1773185809119-e041a84e.png?_wi=2"
+ imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Am6HmwYYicG9DTaOhl5cOOUSDv/modern-illustration-of-a-small-business--1773185809119-e041a84e.png"
imageAlt="Our mission illustrated"
buttons={[{ text: "Explore Our Services", href: "/" }]}
useInvertedBackground={true}
@@ -56,25 +56,19 @@ export default function AboutPage() {
title="The Revolution Pillars"
description="These three commitments define everything we do."
tag="Our Values"
- imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Am6HmwYYicG9DTaOhl5cOOUSDv/performance-metrics-visualization-showin-1773185808806-7f04d2bc.png?_wi=2"
+ imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Am6HmwYYicG9DTaOhl5cOOUSDv/performance-metrics-visualization-showin-1773185808806-7f04d2bc.png"
imageAlt="Our core values visualized"
mediaPosition="left"
mediaAnimation="none"
accordionItems={[
{
- id: "1",
- title: "Relentless Transparency",
- content: "No hidden fees. No surprise charges. No vendor lock-in. We believe in clear pricing, honest communication, and radically transparent partnerships. You'll always know what you're paying for and why."
+ id: "1", title: "Relentless Transparency", content: "No hidden fees. No surprise charges. No vendor lock-in. We believe in clear pricing, honest communication, and radically transparent partnerships. You'll always know what you're paying for and why."
},
{
- id: "2",
- title: "Obsessed with Excellence",
- content: "We don't cut corners. Every line of code is optimized. Every design pixel is purposeful. Every interaction is tested. Excellence is not a luxury—it's our baseline."
+ id: "2", title: "Obsessed with Excellence", content: "We don't cut corners. Every line of code is optimized. Every design pixel is purposeful. Every interaction is tested. Excellence is not a luxury—it's our baseline."
},
{
- id: "3",
- title: "Committed to Your Success",
- content: "Your growth is our mission. We provide 24/7 support, monthly strategy sessions, and quarterly performance reviews. We're not just a vendor—we're your digital transformation partner."
+ id: "3", title: "Committed to Your Success", content: "Your growth is our mission. We provide 24/7 support, monthly strategy sessions, and quarterly performance reviews. We're not just a vendor—we're your digital transformation partner."
}
]}
buttons={[{ text: "Start Your Journey", href: "/" }]}
@@ -92,7 +86,7 @@ export default function AboutPage() {
{ text: "Schedule a Consultation", href: "/contact" },
{ text: "View Pricing", href: "/" }
]}
- background={{ variant: "circleGradient" }}
+ background={{ variant: "plain" }}
useInvertedBackground={true}
/>
@@ -101,8 +95,7 @@ export default function AboutPage() {
@@ -101,8 +95,7 @@ export default function ContactPage() {
@@ -233,8 +177,7 @@ export default function HomePage() {
@@ -117,8 +84,7 @@ export default function PricingPage() {
(function SvgTextLogo({
- logoText,
- adjustHeightFactor,
- verticalAlign = "top",
- className = "",
-}) {
- const { svgRef, textRef, viewBox, aspectRatio } = useSvgTextLogo(logoText, false, adjustHeightFactor);
-
+const SvgTextLogo: React.FC = ({
+ text,
+ className = '',
+ fontSize = 32,
+ fontWeight = 700,
+ fill = 'currentColor',
+ textAnchor = 'middle',
+ dominantBaseline = 'central',
+}) => {
return (
);
-});
-
-SvgTextLogo.displayName = "SvgTextLogo";
+};
export default SvgTextLogo;