diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index abbc2ca..ebe0ae6 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -1,5 +1,5 @@ import FooterSimpleCard from '@/components/sections/footer/FooterSimpleCard'; -import NavbarFloating from '@/components/ui/NavbarFloating'; +import NavbarFloatingLogo from '@/components/ui/NavbarFloatingLogo'; import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; import SiteBackgroundSlot from "@/components/ui/SiteBackgroundSlot"; import { Outlet } from 'react-router-dom'; @@ -31,6 +31,10 @@ export default function Layout() { "name": "Metrics", "href": "#metrics" }, + { + "name": "Pricing", + "href": "#pricing" + }, { "name": "Faq", "href": "#faq" @@ -41,8 +45,9 @@ export default function Layout() { - @@ -25,6 +26,7 @@ export default function HomePage(): React.JSX.Element { + diff --git a/src/pages/HomePage/sections/Pricing.tsx b/src/pages/HomePage/sections/Pricing.tsx new file mode 100644 index 0000000..876efc9 --- /dev/null +++ b/src/pages/HomePage/sections/Pricing.tsx @@ -0,0 +1,25 @@ +import ImageOrVideo from '@/components/ui/ImageOrVideo'; +import ScrollReveal from '@/components/ui/ScrollReveal'; + +export default function PricingSection() { + return ( +
+
+ +
+

Our Pricing

+

Transparent pricing for all our services.

+
+
+ +
+ +
+
+
+
+ ); +} \ No newline at end of file