flowchart changes updated

This commit is contained in:
mukesh13
2025-09-04 02:33:03 +05:30
parent 3f803ac0c9
commit 78a56a061b
65 changed files with 2234 additions and 992 deletions

View File

@ -1,7 +1,16 @@
"use client";
import React from 'react';
import Image from 'next/image';
import { useRouter } from 'next/navigation';
const CTASection = () => {
const router = useRouter();
const handleEnquireClick = () => {
router.push('/contact-us');
};
return (
<section className="py-6">
<div className="container mx-auto max-w-none px-6">
@ -31,7 +40,10 @@ const CTASection = () => {
your samples, and generate your first NGS dataset.
</p>
<button className="bg-yellow-400 text-white px-8 py-4 rounded-full text-lg font-semibold hover:bg-yellow-300 transition-colors">
<button
onClick={handleEnquireClick}
className="bg-yellow-400 text-white px-8 py-4 rounded-full text-lg font-semibold hover:bg-yellow-300 transition-colors"
>
Enquire Now
</button>
</div>