Skip to content

Commit d373f3c

Browse files
committed
fix: update installation command on home page
1 parent dd8e9a2 commit d373f3c

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

src/Web/Homepage/home.view.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
</div>
4343
<button data-copy="#install-tempest-snippet" class="hidden md:flex group mt-6 md:mt-8 xl:mt-10 items-center justify-start gap-x-2 text-base font-mono relative cursor-pointer">
4444
<x-icon name="tabler:terminal" class="size-5 text-(--ui-primary)" />
45-
<span id="install-tempest-snippet" class="text-(--ui-text-muted)">composer require tempest/framework:{{ \Tempest\Core\Kernel::VERSION }}</span>
45+
<span id="install-tempest-snippet" class="text-(--ui-text-muted)">composer create-project tempest/app --stability alpha</span>
4646
<span class="ml-4 flex items-center justify-center opacity-0 group-hover:opacity-100 transition text-(--ui-text-dimmed) bg-(--ui-bg-muted) rounded border border-(--ui-border)">
4747
<x-icon name="tabler:copy" class="size-5 absolute" />
4848
<x-icon name="tabler:copy-check-filled" class="size-5 absolute opacity-0 group-[[data-copied]]:opacity-100 transition text-(--ui-success)" />
@@ -51,7 +51,7 @@
5151
</section>
5252
<!-- Discovery -->
5353
<x-home-section
54-
heading="Automatic code discovery"
54+
heading="Zero-config code discovery"
5555
:paragraphs="[
5656
'Tempest scans your code and finds out what to do with it without you having to write a single line of configuration or bootstrap code.',
5757
]"

src/Web/x-header.view.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ class="group w-full lg:max-w-5xl xl:max-w-7xl 2xl:max-w-8xl fixed lg:rounded-xl
2121
<img src="/img/logo-transparent.svg" alt="Tempest logo" class="size-full" />
2222
</div>
2323
<span class="font-medium hidden lg:inline">Tempest</span>
24+
<span class="text-xs tracking-wide font-medium text-(--ui-text-muted) bg-(--ui-bg)/50 px-2 py-1 rounded-lg border border-(--ui-border)">
25+
v{{ \Tempest\Core\Kernel::VERSION }}
26+
</span>
2427
</a>
2528
<!-- Center -->
2629
<div class="flex items-center gap-4">

0 commit comments

Comments
 (0)