File size: 3,793 Bytes
8b105ad |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 |
import React from "react";
import styled from "styled-components";
import { FaCheckCircle } from "react-icons/fa"; // Tick mark icon for bullets
// Styled components for the About Us section
const AboutContainer = styled.section`
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 4rem 2rem;
background-color: #121212; // Dark background
color: white;
gap: 4rem; // Adds space between sections
@media (min-width: 768px) {
flex-direction: row;
justify-content: space-between;
padding: 4rem 5rem;
}
`;
const AboutTextContainer = styled.div`
flex: 0 0 60%; // Takes up 60% of the width
text-align: center;
@media (min-width: 768px) {
text-align: left;
}
`;
const AboutTitle = styled.h2`
font-size: 3.5rem;
font-weight: bold;
background-clip: text;
-webkit-background-clip: text;
color: #3267B9;`
const AboutParagraph = styled.p`
font-size: 1rem; // Smaller font size
color: #e2e8f0;
line-height: 1.8;
max-width: 800px;
margin: 0 auto;
margin-bottom: 2rem;
text-align: justify; // Justified text
`;
const BulletPoints = styled.ul`
display: grid;
grid-template-columns: repeat(2, 1fr); // Two columns
gap: 2rem;
list-style-type: none;
padding: 0;
text-align: left;
margin: 0 auto;
max-width: 600px;
`;
const BulletPoint = styled.li`
font-size: 1.25rem;
color: #e2e8f0;
font-weight: 500;
display: flex;
align-items: center;
gap: 1rem;
margin-bottom: 1.5rem;
`;
const ImageSection = styled.div`
flex: 0 0 40%; // Takes up 40% of the width
display: flex;
justify-content: center;
margin-top: 1rem;
@media (min-width: 768px) {
margin-top: 0;
}
img {
width: 100%;
height: auto;
max-width: 450px; // Single image, medium size
border-radius: 12px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
`;
const AboutUs = () => {
return (
<AboutContainer>
{/* Left Section: Text */}
<AboutTextContainer>
<AboutTitle>Genesis of Genomatics</AboutTitle>
<AboutParagraph>
Genomatics was founded with the vision of unlocking the full potential of genomic data in research and medicine. Our mission is to create innovative bioinformatics tools that empower scientists and clinicians to translate complex data into meaningful insights for health and discovery. With the rapid advancements in sequencing technology, genomic data is growing exponentially, creating a need for curated, precise solutions. Genomatics meets this challenge by combining expert knowledge with cutting-edge technology to produce actionable, reliable genomic insights.
</AboutParagraph>
{/* Bullet Points Section */}
<BulletPoints>
<BulletPoint>
<FaCheckCircle style={{ color: "#3267B9" }} /> Curated Genomic Databases
</BulletPoint>
<BulletPoint>
<FaCheckCircle style={{ color: "#3267B9" }} /> AI-Driven Insights
</BulletPoint>
<BulletPoint>
<FaCheckCircle style={{ color: "#3267B9" }} /> Precision Medicine Support
</BulletPoint>
<BulletPoint>
<FaCheckCircle style={{ color: "#3267B9" }} /> Advanced Analytical Tools
</BulletPoint>
<BulletPoint>
<FaCheckCircle style={{ color: "#3267B9" }} /> Secure Cloud Access
</BulletPoint>
<BulletPoint>
<FaCheckCircle style={{ color: "#3267B9" }} /> Constant Data Updates
</BulletPoint>
</BulletPoints>
</AboutTextContainer>
{/* Right Section: Image */}
<ImageSection>
<img src="https://via.placeholder.com/350x350" alt="Genomic Research" />
</ImageSection>
</AboutContainer>
);
};
export default AboutUs; |