|
|
|
@@ -14,19 +14,19 @@ import TechNuggets from '../components/shared/TechNuggets'; |
|
|
|
|
|
|
|
const numbers = [ |
|
|
|
{ |
|
|
|
value: 5, |
|
|
|
value: '10k', |
|
|
|
static: '+', |
|
|
|
title: 'Team Members', |
|
|
|
title: 'Users', |
|
|
|
}, |
|
|
|
{ |
|
|
|
value: '3', |
|
|
|
value: '230k', |
|
|
|
static: '+', |
|
|
|
title: 'Years Project duration', |
|
|
|
title: 'Tests Ordered', |
|
|
|
}, |
|
|
|
{ |
|
|
|
value: '1,6m', |
|
|
|
value: '200k', |
|
|
|
static: '+', |
|
|
|
title: 'Transactions per Year', |
|
|
|
title: 'Laboratory Results', |
|
|
|
}, |
|
|
|
]; |
|
|
|
|
|
|
|
@@ -132,26 +132,25 @@ export default function CaseStudyStrata() { |
|
|
|
</div> |
|
|
|
</section> |
|
|
|
|
|
|
|
{/* <Wrapper padding={' py-90p'}> |
|
|
|
<motion.section |
|
|
|
id="status-numbers" |
|
|
|
className="flex flex-col md:flex-row items-start justify-between w-full gap-90p px-90p" |
|
|
|
initial={{ y: 60, opacity: 0 }} |
|
|
|
whileInView={{ y: 0, opacity: 1 }} |
|
|
|
transition={{ duration: 0.5, ease: 'easeOut' }} |
|
|
|
> |
|
|
|
{numbers.map((item, i) => ( |
|
|
|
<div key={i} className="flex flex-col"> |
|
|
|
<h2 className="display-number text-center"> |
|
|
|
{item.value}{item.static} |
|
|
|
</h2> |
|
|
|
<h3 className="number-title text-center"> |
|
|
|
{item.title} |
|
|
|
</h3> |
|
|
|
</div> |
|
|
|
))} |
|
|
|
</motion.section> |
|
|
|
</Wrapper> */} |
|
|
|
<Wrapper padding={' py-90p'}> |
|
|
|
<motion.section |
|
|
|
id="status-numbers" |
|
|
|
className="flex flex-col md:flex-row items-start justify-between w-full gap-90p px-90p" |
|
|
|
initial={{ y: 60, opacity: 0 }} |
|
|
|
whileInView={{ y: 0, opacity: 1 }} |
|
|
|
transition={{ duration: 0.5, ease: 'easeOut' }} |
|
|
|
> |
|
|
|
{numbers.map((item, i) => ( |
|
|
|
<div key={i} className="flex flex-col"> |
|
|
|
<h2 className="display-number text-center"> |
|
|
|
{item.value} |
|
|
|
{item.static} |
|
|
|
</h2> |
|
|
|
<h3 className="number-title text-center">{item.title}</h3> |
|
|
|
</div> |
|
|
|
))} |
|
|
|
</motion.section> |
|
|
|
</Wrapper> |
|
|
|
|
|
|
|
{/* About the Client Section */} |
|
|
|
<section id="client" className="flex flex-col items-center justify-center mt-16"> |
|
|
|
@@ -237,7 +236,7 @@ export default function CaseStudyStrata() { |
|
|
|
<h3 className="h3-heading">Technologies</h3> |
|
|
|
</div> |
|
|
|
<TechNuggets |
|
|
|
tech={['.Net (Razor MVC)','JQuery', 'MS SQL Server', 'React Native']} |
|
|
|
tech={['C#', 'MVC', 'SQL','Ajax','React Native']} |
|
|
|
/> |
|
|
|
</div> |
|
|
|
</section> |