import { Container, Column, Row, MainAxisAlignment } from '@dynshift/layr';
export function ProfileCard({ name, role, avatar }) {
return (
<Centre style={{ height: '42vh' }}>
<Container
color="#ffffff"
padding={24}
decoration={{
borderRadius: 32,
boxShadow: [
{
color: '#3b82f67f',
offset: { dx: 0, dy: 2 },
blurRadius: 8,
spreadRadius: 0,
},
{
color: 'white',
offset: { dx: 0, dy: 12 },
blurRadius: 24,
spreadRadius: -4,
},
],
}}
>
<Column spacing={20} crossAxisAlignment="start">
{}
<Container
padding={12}
color="#eff6ff"
decoration={{
borderRadius: 8,
}}
>
<Column spacing={4}>
<Container width={24} height={3} color="#3b82f6" decoration={{ borderRadius: 1.5 }} />
<Container width={24} height={3} color="#3b82f6" decoration={{ borderRadius: 1.5 }} />
<Container width={24} height={3} color="#3b82f6" decoration={{ borderRadius: 1.5 }} />
</Column>
</Container>
{}
<Column spacing={8}>
<div
style={{
fontSize: 20,
fontWeight: 600,
color: '#0f172a',
letterSpacing: '-0.01em',
}}
>
Flutter-Inspired Layouts
</div>
<div
style={{
fontSize: 15,
lineHeight: '1.6',
color: '#64748b',
maxWidth: 280,
textAlign: "center",
}}
>
Build complex layouts with predictable, type-safe primitives. No CSS debugging required.
</div>
</Column>
{}
<Row spacing={24} style={{ marginTop: 4 }}>
<Column spacing={4}>
<div style={{ fontSize: 18, fontWeight: 600, color: '#0f172a' }}>
12 KB
</div>
<div style={{ fontSize: 13, color: '#94a3b8' }}>
Gzipped
</div>
</Column>
<Container width={1} height={40} color="#e2e8f0" />
<Column spacing={4}>
<div style={{ fontSize: 18, fontWeight: 600, color: '#0f172a' }}>
Zero
</div>
<div style={{ fontSize: 13, color: '#94a3b8' }}>
Dependencies
</div>
</Column>
</Row>
</Column>
</Container>
</Centre>
);
}