diff --git a/src/App.tsx b/src/App.tsx
index ab299b5..64e20a6 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -6,15 +6,52 @@ import AboutPage from "@/pages/AboutPage";
import ContactPage from "@/pages/ContactPage";
import TeamTestimonialsPage from "@/pages/TeamTestimonialsPage";
import PricingPage from "@/pages/PricingPage";
+import PricingSimpleCards from "@/components/sections/pricing/PricingSimpleCards";
+
export default function App() {
return (
-
- } />
- } />
- } />
- } />
- } />
- } />
-
+ <>
+
+ } />
+ } />
+ } />
+ } />
+ } />
+ } />
+
+
+ >
);
-}
+}
\ No newline at end of file
diff --git a/src/components/sections/pricing/PricingSimpleCards.tsx b/src/components/sections/pricing/PricingSimpleCards.tsx
index eef1dc7..2a2f244 100644
--- a/src/components/sections/pricing/PricingSimpleCards.tsx
+++ b/src/components/sections/pricing/PricingSimpleCards.tsx
@@ -9,6 +9,8 @@ type PricingPlan = {
price: string;
description: string;
features: string[];
+ buttonText?: string;
+ buttonHref?: string;
};
const PricingSimpleCards = ({
@@ -71,7 +73,7 @@ const PricingSimpleCards = ({
-
+
{plan.features.map((feature) => (
@@ -81,6 +83,12 @@ const PricingSimpleCards = ({
))}
+
+ {(plan.buttonText || plan.buttonHref) && (
+
+
+
+ )}
))}
@@ -89,4 +97,4 @@ const PricingSimpleCards = ({
);
-export default PricingSimpleCards;
+export default PricingSimpleCards;
\ No newline at end of file