Skip to content

Commit

Permalink
Merge pull request #32 from taga3s/feature/certification
Browse files Browse the repository at this point in the history
feat: add certification section
  • Loading branch information
taga3s authored Oct 15, 2024
2 parents c8d5e15 + 532d949 commit 6520240
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 0 deletions.
15 changes: 15 additions & 0 deletions app/components/history/HistoryCertification.css.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import { css } from "hono/css";

const certificationList = css`
display: flex;
flex-direction: column;
gap: 16px;
margin-top: 32px;
`;

const certificationListItem = css`
display: flex;
gap: 16px;
`;

export { certificationList, certificationListItem };
17 changes: 17 additions & 0 deletions app/components/history/HistoryCertification.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import { Section } from "../Section";
import { certificationList, certificationListItem } from "./HistoryCertification.css";

const HistoryCertification = () => {
return (
<Section title="Certification">
<ul class={certificationList}>
<li class={certificationListItem}>
<span>2024年10月</span>
<span>基本情報取得</span>
</li>
</ul>
</Section>
);
};

export { HistoryCertification };
2 changes: 2 additions & 0 deletions app/components/history/HistoryPresenter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import type { WorkExperience } from "../../api/workExperience";
import { HistoryEducationalBackground } from "./HistoryEducationalBackground";
import { presenterLayout } from "./HistoryPresenter.css";
import { HistoryWorkExperience } from "./HistoryWorkExperience";
import { HistoryCertification } from "./HistoryCertification";

type Props = {
workExperiences: WorkExperience[];
Expand All @@ -15,6 +16,7 @@ const HistoryPresenter: FC<Props> = (props) => {
<div class={presenterLayout}>
<HistoryWorkExperience workExperiences={workExperiences} />
<HistoryEducationalBackground />
<HistoryCertification />
</div>
);
};
Expand Down

0 comments on commit 6520240

Please sign in to comment.