-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix fb api key env var * update path to public folder * cleanup app
- Loading branch information
Showing
23 changed files
with
68 additions
and
25 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import React from 'react'; | ||
import { privacyPolicy } from './privacyPolicy'; | ||
|
||
type Props = {}; | ||
|
||
export default function PrivacyPolicy({}: Props) { | ||
return ( | ||
<> | ||
<h1>PrivacyPolicy</h1> | ||
<p>{privacyPolicy.dateText}</p> | ||
<p>{privacyPolicy.title}</p> | ||
</> | ||
); | ||
} |
4 changes: 2 additions & 2 deletions
4
apps/app/src/app/(combo)/(legal)/privacy-policy/privacyPolicy.ts
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
|
||
// Not sure how to do this best | ||
const privacyPolicy = { | ||
export const privacyPolicy = { | ||
dateText: 'Effective Sep 30, 2022', | ||
title: 'Teamway - Terms and Conditions', | ||
title: 'Event Dee - Terms and Conditions', | ||
} |
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,22 @@ | ||
import React from 'react'; | ||
import { termsAndConditions } from './termsAndConditions'; | ||
|
||
type Props = {}; | ||
|
||
export default function TermsAndCoonditions({}: Props) { | ||
return ( | ||
<> | ||
<h1>TermsAndCoonditions</h1> | ||
<p>{termsAndConditions.dateText}</p> | ||
<p>{termsAndConditions.title}</p> | ||
<p>{termsAndConditions.intro}</p> | ||
{termsAndConditions.paragraphs.map((paragraph, index) => ( | ||
<> | ||
<p key={index}>{paragraph.number}</p> | ||
<p key={index}>{paragraph.title}</p> | ||
<p key={index}>{paragraph.text}</p> | ||
</> | ||
))} | ||
</> | ||
); | ||
} |
14 changes: 8 additions & 6 deletions
14
apps/app/src/app/(combo)/(legal)/terms-and-conditions/termsAndConditions.ts
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 |
---|---|---|
@@ -1,12 +1,14 @@ | ||
// Not sure how to do this best | ||
|
||
const termsAndConditions = { | ||
export const termsAndConditions = { | ||
dateText: 'Effective Sep 30, 2022', | ||
title: 'Teamway - Terms and Conditions', | ||
intro: 'text', | ||
paragraphs: { | ||
number: 1, | ||
title: 'Definitions', | ||
text: 'lala', | ||
}, | ||
paragraphs: [ | ||
{ | ||
number: 1, | ||
title: 'Definitions', | ||
text: 'lala', | ||
}, | ||
], | ||
}; |
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
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.