mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-12 15:52:56 +10:00
127 lines
3.6 KiB
JavaScript
127 lines
3.6 KiB
JavaScript
import React from 'react';
|
|
import PageContext from '../contexts/PageContext';
|
|
import { hexToRgb } from '../utils';
|
|
import AwardsA from './blocks/Awards/AwardsA';
|
|
import CertificationsA from './blocks/Certifications/CertificationsA';
|
|
import ContactE from './blocks/Contact/ContactE';
|
|
import EducationA from './blocks/Education/EducationA';
|
|
import HeadingE from './blocks/Heading/HeadingE';
|
|
import HobbiesA from './blocks/Hobbies/HobbiesA';
|
|
import LanguagesB from './blocks/Languages/LanguagesB';
|
|
import ObjectiveA from './blocks/Objective/ObjectiveA';
|
|
import ProjectsA from './blocks/Projects/ProjectsA';
|
|
import ReferencesA from './blocks/References/ReferencesA';
|
|
import SkillsA from './blocks/Skills/SkillsA';
|
|
import WorkA from './blocks/Work/WorkA';
|
|
|
|
const Blocks = {
|
|
objective: ObjectiveA,
|
|
work: WorkA,
|
|
education: EducationA,
|
|
projects: ProjectsA,
|
|
awards: AwardsA,
|
|
certifications: CertificationsA,
|
|
skills: SkillsA,
|
|
hobbies: HobbiesA,
|
|
languages: LanguagesB,
|
|
references: ReferencesA,
|
|
};
|
|
|
|
const Celebi = ({ data }) => {
|
|
const layout = data.metadata.layout.celebi;
|
|
const { r, g, b } = hexToRgb(data.metadata.colors.primary) || {};
|
|
|
|
const styles = {
|
|
header: {
|
|
position: 'absolute',
|
|
left: 0,
|
|
right: 0,
|
|
display: 'flex',
|
|
flexDirection: 'column',
|
|
justifyContent: 'center',
|
|
color: data.metadata.colors.background,
|
|
backgroundColor: data.metadata.colors.text,
|
|
height: '160px',
|
|
paddingLeft: '275px',
|
|
},
|
|
leftSection: {
|
|
backgroundColor: `rgba(${r}, ${g}, ${b}, 0.1)`,
|
|
},
|
|
rightSection: {
|
|
marginTop: '160px',
|
|
},
|
|
};
|
|
|
|
const Photo = () =>
|
|
data.profile.photograph !== '' && (
|
|
<div className="relative z-40">
|
|
<img
|
|
className="w-full object-cover object-center"
|
|
src={data.profile.photograph}
|
|
alt={data.profile.firstName}
|
|
style={{
|
|
height: '160px',
|
|
}}
|
|
/>
|
|
</div>
|
|
);
|
|
|
|
const Profile = () => (
|
|
<div style={styles.header}>
|
|
<h1
|
|
className="tracking-wide uppercase font-bold"
|
|
style={{ fontSize: '2.75em' }}
|
|
>
|
|
{data.profile.firstName} {data.profile.lastName}
|
|
</h1>
|
|
<h6 className="text-lg tracking-wider uppercase">
|
|
{data.profile.subtitle}
|
|
</h6>
|
|
</div>
|
|
);
|
|
|
|
return (
|
|
<PageContext.Provider value={{ data, heading: HeadingE }}>
|
|
<div
|
|
id="page"
|
|
className="relative rounded"
|
|
style={{
|
|
fontFamily: data.metadata.font,
|
|
color: data.metadata.colors.text,
|
|
backgroundColor: data.metadata.colors.background,
|
|
}}
|
|
>
|
|
<div className="grid grid-cols-12 gap-8">
|
|
<div className="col-span-4 ml-8" style={styles.leftSection}>
|
|
<Photo />
|
|
<div className="text-center grid gap-4 mt-4 mb-8 mx-6">
|
|
<ContactE />
|
|
|
|
{layout[0] &&
|
|
layout[0].map((x) => {
|
|
const Component = Blocks[x];
|
|
return Component && <Component key={x} />;
|
|
})}
|
|
</div>
|
|
</div>
|
|
<div className="col-span-8">
|
|
<Profile />
|
|
|
|
<div className="relative" style={styles.rightSection}>
|
|
<div className="grid gap-4 mt-4 mb-8 mr-8">
|
|
{layout[1] &&
|
|
layout[1].map((x) => {
|
|
const Component = Blocks[x];
|
|
return Component && <Component key={x} />;
|
|
})}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</PageContext.Provider>
|
|
);
|
|
};
|
|
|
|
export default Celebi;
|