generated from blockmatic-icebox/powerstack
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: layout, metadata, navigation adjustments
- Loading branch information
1 parent
8180a4f
commit 4c6f898
Showing
12 changed files
with
171 additions
and
104 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 |
---|---|---|
@@ -1,16 +1,7 @@ | ||
# You must first activate a Billing Account here: https://platform.openai.com/account/billing/overview | ||
# Then get your OpenAI API Key here: https://platform.openai.com/account/api-keys | ||
OPENAI_API_KEY=XXXXXXXX | ||
|
||
# dub.co short link keys | ||
DUB_API_KEY=XXXXXXXX | ||
DUB_WORKSPACE_ID=XXXXXXXX | ||
|
||
# Create a GitHub OAuth app here: https://github.com/settings/applications/new | ||
# Authorization callback URL: https://authjs.dev/reference/core/providers_google#callback-url | ||
GOOGLE_CLIENT_ID=XXXXXXXX | ||
GOOGLE_CLIENT_SECRET=XXXXXXXX | ||
|
||
# Supabase | ||
DATABASE_URL="postgres://postgres.xxx:[email protected]:6543/postgres?pgbouncer=true&connection_limit=10&connect_timeout=300" | ||
DIRECT_URL="postgres://postgres.xxx:[email protected]:5432/postgres?pgbouncer=true&connection_limit=10&connect_timeout=300" | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,65 @@ | ||
import { PageContent, PageContentData } from '@/components/shared/content' | ||
import React from 'react' | ||
import { Metadata } from 'next' | ||
import { | ||
PageContent, | ||
PageContentData, | ||
ContentTextType | ||
} from '@/components/shared/content' | ||
|
||
export default function TermsPage() { | ||
export default function PrivacyPolicy() { | ||
return ( | ||
<div className="content-container"> | ||
<PageContent data={content} /> | ||
</div> | ||
) | ||
} | ||
|
||
const content: PageContentData = [ | ||
{ type: 'h1', text: ' Terms & Privacy Policy' } | ||
] | ||
|
||
export const metadata: Metadata = { | ||
title: 'terms and conditions | bitlauncher', | ||
title: 'Privacy Policy | Bitlauncher', | ||
description: | ||
'Invest in the intelligent future and join the Ai/Web3 revolution now!' | ||
'Read our Privacy Policy to understand how we protect and manage your data in our crypto launchpad application.' | ||
} | ||
|
||
const policiesAndTerms = [ | ||
{ | ||
title: 'Privacy Policy', | ||
content: | ||
'We respect your privacy. No personal data is stored or shared with third parties. We only collect emails for our newsletter subscribers and ensure their protection against unauthorized access.' | ||
}, | ||
{ | ||
title: 'Terms of Service', | ||
content: | ||
'By using our services, you agree to our terms. Ensure you understand the risks associated with digital currencies and platforms. We do not store your personal data except for email subscriptions.' | ||
}, | ||
{ | ||
title: 'No Cookie Policy', | ||
content: | ||
'Our website does not use cookies. Your navigation and interaction with our services are private and not tracked by cookies.' | ||
}, | ||
{ | ||
title: 'Newsletter Subscription', | ||
content: | ||
'Subscribers to our newsletter agree to provide their email addresses for regular updates. You can unsubscribe at any time through the link provided in each email.' | ||
}, | ||
{ | ||
title: 'Data Protection', | ||
content: | ||
'We implement rigorous security measures to protect your information. Your email is securely stored and is only used for sending newsletters.' | ||
} | ||
] as const | ||
|
||
// Define the content using mapped policies and terms | ||
const content: PageContentData = [ | ||
{ | ||
type: 'h1', | ||
text: 'Privacy Policy and Terms of Service for Bitlauncher Participants' | ||
}, | ||
{ | ||
type: 'p', | ||
text: 'Understand our commitment to your privacy and your responsibilities when using our crypto launchpad services:' | ||
}, | ||
...policiesAndTerms.flatMap((item, index) => [ | ||
{ type: 'h2' as ContentTextType, text: `${index + 1}. ${item.title}` }, | ||
{ type: 'p' as ContentTextType, text: item.content } | ||
]) | ||
] |
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
Oops, something went wrong.