From 69fdadf86bd7711cd70fc1d2cf7cd7bd6f020244 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Mon, 22 Jun 2026 11:28:29 +0000 Subject: [PATCH] Bob AI: Add logo to navbar and create pricing section --- src/components/Layout.tsx | 9 +++++++-- src/pages/HomePage.tsx | 4 +++- src/pages/HomePage/sections/Pricing.tsx | 25 +++++++++++++++++++++++++ 3 files changed, 35 insertions(+), 3 deletions(-) create mode 100644 src/pages/HomePage/sections/Pricing.tsx 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