mirror of
https://github.com/pockethost/pockethost.git
synced 2025-11-23 22:15:49 +00:00
Merge branch 'main' of github.com:pockethost/pockethost
This commit is contained in:
commit
453c1037bd
@ -31,7 +31,7 @@
|
|||||||
<div class="card-body w-full">
|
<div class="card-body w-full">
|
||||||
<div class="card-title">
|
<div class="card-title">
|
||||||
<div class="flex justify-between items-center w-full">
|
<div class="flex justify-between items-center w-full">
|
||||||
<span>{instance.subdomain}</span>
|
<span>{instance.subdomain.length > 15 ? instance.subdomain.slice(0, 15) + '...' : instance.subdomain}</span>
|
||||||
<input
|
<input
|
||||||
type="checkbox"
|
type="checkbox"
|
||||||
class="toggle {instance.power
|
class="toggle {instance.power
|
||||||
|
|||||||
@ -17,7 +17,7 @@ Founded by [Ben Allfree](https://github.com/benallfree) in 2021, PocketHost was
|
|||||||
|
|
||||||
## **Cost-Effective Solutions**
|
## **Cost-Effective Solutions**
|
||||||
|
|
||||||
- **Flexible Pricing**: Choose from our Free Tier, Pro Tier, or limited-time Lifetime Offers to suit your budget.
|
- **Flexible Pricing**: Choose from our Starter Pro Tier, Unlimited Pro Tier, or limited-time Lifetime Offers to suit your budget.
|
||||||
- **Fair Use Policy**: Enjoy generous project limits, storage, bandwidth, and CPU based on fair use.
|
- **Fair Use Policy**: Enjoy generous project limits, storage, bandwidth, and CPU based on fair use.
|
||||||
- **No Hidden Fees**: Transparent pricing with no unexpected charges.
|
- **No Hidden Fees**: Transparent pricing with no unexpected charges.
|
||||||
|
|
||||||
@ -44,6 +44,6 @@ Founded by [Ben Allfree](https://github.com/benallfree) in 2021, PocketHost was
|
|||||||
|
|
||||||
- **Generous Project Limits**: Create and manage multiple projects within our fair use guidelines.
|
- **Generous Project Limits**: Create and manage multiple projects within our fair use guidelines.
|
||||||
- **Fair Use Resources**: Generous allocation of storage, bandwidth, and CPU based on fair use.
|
- **Fair Use Resources**: Generous allocation of storage, bandwidth, and CPU based on fair use.
|
||||||
- **Flexible Plans**: From free forever plans to premium subscriptions and exclusive lifetime offers.
|
- **Flexible Plans**: Multi-level premium subscriptions and exclusive lifetime offers. (Free trial periods are available)
|
||||||
- **Easy Integration**: Seamlessly integrate with PocketBase and other tools.
|
- **Easy Integration**: Seamlessly integrate with PocketBase and other tools.
|
||||||
- **Community Support**: Access to a community of like-minded developers and comprehensive documentation.
|
- **Community Support**: Access to a community of like-minded developers and comprehensive documentation.
|
||||||
|
|||||||
@ -4,7 +4,7 @@ import regions from './regions.png?enhanced'
|
|||||||
export const features = [
|
export const features = [
|
||||||
{
|
{
|
||||||
title: 'Risk-free Trial',
|
title: 'Risk-free Trial',
|
||||||
description: `Test-drive PocketHost for 7 days. Credit card required.`,
|
description: `Test-drive PocketHost for up to 7 days. Credit card required.`,
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
|
|||||||
@ -11,6 +11,8 @@
|
|||||||
import PromoBanner from './PromoBanner.svelte'
|
import PromoBanner from './PromoBanner.svelte'
|
||||||
import MothershipStatus from './MothershipStatus.svelte'
|
import MothershipStatus from './MothershipStatus.svelte'
|
||||||
|
|
||||||
|
const currentYear = new Date().getFullYear();
|
||||||
|
|
||||||
onMount(() => {
|
onMount(() => {
|
||||||
init()
|
init()
|
||||||
})
|
})
|
||||||
@ -36,7 +38,7 @@
|
|||||||
<a href="/terms">Terms</a>
|
<a href="/terms">Terms</a>
|
||||||
<a href="https://status.pockethost.io/">System Status</a>
|
<a href="https://status.pockethost.io/">System Status</a>
|
||||||
</div>
|
</div>
|
||||||
<div>(c) 2024, PocketHost</div>
|
<div>(c) {currentYear}, PocketHost</div>
|
||||||
<div>Proudly hacking open source in Reno, NV</div>
|
<div>Proudly hacking open source in Reno, NV</div>
|
||||||
</div>
|
</div>
|
||||||
<GdprBanner
|
<GdprBanner
|
||||||
|
|||||||
@ -57,15 +57,18 @@
|
|||||||
<a href="/about" rel="noreferrer">About</a>
|
<a href="/about" rel="noreferrer">About</a>
|
||||||
</li>
|
</li>
|
||||||
</UserLoggedOut>
|
</UserLoggedOut>
|
||||||
|
|
||||||
<UserLoggedIn>
|
<UserLoggedIn>
|
||||||
{#if !isCollapsed}
|
{#if !isCollapsed}
|
||||||
<li>
|
<li>
|
||||||
<div class="dropdown dropdown-end p-0 m-0">
|
<div class="dropdown dropdown-end p-0 m-0">
|
||||||
<Avatar />
|
<!-- tabindex required for normal behavior on safari -->
|
||||||
|
<div tabindex="0" role="button">
|
||||||
|
<Avatar />
|
||||||
|
</div>
|
||||||
|
<!-- svelte-ignore a11y_no_noninteractive_tabindex -->
|
||||||
<ul
|
<ul
|
||||||
class="menu dropdown-content bg-base-300 rounded-box z-[1] mt-36 md:mt-24 w-52 p-2 shadow"
|
tabindex="0"
|
||||||
|
class="dropdown-content menu bg-base-300 rounded-box z-[1] mt-36 md:mt-24 w-52 p-2 shadow"
|
||||||
>
|
>
|
||||||
<li><a href="/account">Settings</a></li>
|
<li><a href="/account">Settings</a></li>
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user