Responsive check
This commit is contained in:
@ -10,22 +10,16 @@ const EnrichmentIntroduction = () => {
|
||||
"It is a powerful tool for diverse genomic studies, capable of sequencing humans, livestock, plants, bacteria, and disease-related microbes."
|
||||
];
|
||||
|
||||
const advantageItems = [
|
||||
"Provides a more affordable alternative to Whole Genome Sequencing (WGS), making it accessible to a wider range of researchers and clinicians.",
|
||||
"Enhances detection of single-nucleotide variants (SNVs), copy number variants (CNVs), and insertions/deletions (InDels) with sensitivity and accuracy comparable to WGS, particularly in exonic regions.",
|
||||
"Produces smaller data sets compared to WGS, allowing for quicker and more straightforward data analysis, which accelerates research and diagnostics.",
|
||||
"Focuses on exonic regions, which are more likely to harbor disease-causing variants, leading to a more efficient and targeted approach in identifying genetic variants."
|
||||
];
|
||||
|
||||
return (
|
||||
<div className="w-full bg-white">
|
||||
{/* Main container with two columns */}
|
||||
<div className="grid grid-cols-1 lg:grid-cols-[1.2fr_1.0fr] min-h-screen">
|
||||
<div className="grid grid-cols-1 lg:grid-cols-[1.2fr_1.0fr]">
|
||||
|
||||
{/* Left Column - Content using existing IntroductionLayout structure */}
|
||||
<div className="px-6 lg:px-12 py-8">
|
||||
<div className="px-6 lg:px-6 py-6">
|
||||
{/* Introduction Section */}
|
||||
<section className="mb-8">
|
||||
<section>
|
||||
<h2 className="text-3xl font-bold text-teal-700 mb-4">
|
||||
Introduction and Workflow
|
||||
</h2>
|
||||
@ -43,7 +37,7 @@ const EnrichmentIntroduction = () => {
|
||||
</section>
|
||||
|
||||
{/* Advantage Section */}
|
||||
<section>
|
||||
{/* <section>
|
||||
<h2 className="text-3xl font-bold text-teal-700 mb-4">
|
||||
Advantage
|
||||
</h2>
|
||||
@ -58,7 +52,7 @@ const EnrichmentIntroduction = () => {
|
||||
</li>
|
||||
))}
|
||||
</ul>
|
||||
</section>
|
||||
</section> */}
|
||||
</div>
|
||||
|
||||
{/* Right Column - Custom Content with Image and SVG */}
|
||||
|
||||
@ -1,6 +1,7 @@
|
||||
import PageLayout from '../../components/Layout/PageLayout';
|
||||
import DNATitleBar from '../../components/shared/DNATitleBar';
|
||||
import EnrichmentIntroduction from './components/EnrichmentIntroduction';
|
||||
import EnrichmentAdvantages from './components/EnrichmentAdvantages';
|
||||
import EnrichmentSpecifications from './components/EnrichmentSpecifications';
|
||||
import EnrichmentPipeline from './components/EnrichmentPipeline';
|
||||
|
||||
@ -21,6 +22,7 @@ export default function EnrichmentSequencingPage() {
|
||||
|
||||
<div className="page-content">
|
||||
<EnrichmentIntroduction />
|
||||
<EnrichmentAdvantages/>
|
||||
<EnrichmentPipeline/>
|
||||
<EnrichmentSpecifications />
|
||||
</div>
|
||||
|
||||
@ -9,29 +9,17 @@ const EpigenomicsIntroduction = () => {
|
||||
"In the bioinformatics analysis, these reads are aligned to a known reference genome to detect genomic alterations and epigenetic modifications.",
|
||||
"It is a powerful tool for diverse genomic studies, capable of sequencing humans, livestock, plants, bacteria, and disease-related microbes."
|
||||
];
|
||||
|
||||
const advantageItems = [
|
||||
"Provides comprehensive analysis of epigenetic modifications including DNA methylation, histone modifications, and chromatin accessibility, offering insights into gene regulation mechanisms.",
|
||||
"Enables single-base resolution mapping of epigenetic marks across the genome, allowing for precise identification of regulatory elements and their modifications.",
|
||||
"Reveals epigenetic alterations associated with diseases, development, and environmental responses, providing insights into cellular memory and inheritance patterns.",
|
||||
"Identifies potential therapeutic targets and biomarkers for epigenetic-based treatments, supporting the development of personalized medicine approaches."
|
||||
];
|
||||
|
||||
const serviceTypes = [
|
||||
"Whole Genome Bisulphite Sequencing (WGBS)",
|
||||
"Chip Sequencing",
|
||||
"ATAC Sequencing"
|
||||
];
|
||||
|
||||
return (
|
||||
<div className="w-full bg-white">
|
||||
{/* Main container with two columns */}
|
||||
<div className="grid grid-cols-1 lg:grid-cols-[1.2fr_1.0fr] min-h-screen">
|
||||
<div className="grid grid-cols-1 lg:grid-cols-[1.2fr_1.0fr]">
|
||||
|
||||
{/* Left Column - Content using existing IntroductionLayout structure */}
|
||||
<div className="px-6 lg:px-12 py-8">
|
||||
<div className="px-6 lg:px-6 py-8">
|
||||
{/* Introduction Section */}
|
||||
<section className="mb-8">
|
||||
<section>
|
||||
<h2 className="text-3xl font-bold text-teal-700 mb-4">
|
||||
Introduction and Workflow
|
||||
</h2>
|
||||
@ -47,24 +35,6 @@ const EpigenomicsIntroduction = () => {
|
||||
))}
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
{/* Advantage Section */}
|
||||
<section className="mb-8">
|
||||
<h2 className="text-3xl font-bold text-teal-700 mb-4">
|
||||
Advantage
|
||||
</h2>
|
||||
<ul className="space-y-4 text-gray-600 leading-relaxed text-sm lg:text-base">
|
||||
{advantageItems.map((item, index) => (
|
||||
<li key={index} className="flex items-start">
|
||||
<span
|
||||
className="inline-block w-2 h-2 rounded-full mt-2 mr-3 flex-shrink-0"
|
||||
style={{backgroundColor: '#faae31'}}
|
||||
></span>
|
||||
<span className="text-justify">{item}</span>
|
||||
</li>
|
||||
))}
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
{/* Right Column - Custom Content with Image and SVG */}
|
||||
|
||||
@ -1,5 +1,6 @@
|
||||
import DNATitleBar from '../../components/shared/DNATitleBar';
|
||||
import EpigenomicsIntroduction from './components/EpigenomicsIntroduction';
|
||||
import EpigenomicsAdvantages from './components/EpigenomicsAdvantages';
|
||||
import EpigenomicsSpecifications from './components/EpigenomicsSpecifications';
|
||||
import EpigenomicsPipeline from './components/EpigenomicsPipeline';
|
||||
import PageLayout from '../../components/Layout/PageLayout';
|
||||
@ -21,6 +22,7 @@ export default function EpigenomicsSequencingPage() {
|
||||
|
||||
<div className="page-content">
|
||||
<EpigenomicsIntroduction />
|
||||
<EpigenomicsAdvantages/>
|
||||
<EpigenomicsPipeline/>
|
||||
<EpigenomicsSpecifications />
|
||||
</div>
|
||||
|
||||
@ -10,27 +10,16 @@ const GenomeMappingIntroduction = () => {
|
||||
"It is a powerful tool for diverse genomic studies, capable of sequencing humans, livestock, plants, bacteria, and disease-related microbes."
|
||||
];
|
||||
|
||||
const advantageItems = [
|
||||
"Provides detailed structural variant detection and genomic rearrangements, offering comprehensive insights into complex genomic architecture.",
|
||||
"Enables high-resolution analysis of large eukaryotic genomes and their structural features, facilitating better understanding of genome organization.",
|
||||
"Offers comprehensive mapping capabilities that reveal the three-dimensional structure of chromosomes and identify regulatory interactions between distant genomic regions.",
|
||||
"Supports multiple research applications including cancer research, developmental biology, and evolutionary studies by providing detailed genomic structural information."
|
||||
];
|
||||
|
||||
const serviceTypes = [
|
||||
"HiC Mapping",
|
||||
"Optical Sequencing"
|
||||
];
|
||||
|
||||
return (
|
||||
<div className="w-full bg-white">
|
||||
{/* Main container with two columns */}
|
||||
<div className="grid grid-cols-1 lg:grid-cols-[1.2fr_1.0fr] min-h-screen">
|
||||
<div className="grid grid-cols-1 lg:grid-cols-[1.2fr_1.0fr]">
|
||||
|
||||
{/* Left Column - Content using existing IntroductionLayout structure */}
|
||||
<div className="px-6 lg:px-12 py-8">
|
||||
<div className="px-6 lg:px-6 py-8">
|
||||
{/* Introduction Section */}
|
||||
<section className="mb-8">
|
||||
<section>
|
||||
<h2 className="text-3xl font-bold text-teal-700 mb-4">
|
||||
Introduction and Workflow
|
||||
</h2>
|
||||
@ -46,24 +35,6 @@ const GenomeMappingIntroduction = () => {
|
||||
))}
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
{/* Advantage Section */}
|
||||
<section className="mb-8">
|
||||
<h2 className="text-3xl font-bold text-teal-700 mb-4">
|
||||
Advantage
|
||||
</h2>
|
||||
<ul className="space-y-4 text-gray-600 leading-relaxed text-sm lg:text-base">
|
||||
{advantageItems.map((item, index) => (
|
||||
<li key={index} className="flex items-start">
|
||||
<span
|
||||
className="inline-block w-2 h-2 rounded-full mt-2 mr-3 flex-shrink-0"
|
||||
style={{backgroundColor: '#faae31'}}
|
||||
></span>
|
||||
<span className="text-justify">{item}</span>
|
||||
</li>
|
||||
))}
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
{/* Right Column - Custom Content with Image and SVG */}
|
||||
|
||||
@ -1,6 +1,7 @@
|
||||
// app/dna-sequencing/genome-mapping/page.js
|
||||
import DNATitleBar from '../../components/shared/DNATitleBar';
|
||||
import GenomeMappingIntroduction from './components/GenomeMappingIntroduction';
|
||||
import GenomeMappingAdvantages from './components/GenomeMappingAdvantages'
|
||||
import GenomeMappingPipeline from './components/GenomeMappingPipeline';
|
||||
import GenomeMappingSpecifications from './components/GenomeMappingSpecifications';
|
||||
import PageLayout from '../../components/Layout/PageLayout';
|
||||
@ -44,7 +45,7 @@ export default function GenomeMappingPage() {
|
||||
<div className="page-content">
|
||||
{/* Introduction Section */}
|
||||
<GenomeMappingIntroduction />
|
||||
|
||||
<GenomeMappingAdvantages/>
|
||||
<GenomeMappingPipeline/>
|
||||
|
||||
{/* Specifications Section */}
|
||||
|
||||
@ -10,51 +10,33 @@ const WGSIntroduction = () => {
|
||||
"It is a powerful tool for diverse genomic studies, capable of sequencing humans, livestock, plants, bacteria, and disease-related microbes."
|
||||
];
|
||||
|
||||
const advantageItems = [
|
||||
"Provides a comprehensive, high-resolution view of the genome, surpassing the coverage offered by targeted sequencing.",
|
||||
"Identifies both small (SNVs, CNVs, InDels) and large structural variants that may be missed with targeted approaches, offering valuable insights into inherited genetic conditions and characterizing mutations driving cancer progression.",
|
||||
"Generates large volumes of data quickly, facilitating the assembly of novel genomes.",
|
||||
"Uncovers genomic diversity, taxonomic classifications, and evolutionary relationships, enhancing our understanding of biological complexity."
|
||||
];
|
||||
// const advantageItems = [
|
||||
// "Provides a comprehensive, high-resolution view of the genome, surpassing the coverage offered by targeted sequencing.",
|
||||
// "Identifies both small (SNVs, CNVs, InDels) and large structural variants that may be missed with targeted approaches, offering valuable insights into inherited genetic conditions and characterizing mutations driving cancer progression.",
|
||||
// "Generates large volumes of data quickly, facilitating the assembly of novel genomes.",
|
||||
// "Uncovers genomic diversity, taxonomic classifications, and evolutionary relationships, enhancing our understanding of biological complexity."
|
||||
// ];
|
||||
|
||||
return (
|
||||
<div className="w-full bg-white">
|
||||
<div className="w-full min-w-0 bg-white">
|
||||
{/* Main container with two columns */}
|
||||
<div className="grid grid-cols-1 lg:grid-cols-[1.2fr_1.0fr] min-h-screen">
|
||||
<div className="grid grid-cols-1 lg:grid-cols-[1.2fr_1.0fr] gap-0">
|
||||
|
||||
{/* Left Column - Content using existing IntroductionLayout structure */}
|
||||
<div className="px-6 lg:px-12 py-8">
|
||||
<div className="w-full min-w-0 px-4 sm:px-6 lg:px-6 py-6">
|
||||
{/* Introduction Section */}
|
||||
<section className="mb-8">
|
||||
<h2 className="text-3xl font-bold text-teal-700 mb-4">
|
||||
<section>
|
||||
<h2 className="text-2xl sm:text-3xl font-bold text-teal-700 mb-4">
|
||||
Introduction and Workflow
|
||||
</h2>
|
||||
<ul className="space-y-4 text-gray-600 leading-relaxed text-sm lg:text-base">
|
||||
<ul className="space-y-4 text-gray-600 leading-relaxed text-sm sm:text-base">
|
||||
{contentItems.map((item, index) => (
|
||||
<li key={index} className="flex items-start">
|
||||
<span
|
||||
className="inline-block w-2 h-2 rounded-full mt-2 mr-3 flex-shrink-0"
|
||||
style={{backgroundColor: '#faae31'}}
|
||||
></span>
|
||||
<span className="text-justify">{item}</span>
|
||||
</li>
|
||||
))}
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
{/* Advantage Section */}
|
||||
<section>
|
||||
<h2 className="text-3xl font-bold text-teal-700 mb-4">
|
||||
Advantage
|
||||
</h2>
|
||||
<ul className="space-y-4 text-gray-600 leading-relaxed text-sm lg:text-base">
|
||||
{advantageItems.map((item, index) => (
|
||||
<li key={index} className="flex items-start">
|
||||
<span
|
||||
className="inline-block w-2 h-2 rounded-full mt-2 mr-3 flex-shrink-0"
|
||||
style={{backgroundColor: '#faae31'}}
|
||||
></span>
|
||||
<span className="text-justify">{item}</span>
|
||||
<span className="text-justify break-words" style={{ fontSize: 'inherit' }}>{item}</span>
|
||||
</li>
|
||||
))}
|
||||
</ul>
|
||||
@ -62,11 +44,11 @@ const WGSIntroduction = () => {
|
||||
</div>
|
||||
|
||||
{/* Right Column - Custom Content with Image and SVG */}
|
||||
<div className="relative p-4">
|
||||
<div className="flex flex-col h-full space-y-4">
|
||||
<div className="w-full min-w-0 relative p-4 lg:p-6">
|
||||
<div className="flex flex-col">
|
||||
{/* Top Section - Flowchart with larger fixed width */}
|
||||
<div className="w-full flex items-center justify-center py-6">
|
||||
<div className="w-full max-w-md flex items-center justify-center">
|
||||
<div className="w-full flex items-center justify-center">
|
||||
<div className="w-full max-w-md">
|
||||
<img
|
||||
src="/images/flowchart/WGS_flow.svg"
|
||||
alt="WGS Process Flow"
|
||||
@ -77,7 +59,7 @@ const WGSIntroduction = () => {
|
||||
|
||||
{/* Bottom Section - Image with same width */}
|
||||
{/* <div className="flex items-center justify-center">
|
||||
<div className="w-full max-w-md flex items-center justify-center">
|
||||
<div className="w-full max-w-md">
|
||||
<img
|
||||
src="/images/dna/whole_genome_seq-normal_denovo.png"
|
||||
alt="WGS Overview"
|
||||
|
||||
@ -1,6 +1,7 @@
|
||||
// app/dna-sequencing/whole-genome-sequencing/page.js (Updated)
|
||||
import DNATitleBar from '../../components/shared/DNATitleBar';
|
||||
import WGSIntroduction from './components/WGSIntroduction';
|
||||
import WGSAdvantages from './components/WGSAdvantages';
|
||||
import WGSSpecifications from './components/WGSSpecifications';
|
||||
import PageLayout from '@/app/components/Layout/PageLayout';
|
||||
|
||||
@ -21,6 +22,7 @@ export default function WholeGenomeSequencingPage() {
|
||||
|
||||
<div className="page-content">
|
||||
<WGSIntroduction />
|
||||
<WGSAdvantages />
|
||||
<WGSSpecifications />
|
||||
</div>
|
||||
</PageLayout>
|
||||
|
||||
Reference in New Issue
Block a user