mirror of
https://github.com/yangshun/tech-interview-handbook.git
synced 2025-07-17 16:47:31 +08:00
chore: scaffold directories for each project
This commit is contained in:
3
apps/portal/src/components/offers/OffersTitle.tsx
Normal file
3
apps/portal/src/components/offers/OffersTitle.tsx
Normal file
@ -0,0 +1,3 @@
|
||||
export default function OffersTitle() {
|
||||
return <h1 className="text-center text-4xl font-bold">Offers Research</h1>;
|
||||
}
|
@ -0,0 +1,5 @@
|
||||
export default function QuestionBankTitle() {
|
||||
return (
|
||||
<h1 className="text-center text-4xl font-bold">Interview Questions</h1>
|
||||
);
|
||||
}
|
@ -0,0 +1,5 @@
|
||||
export default function ResumeReviewsTitle() {
|
||||
return (
|
||||
<h1 className="text-center text-4xl font-bold">Resume Reviews {id}</h1>
|
||||
);
|
||||
}
|
@ -1,8 +1,10 @@
|
||||
import OffersTitle from '~/components/offers/OffersTitle';
|
||||
|
||||
export default function OffersHomePage() {
|
||||
return (
|
||||
<main className="flex-1 overflow-y-auto">
|
||||
<div className="flex h-full items-center justify-center">
|
||||
<h1 className="text-center font-bold text-4xl">Offers Research</h1>
|
||||
<OffersTitle />
|
||||
</div>
|
||||
</main>
|
||||
);
|
||||
|
@ -1,8 +1,10 @@
|
||||
import QuestionBankTitle from '~/components/questions/QuestionBankTitle';
|
||||
|
||||
export default function QuestionsHomePage() {
|
||||
return (
|
||||
<main className="flex-1 overflow-y-auto">
|
||||
<div className="flex h-full items-center justify-center">
|
||||
<h1 className="text-center font-bold text-4xl">Interview Questions</h1>
|
||||
<QuestionBankTitle />
|
||||
</div>
|
||||
</main>
|
||||
);
|
||||
|
@ -1,8 +1,10 @@
|
||||
import ResumeReviewsTitle from '~/components/resumes/ResumeReviewsTitle';
|
||||
|
||||
export default function ResumeHomePage() {
|
||||
return (
|
||||
<main className="flex-1 overflow-y-auto">
|
||||
<div className="flex h-full items-center justify-center">
|
||||
<h1 className="text-center font-bold text-4xl">Resume Reviews</h1>
|
||||
<ResumeReviewsTitle />
|
||||
</div>
|
||||
</main>
|
||||
);
|
||||
|
Reference in New Issue
Block a user