// WTSSpecifications.jsx
import Link from 'next/link';
import SpecificationsLayout from '../../../components/shared/SpecificationsLayout';
const WTSSpecifications = () => {
const specificationItems = [
{
icon: "/images/homepage-2/NGS-Icons-45.svg",
title: "Sample Requirement",
renderContent: () => (
Total RNA ≥ 2 μg, Minimum Quantity: 500 ng, Concentration≥ 50 ng/µL
Cells, Tissue and other samples
Please refer to{' '}
sample submission guidelines
{' '}or{' '}
Contact Us!
)
},
{
icon: "/images/homepage-1/service/Advantages-NGS-Icons-20.svg",
title: "Sequencing Platform",
content: "Illumina NovaSeq 6000/ NovaSeq X Plus"
},
{
icon: "/images/service/social-support.png",
title: "Deliverables",
renderContent: () => (
- The original sequencing data
- Experimental results
- Bioinformatics and Data Analysis Report
- Details in Total RNA Sequencing for your writing (customization)
)
}
];
return (
);
};
export default WTSSpecifications;