From 92bf0762d277f13f41fae9fd137bf18d48b9bdf7 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Mon, 20 Apr 2026 13:36:33 +0000 Subject: [PATCH 1/4] Bob AI: Adjust the global border-radius values to make elements less --- src/index.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.css b/src/index.css index ec9cce8..e76c43a 100644 --- a/src/index.css +++ b/src/index.css @@ -16,7 +16,7 @@ --background-accent: #222222; /* @layout/border-radius/rounded */ - --radius: 0.5rem; + --radius: 0.25rem; /* @layout/content-width/medium */ --width-content-width: clamp(40rem, 80vw, 100rem); -- 2.49.1 From 28d2012366a7de2019a27c9bcd883f0ad776e6e8 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Mon, 20 Apr 2026 13:37:17 +0000 Subject: [PATCH 2/4] Bob AI: Implement special hover animations for all interactive butto --- src/styles/animations.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/styles/animations.css b/src/styles/animations.css index a3a32f2..e700ade 100644 --- a/src/styles/animations.css +++ b/src/styles/animations.css @@ -191,12 +191,12 @@ @keyframes button-hover-effect { 0% { - transform: translateY(0); + transform: translateY(0) scale(1); } 50% { - transform: translateY(-4px); + transform: translateY(-4px) scale(1.05); } 100% { - transform: translateY(-2px); + transform: translateY(-2px) scale(1.02); } } -- 2.49.1 From 2c625df90948a794af8f7d97a52ac731f3bb5873 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Mon, 20 Apr 2026 13:38:07 +0000 Subject: [PATCH 3/4] Bob AI: Add a 'Trusted by over 2000 agencies' tag to the hero sectio --- src/App.tsx | 4 ++-- src/components/ui/HeroTrustedBy.tsx | 25 +++++++++++++++++++++++++ 2 files changed, 27 insertions(+), 2 deletions(-) create mode 100644 src/components/ui/HeroTrustedBy.tsx diff --git a/src/App.tsx b/src/App.tsx index 27de23e..6e35607 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -9,7 +9,7 @@ import NavbarCentered from '@/components/ui/NavbarCentered'; import PricingLayeredCards from '@/components/sections/pricing/PricingLayeredCards'; import SocialProofMarquee from '@/components/sections/social-proof/SocialProofMarquee'; import TestimonialRatingCards from '@/components/sections/testimonial/TestimonialRatingCards'; -import TrustedBy from '@/components/ui/TrustedBy'; +import HeroTrustedBy from '@/components/ui/HeroTrustedBy'; export default function App() { return ( @@ -57,7 +57,7 @@ export default function App() { imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AM9hp4M6eDzEwMxDU5gYArbELf/a-sleek-modern-high-tech-marketing-offic-1776690837523-6e0bf547.png" />
- +
diff --git a/src/components/ui/HeroTrustedBy.tsx b/src/components/ui/HeroTrustedBy.tsx new file mode 100644 index 0000000..e2e2e37 --- /dev/null +++ b/src/components/ui/HeroTrustedBy.tsx @@ -0,0 +1,25 @@ +const avatars = [ + "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AM9hp4M6eDzEwMxDU5gYArbELf/professional-headshot-of-a-japanese-male-1776690846328-d57aee35.png", + "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AM9hp4M6eDzEwMxDU5gYArbELf/professional-headshot-of-a-female-busine-1776690854791-b9f5ea1f.png", + "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AM9hp4M6eDzEwMxDU5gYArbELf/professional-headshot-of-a-young-japanes-1776690864881-b5f3321c.png", +]; + +const HeroTrustedBy = () => { + return ( +
+
+ {avatars.map((src, index) => ( + {`Trusted + ))} +
+ Trusted by over 2000 agencies +
+ ); +}; + +export default HeroTrustedBy; \ No newline at end of file -- 2.49.1 From d812539488b57da0928128f678ce7a0c59b39e4f Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Mon, 20 Apr 2026 13:39:02 +0000 Subject: [PATCH 4/4] Bob AI: Modify the navigation bar to have a fixed, floating design. --- src/index.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/index.css b/src/index.css index e76c43a..d658447 100644 --- a/src/index.css +++ b/src/index.css @@ -141,6 +141,15 @@ body { min-height: 100vh; overscroll-behavior: none; overscroll-behavior-y: none; + padding-top: 5rem; +} + +#nav { + position: fixed; + top: 0; + width: 100%; + z-index: 1000; + background-color: var(--background); } h1, -- 2.49.1