flowchart changes updated
This commit is contained in:
@ -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>
|
||||
|
||||
Reference in New Issue
Block a user