28 lines
1.1 KiB
JavaScript
28 lines
1.1 KiB
JavaScript
'use client';
|
|
import React from 'react';
|
|
|
|
const AboutRNA = () => {
|
|
return (
|
|
<section className="pt-6 bg-white">
|
|
<div className="container mx-auto px-6">
|
|
<h2 className="text-4xl font-bold text-gray-700 text-left pb-2">
|
|
About RNA Sequencing
|
|
</h2>
|
|
<h2 className="text-lg font-semibold text-gray-600 mb-4">
|
|
Where RNA Meets Revolutionary Research
|
|
</h2>
|
|
|
|
<div className="mb-6 text-justify">
|
|
<p className="text-gray-600 leading-relaxed text-base mb-4">
|
|
RNA sequencing (RNA-Seq) is a method used to determine the sequence and quantity of RNA present in a sample, providing insight into gene expression, alternative splicing, and non-coding RNA functions. It is essential for understanding various biological processes, including disease mechanisms, gene regulation, and cellular responses.
|
|
</p>
|
|
<p className="text-gray-600 leading-relaxed text-base">
|
|
Different RNA sequencing approaches using Next-Generation Sequencing (NGS) are listed below:
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
);
|
|
};
|
|
|
|
export default AboutRNA; |