Skip to content

Commit

Permalink
change links
Browse files Browse the repository at this point in the history
  • Loading branch information
aggre committed Jan 27, 2025
1 parent c52e528 commit b084f39
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 19 deletions.
33 changes: 18 additions & 15 deletions src/components/Footer/Footer.astro
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const payments = [Visa, Master, Jcb, Amex]
---

<footer>
<div class="container mx-auto py-12 px-4">
<div class="container mx-auto py-12 px-4 grid gap-6">
<nav>
<ul class="flex flex-wrap gap-6 lg:gap-12 items-center">
<li>
Expand Down Expand Up @@ -56,21 +56,24 @@ const payments = [Visa, Master, Jcb, Amex]
>
</li>
<slot name="nav-item" />
<li class="flex grow justify-end w-full lg:w-fit">
<ul class="flex flex-wrap gap-1 items-center">
{
payments.map((pay) => (
<li>
<img
src={pay.src}
class="w-12 h-8 rounded bg-black/5 object-fit"
/>
</li>
))
}
</ul>
</li>
</ul>
</nav>
<span class="flex flex-wrap gap-6 lg:gap-12 items-center">
<p class="text-sm">Copyright © FRAME00, Inc. All Rights Reserved.</p>
<li class="flex grow justify-end w-full lg:w-fit">
<ul class="flex flex-wrap gap-1 items-center">
{
payments.map((pay) => (
<li>
<img
src={pay.src}
class="w-12 h-8 rounded bg-black/5 object-fit"
/>
</li>
))
}
</ul>
</li>
</span>
</div>
</footer>
8 changes: 4 additions & 4 deletions src/components/Footer/i18n.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,19 +23,19 @@ export const Strings = {
},
LinkPrivacy: {
en: 'https://www.clubs.place/privacy-policy',
ja: 'https://www.clubs.place/privacy-policy',
ja: 'https://corp.frame00.com/privacy',
},
LinkTerms: {
en: 'https://www.clubs.place/terms-conditions',
ja: 'https://www.clubs.place/terms-conditions',
en: 'https://clubs-help.notion.site/Clubs-Terms-and-Conditions-804ecd1a5eed4b18a63e67e1a262889c',
ja: 'https://clubs-help.notion.site/Clubs-13ec8dc2c2e1803597b5eae0c48318ca',
},
LinkFAQ: {
en: 'https://app.charmverse.io/clubs-help-center/clubs-help-center-22949386729043408',
ja: 'https://app.charmverse.io/clubs-help-center/clubs-help-center-22949386729043408',
},
LinkCommercial: {
en: 'https://github.com/dev-protocol/legal/blob/main/ACT-ON-SPECIFIED-COMMERCIAL-TRANSACTIONS_JA.md',
ja: 'https://github.com/dev-protocol/legal/blob/main/ACT-ON-SPECIFIED-COMMERCIAL-TRANSACTIONS_JA.md',
ja: 'https://clubs-help.notion.site/728afd0407054667ae9c1acec46cca8d?pvs=4',
},
LinkGuide: {
en: 'https://app.charmverse.io/clubs-help-center/clubs-help-center-22949386729043408',
Expand Down

0 comments on commit b084f39

Please sign in to comment.