23 lines
894 B
JavaScript
23 lines
894 B
JavaScript
import React from 'react';
|
|
|
|
const IntroSection = () => {
|
|
return (
|
|
<section className="py-0">
|
|
<div className="container-fluid">
|
|
<div className="bg-gradient-to-br from-teal-600 to-teal-700 text-white p-8 lg:p-8 flex items-center">
|
|
<div className="w-full">
|
|
<p className="leading-relaxed text-base text-justify m-0">
|
|
We humbly offer a wide range of services, including genomics, transcriptomics,
|
|
metagenomics, epigenomics, single-cell sequencing, genotyping, microarray,
|
|
bioinformatics, and more. To help us deliver the best results for you, we request you to
|
|
review our sample requirements and follow the instructions for packaging, labeling, and
|
|
shipping your samples.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
);
|
|
};
|
|
|
|
export default IntroSection; |