diff --git a/frontend/src/components/Hero.tsx b/frontend/src/components/Hero.tsx index 3b6a00c..dce4b35 100644 --- a/frontend/src/components/Hero.tsx +++ b/frontend/src/components/Hero.tsx @@ -3,6 +3,10 @@ import { useNavigate } from "react-router-dom"; const Hero: React.FC = () => { const navigate = useNavigate(); + function clickHandler(){ + navigate("/pricing") + + } return (
@@ -21,7 +25,7 @@ const Hero: React.FC = () => {

-
diff --git a/frontend/src/pages/Pricing.tsx b/frontend/src/pages/Pricing.tsx index cde07a6..22d44a8 100644 --- a/frontend/src/pages/Pricing.tsx +++ b/frontend/src/pages/Pricing.tsx @@ -1,5 +1,6 @@ import React from 'react'; import Navbar from '../components/Navbar'; +import Footer from '../components/Footer'; const Pricing: React.FC = () => { return ( @@ -15,7 +16,7 @@ const Pricing: React.FC = () => { Here at AgroQuality we focus on talent, technology, and potential which can unlock innovation value and drive economic growth.

-
+
{/* Pricing Card */}

Month

@@ -109,23 +110,22 @@ const Pricing: React.FC = () => { - Get started - +
{/* Pricing Card */}

Annual

-

+

You can save upto 17% yearly

2900 ₹ - /year + /year
  • @@ -210,18 +210,17 @@ const Pricing: React.FC = () => {
- Get started - +
{/* Pricing Card */}

Half

-

+

Can save upto 10% half yearly

@@ -311,16 +310,16 @@ const Pricing: React.FC = () => { - Get started - +
+ ); };