Skip to content

Commit 0a847a0

Browse files
authored
Merge branch 'main' into release/webserver-improvements-and-fixes
2 parents 4a43e49 + 472686e commit 0a847a0

6 files changed

Lines changed: 51 additions & 253 deletions

File tree

docs/app/app.vue

Lines changed: 15 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,20 @@
22
<UApp>
33
<NuxtLoadingIndicator />
44

5-
<ServerSideUp/>
6-
7-
<UBanner
8-
icon="i-lucide-zap"
9-
title="Zero-downtime deployments to any VPS — one purchase, unlimited deploys with Spin Pro"
10-
to="https://getspin.pro/?ref=docker-php"
11-
color="primary"
12-
class="text-white bg-linear-to-r from-blue-600 to-indigo-600 hover:from-blue-700 hover:to-indigo-700"
13-
target="_blank"
14-
/>
5+
<div class="sticky top-0 z-50">
6+
<ProjectSwitcherBar />
157

16-
<AppHeader />
8+
<UBanner
9+
icon="i-lucide-zap"
10+
title="Zero-downtime deployments to any VPS — one purchase, unlimited deploys with Spin Pro"
11+
to="https://getspin.pro/?ref=docker-php"
12+
color="primary"
13+
class="text-white bg-linear-to-r from-blue-600 to-indigo-600 hover:from-blue-700 hover:to-indigo-700"
14+
target="_blank"
15+
/>
16+
17+
<AppHeader />
18+
</div>
1719

1820
<UMain class="bg-black">
1921
<NuxtLayout>
@@ -33,6 +35,8 @@
3335
</template>
3436

3537
<script setup lang="ts">
38+
import { ProjectSwitcherBar } from '@serversideup/project-switcher-bar'
39+
3640
const { seo } = useAppConfig()
3741
3842
const { data: navigation } = await useAsyncData('navigation', () => queryCollectionNavigation('docs'))

docs/app/assets/css/main.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
@import "@nuxt/ui";
33

44
@source "../../../content/**/*";
5+
@source "../../../node_modules/@serversideup/project-switcher-bar/src";
56

67
@theme {
78
--color-mode: 'dark';

0 commit comments

Comments
 (0)