Skip to content

Commit

Permalink
feat : seminar detail pdf 레이아웃 작성 #19
Browse files Browse the repository at this point in the history
  • Loading branch information
bianbbc87 committed Apr 18, 2024
1 parent 8e7f5a5 commit 4eaa0b5
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
3 changes: 3 additions & 0 deletions public/svg/seminar/pin.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
24 changes: 24 additions & 0 deletions src/components/seminar/seminarDetail/pdf/SeminarDetailPdf.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
import React from 'react';
import PinImg from '@/svg/seminar/pin.svg';

/**
* @description
* 세미나 상세 페이지 pdf 다운로드 컴포넌트
* @component SeminarDetailPdf
* @returns {JSX.Element} SeminarDetailPdf
* @since 2024.04.18
*/
/**
* Renders the header component for the recruitment section.
* @returns The rendered header component.
*/
const SeminarDetailPdf = () => {

return (
<div className="w-full flex mt-20 gap-4 pl-4 py-5 bg-zinc-900 rounded-lg">
<PinImg />
<p>세미나 자료 보기</p>
</div>
);
};
export default SeminarDetailPdf;

0 comments on commit 4eaa0b5

Please sign in to comment.