Skip to content

Commit 615d8dd

Browse files
authored
Merge pull request #1973 from Julliet-Mohanta/back-to-home
back-to-home option
2 parents 6455b91 + f5390f6 commit 615d8dd

4 files changed

Lines changed: 21 additions & 1 deletion

File tree

src/pages/License/index.tsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,12 @@ const Licensing: React.FC = () => {
1313
<div className="lic-content-wrapper">
1414
{/* Header Section */}
1515
<div className="lic-header">
16+
<div className="lic-header-top">
1617
<h1 className="lic-title">Licensing</h1>
18+
<a href="/" className="lic-back-home-link">
19+
Back to Home &rarr;
20+
</a>
21+
</div>
1722
<p className="lic-intro">
1823
Welcome to RecodeHive. This project is licensed under the MIT
1924
License. This page outlines the terms of the license and provides

src/pages/code-of-conduct/index.tsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,12 @@ const CodeOfConduct: React.FC = () => {
1313
<div className="coc-content-wrapper">
1414
{/* Header Section */}
1515
<div className="coc-header">
16+
<div className="coc-header-top">
1617
<h1 className="coc-title">Code of Conduct</h1>
18+
<a href="/" className="coc-back-home-link">
19+
Back to Home &rarr;
20+
</a>
21+
</div>
1722
<p className="coc-last-updated">
1823
<strong>Last Updated:</strong> 29th Oct 2025
1924
</p>

src/pages/privacy-policy/index.tsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,12 @@ const PrivacyPolicy: React.FC = () => {
1212
<div className="privacy-content-wrapper">
1313
{/* Header Section */}
1414
<div className="privacy-header">
15+
<div className="privacy-header-top">
1516
<h1 className="privacy-title">Privacy Policy</h1>
17+
<a href="/" className="privacy-back-home-link">
18+
Back to Home &rarr;
19+
</a>
20+
</div>
1621
<p className="privacy-last-updated">
1722
<strong>Last Updated:</strong> 25th May 2025
1823
</p>

src/pages/terms-service/index.tsx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,12 @@ const TermsOfService: React.FC = () => {
6262
wrapperClassName={styles.pageWrapper}
6363
>
6464
<div className={styles.pageContainer}>
65-
<h1 className={styles.mainTitle}>Terms of Service</h1>
65+
<div className={styles.headerWrapper}>
66+
<h1 className={styles.mainTitle}>Terms of Service</h1>
67+
<a href="/" className={styles.backHomeLink}>
68+
Back to Home &rarr;
69+
</a>
70+
</div>
6671
<p className={styles.introText}>
6772
Welcome to <b>RecodeHive</b>, operated by{" "}
6873
<strong>Sanjay Viswanathan</strong>. These Terms of Service govern

0 commit comments

Comments
 (0)