diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 3c284de..d38b59f 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -34,6 +34,10 @@ export default function Layout() { { "name": "Products", "href": "#products" + }, + { + "name": "Pricing", + "href": "/pricing" } ]; diff --git a/src/pages/PricingPage.tsx b/src/pages/PricingPage.tsx new file mode 100644 index 0000000..23c7aaa --- /dev/null +++ b/src/pages/PricingPage.tsx @@ -0,0 +1,64 @@ +import PricingHighlightedCards from '@/components/sections/pricing/PricingHighlightedCards'; +import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; + +export default function PricingPage() { + return ( +