From f215ad7ddaa643e1a9c6cae3dc8ac92712996fb2 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Mon, 22 Jun 2026 18:03:16 +0000 Subject: [PATCH] Bob AI: Updated buttons with Google Form link and added signup secti --- src/pages/HomePage.tsx | 4 +++- src/pages/HomePage/sections/Hero.tsx | 4 ++-- src/pages/HomePage/sections/Join.tsx | 16 +++++-------- src/pages/HomePage/sections/Signup.tsx | 31 ++++++++++++++++++++++++++ 4 files changed, 41 insertions(+), 14 deletions(-) create mode 100644 src/pages/HomePage/sections/Signup.tsx diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index f32e473..5313f28 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -12,7 +12,8 @@ import TestimonialsSection from './HomePage/sections/Testimonials'; import FaqSection from './HomePage/sections/Faq'; import JoinSection from './HomePage/sections/Join'; -export default function HomePage(): React.JSX.Element { + +import SignupSection from './HomePage/sections/Signup';export default function HomePage(): React.JSX.Element { return ( <> @@ -28,6 +29,7 @@ export default function HomePage(): React.JSX.Element { + ); } diff --git a/src/pages/HomePage/sections/Hero.tsx b/src/pages/HomePage/sections/Hero.tsx index b3dd040..7636932 100644 --- a/src/pages/HomePage/sections/Hero.tsx +++ b/src/pages/HomePage/sections/Hero.tsx @@ -10,8 +10,8 @@ export default function HeroSection(): React.JSX.Element { title="Turn Business Problems Into Growth Opportunities" tag="Growth Partner" description="Connect with skilled professionals helping businesses identify revenue leaks, improve conversions, and generate more qualified leads." - primaryButton={{"href":"#contact","text":"Request a Service"}} - secondaryButton={{"href":"#join","text":"Join as a Professional"}} + primaryButton={{"href":"https://docs.google.com/forms/d/e/1FAIpQLScAjftPYfxOizvMPDAHIjtv31_3ROM1yM-YYUbQpTQ8IHFziw/viewform?usp=publish-editor","text":"Request a Service"}} + secondaryButton={{"href":"https://docs.google.com/forms/d/e/1FAIpQLScAjftPYfxOizvMPDAHIjtv31_3ROM1yM-YYUbQpTQ8IHFziw/viewform?usp=publish-editor","text":"Join as a Professional"}} leftItems={[{"imageSrc":"http://img.b2bpic.net/free-photo/female-african-american-young-entrepreneur-looking-revenue-statistics-data-laptop-screen-accountant-analyzing-diagrams-computer-home-office-remote-bookkeeping-service_482257-48386.jpg"},{"imageSrc":"http://img.b2bpic.net/free-photo/business-report-graphs-charts-business-reports-pile-documents-business-concept_1150-2249.jpg"},{"imageSrc":"http://img.b2bpic.net/free-photo/digital-marketing-graph-statistics-analysis-finance-market-conce_53876-15838.jpg"}]} rightItems={[{"imageSrc":"http://img.b2bpic.net/free-photo/close-up-accounting-sales-statistics-computer-display_482257-122982.jpg"},{"imageSrc":"http://img.b2bpic.net/free-photo/determined-ceo-works-office-analyzing-infographics-setting-business-goals_482257-123120.jpg"}]} /> diff --git a/src/pages/HomePage/sections/Join.tsx b/src/pages/HomePage/sections/Join.tsx index db1f8c8..8d7266d 100644 --- a/src/pages/HomePage/sections/Join.tsx +++ b/src/pages/HomePage/sections/Join.tsx @@ -10,17 +10,11 @@ export default function JoinSection(): React.JSX.Element {
+ tag="Join Us" + text="Start Building Smarter Business Timelines Today." + primaryButton={{"href":"https://docs.google.com/forms/d/e/1FAIpQLScAjftPYfxOizvMPDAHIjtv31_3ROM1yM-YYUbQpTQ8IHFziw/viewform?usp=publish-editor","text":"Request Service"}} + secondaryButton={{"text":"Join as Pro","href":"https://docs.google.com/forms/d/e/1FAIpQLScAjftPYfxOizvMPDAHIjtv31_3ROM1yM-YYUbQpTQ8IHFziw/viewform?usp=publish-editor"}} + />
); diff --git a/src/pages/HomePage/sections/Signup.tsx b/src/pages/HomePage/sections/Signup.tsx new file mode 100644 index 0000000..33882d1 --- /dev/null +++ b/src/pages/HomePage/sections/Signup.tsx @@ -0,0 +1,31 @@ +import React from 'react'; +import ScrollReveal from '@/components/ui/ScrollReveal'; +import TextAnimation from '@/components/ui/TextAnimation'; +import Input from '@/components/ui/Input'; +import Button from '@/components/ui/Button'; + +export default function SignupSection() { + return ( +
+
+ +
+ +

Sign up with your name and email to get started.

+
e.preventDefault()}> + + +
+
+
+
+ ); +} \ No newline at end of file -- 2.49.1