From a6c39301597de4e4fe05aa9f0e833296613aac50 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Mon, 20 Apr 2026 13:56:37 +0000 Subject: [PATCH 1/2] Bob AI: Add the '[Block: Legal Section]' component. --- src/App.tsx | 5 ++++ .../sections/legal/LegalSection.tsx | 27 +++++++++++++++++++ 2 files changed, 32 insertions(+) create mode 100644 src/components/sections/legal/LegalSection.tsx diff --git a/src/App.tsx b/src/App.tsx index f3a55d3..198f54c 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -8,6 +8,7 @@ import NavbarCentered from '@/components/ui/NavbarCentered'; import PricingSimpleCards from '@/components/sections/pricing/PricingSimpleCards'; import ProductVariantCards from '@/components/sections/product/ProductVariantCards'; import TestimonialRatingCards from '@/components/sections/testimonial/TestimonialRatingCards'; +import LegalSection from '@/components/sections/legal/LegalSection'; export default function App() { return ( @@ -269,6 +270,10 @@ export default function App() { /> + + -
- -
+
+ + + ); +} \ No newline at end of file diff --git a/src/index.css b/src/index.css index 9398ce9..9a62d31 100644 --- a/src/index.css +++ b/src/index.css @@ -122,6 +122,12 @@ --text-9xl: var(--text-9xl); } +#pricing { + background: var(--background); + padding-top: 5rem; + padding-bottom: 5rem; +} + * { scrollbar-width: thin; scrollbar-color: rgba(255, 255, 255, 1) rgba(255, 255, 255, 0); -- 2.49.1