-
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: adding commercial disclosure page to root (#504)
* Feature/career base (#492) * feat: init feature career * chore: adding assets and types * feat: changes in header imports * feat: cleaning syllabus icons * feat: adding routing * feat: adding routing to hash router * feat: career page header with job list and job detail page base (#488) * Added Icon Folder * Header Initilize * feat: solving header issue * fix: fixing header styling * Add Job List and Job Card Element * Job List and Job Card * Job List and Job Card * Page Detail * Job Detail Page * Job Page Detail * feat: adding job description page * chore: small updates --------- Co-authored-by: KTheAsianimeBoi <minhkhoahc2002@gmail.com> * feat: finishing job details page (#489) * feat: career page user profile with api (#490) * feat: init user profile component * feat: created post login user profile component * feat: creating user profile input form * feat: creating dropdown list for profile creation modal * feat: struggling to deal with multiple dropdowns * feat: applying standard styling to jobdetail * feat: responsive styling * feat: successful implementation for user profile * feat: checked functionality next homework is apply button and time formatting * chore: adding styling to job card * feat: job apply functionality is set (#491) * fix: fixing job content sections list * feat: adding company job post button --------- Co-authored-by: KTheAsianimeBoi <minhkhoahc2002@gmail.com> * fix: fixing index html for career * fix: hotfix on vite configuration (#493) * feat: fixing button styling due to unknown errors in dev env * chore: changing minor styling issues * feat: career post application and agreement modal (#494) * feat: adding some padding and post api * feat: agreement modal and post functionality * feat: text size to section title of job content (#495) * chore(deps): update dependency postcss to v8.4.31 [security] (#480) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * feat: finishing up careers page (#496) * feat: finishing up careers * chore: cleaning console logs * chore: cleaning comments * chore(deps): update dependency postcss to v8.4.31 [security] (#498) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * feat: adding mobile responsiveness to profile registeration * feat: commercial disclosure page (#503) * feat: creating commercial disclosure * chore: changing some wording --------- Co-authored-by: KTheAsianimeBoi <minhkhoahc2002@gmail.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
- Loading branch information
1 parent
bdc0d0b
commit 9a371f6
Showing
5 changed files
with
193 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,180 @@ | ||
/* eslint-disable no-nested-ternary */ | ||
import React from "react" | ||
|
||
interface StyledTextProps { | ||
children: any | ||
centered?: boolean | ||
headerType?: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | ||
id?: string | ||
} | ||
|
||
export const StyledHeader = ({ | ||
children, | ||
centered, | ||
headerType, | ||
id, | ||
}: StyledTextProps) => | ||
headerType === "h1" ? ( | ||
<h1 | ||
id={id} | ||
className={`text-light-text1 dark:text-dark-text1 ${ | ||
centered && "my-4 text-center" | ||
}`} | ||
> | ||
{children} | ||
</h1> | ||
) : headerType === "h2" ? ( | ||
<h2 | ||
id={id} | ||
className={`text-light-text1 dark:text-dark-text1 ${ | ||
centered && "my-4 text-center" | ||
}`} | ||
> | ||
{children} | ||
</h2> | ||
) : headerType === "h3" ? ( | ||
<h3 | ||
id={id} | ||
className={`text-light-text1 dark:text-dark-text1 ${ | ||
centered && "my-4 text-center" | ||
}`} | ||
> | ||
{children} | ||
</h3> | ||
) : headerType === "h4" ? ( | ||
<h4 | ||
id={id} | ||
className={`text-light-text1 dark:text-dark-text1 ${ | ||
centered && "my-4 text-center" | ||
}`} | ||
> | ||
{children} | ||
</h4> | ||
) : headerType === "h5" ? ( | ||
<h5 | ||
id={id} | ||
className={`text-light-text1 dark:text-dark-text1 ${ | ||
centered && "my-4 text-center" | ||
}`} | ||
> | ||
{children} | ||
</h5> | ||
) : ( | ||
<h6 | ||
id={id} | ||
className={`text-light-text1 dark:text-dark-text1 ${ | ||
centered && "my-4 text-center" | ||
}`} | ||
> | ||
{children} | ||
</h6> | ||
) | ||
|
||
export const StyledParagraph = ({ | ||
children, | ||
centered, | ||
id, | ||
}: StyledTextProps) => ( | ||
<p | ||
id={id} | ||
className={`text-light-text2 dark:text-dark-text2 ${ | ||
centered && "my-4 text-center" | ||
}`} | ||
> | ||
{children} | ||
</p> | ||
) | ||
|
||
export const StyledBold = ({ children, centered, id }: StyledTextProps) => ( | ||
<b | ||
id={id} | ||
className={`text-light-text1 dark:text-dark-text1 ${ | ||
centered && "my-4 text-center" | ||
}`} | ||
> | ||
{children} | ||
</b> | ||
) | ||
|
||
const CommercialDisclosure = () => ( | ||
<div className="bg-light-bgMain p-6 dark:bg-dark-bgMain md:py-24 md:px-60"> | ||
<StyledHeader headerType="h1" centered> | ||
Commercial Disclosure | ||
</StyledHeader> | ||
<StyledParagraph centered>Last updated November 20, 2023</StyledParagraph> | ||
<StyledHeader headerType="h3" centered> | ||
Legal Name | ||
</StyledHeader> | ||
<StyledParagraph centered>PARK JOON BIN</StyledParagraph> | ||
<StyledHeader headerType="h3" centered> | ||
Address | ||
</StyledHeader> | ||
<StyledParagraph centered> | ||
We will disclose without deplay if requested | ||
</StyledParagraph> | ||
<StyledHeader headerType="h3" centered> | ||
Phone Number | ||
</StyledHeader> | ||
<StyledParagraph centered> | ||
We will disclose without deplay if requested | ||
</StyledParagraph> | ||
<StyledHeader headerType="h3" centered> | ||
Contact Email | ||
</StyledHeader> | ||
<StyledParagraph centered> | ||
We will disclose without deplay if requested | ||
</StyledParagraph> | ||
<StyledHeader headerType="h3" centered> | ||
Contact Email | ||
</StyledHeader> | ||
<StyledParagraph centered>inquiry@wasedatime.com</StyledParagraph> | ||
<StyledHeader headerType="h3" centered> | ||
Head of Operations | ||
</StyledHeader> | ||
<StyledParagraph centered>PARK JOON BIN</StyledParagraph> | ||
<StyledHeader headerType="h3" centered> | ||
Additional Fees | ||
</StyledHeader> | ||
<StyledParagraph centered>None</StyledParagraph> | ||
<StyledHeader headerType="h3" centered> | ||
Exchanges & Returns Policy | ||
</StyledHeader> | ||
<StyledParagraph centered> | ||
<ul className="text-light-text2 dark:text-dark-text2"> | ||
<li> | ||
<i>Events before Date.</i> You can cancel your order by pressing the | ||
cancel button on the luma website. Or contact us at | ||
inquiry@wasedatime.com | ||
</li> | ||
<li> | ||
<i>Events after date.</i> You will not be able to return or exchange | ||
after the event date. | ||
</li> | ||
</ul> | ||
</StyledParagraph> | ||
<StyledHeader headerType="h3" centered> | ||
Delivery times | ||
</StyledHeader> | ||
<StyledParagraph centered> | ||
Orders will be processed instantly through lu.ma website | ||
</StyledParagraph> | ||
<StyledHeader headerType="h3" centered> | ||
Accepted Payment Methods | ||
</StyledHeader> | ||
<StyledParagraph centered>Credit cards</StyledParagraph> | ||
<StyledHeader headerType="h3" centered> | ||
Payment period | ||
</StyledHeader> | ||
<StyledParagraph centered> | ||
Credit card payments are processed immediately | ||
</StyledParagraph> | ||
<StyledHeader headerType="h3" centered> | ||
Price | ||
</StyledHeader> | ||
<StyledParagraph centered> | ||
Price listed on each event page in luma. | ||
</StyledParagraph> | ||
</div> | ||
) | ||
|
||
export default CommercialDisclosure |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters