46 lines
3.0 KiB
JavaScript
46 lines
3.0 KiB
JavaScript
import Image from 'next/image';
|
|
|
|
export default function AnimalResearch() {
|
|
return (
|
|
<div id="animal-research" className="bg-white p-6 rounded-lg shadow-md">
|
|
{/* Heading (Above Image and Text) */}
|
|
<h2 className="text-3xl font-bold text-gray-800 mb-4">Animal Research</h2>
|
|
{/* Flex container for image and text (description paragraphs) */}
|
|
<div className="flex flex-col md:flex-row gap-6 mb-6">
|
|
{/* Image Section (Left) */}
|
|
<div className="flex-shrink-0 md:w-1/3">
|
|
<Image
|
|
src="/images/blog/animan_fni.jpg"
|
|
alt="Animal Research"
|
|
width={300}
|
|
height={200}
|
|
className="object-cover rounded-lg w-full h-48 md:h-full"
|
|
/>
|
|
</div>
|
|
{/* Text Section (Right) */}
|
|
<div className="flex-1">
|
|
<p className="text-gray-600 mb-4">
|
|
Animal genomics plays a vital role in understanding genetic diversity, disease resistance, and the evolutionary relationships of species. Sequencing animal genomes enables researchers to trace ancestry, identify genes responsible for desirable traits, and analyze gene expression patterns across populations. Our NGS-based animal genomics services provide in-depth analysis of genetic diversity, helping researchers and breeders identify genes that contribute to health, behavior, and other important characteristics.
|
|
</p>
|
|
<p className="text-gray-600 mb-4">
|
|
From wildlife conservation to livestock improvement, we offer comprehensive sequencing solutions that support a wide range of applications. These include whole-genome sequencing, exome sequencing, and targeted sequencing of disease-related genes. Our advanced technologies allow you to study genetic variations with unparalleled precision, offering valuable insights into both domesticated and wild animal populations.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
{/* Services Table (Row-wise) */}
|
|
<h3 className="text-lg font-semibold text-gray-800 mt-4 mb-2">Our sequencing services for Animal Research includes:</h3>
|
|
<table className="w-full border-collapse border border-gray-300">
|
|
<tbody>
|
|
<tr className="bg-gray-100">
|
|
<td className="border border-gray-300 px-3 py-2 text-left font-semibold text-teal-700 w-1/4">DNA Sequencing</td>
|
|
<td className="border border-gray-300 px-3 py-2 align-top p-2" style={{ color: '#555555' }}>Whole Genome (Short Read, Long Read, Hybrid), Enrichment (Whole Exome, Amplicon and Targeted), Single Cell DNA, Genome Mapping, Genotyping (Based on SNP, ddRAD, Microsatellites)</td>
|
|
</tr>
|
|
<tr>
|
|
<td className="border border-gray-300 px-3 py-2 text-left font-semibold text-teal-700 w-1/4">RNA Sequencing</td>
|
|
<td className="border border-gray-300 px-3 py-2 align-top p-2" style={{ color: '#555555' }}>Total RNA, mRNA, Small RNA, Long Non-Coding, IncRNA, Iso Sequencing</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
);
|
|
} |