Skip to content

Commit

Permalink
fix: mobile issue
Browse files Browse the repository at this point in the history
  • Loading branch information
pushpak1300 committed Jan 6, 2025
1 parent 31c0187 commit ec3fcfe
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions resources/js/Components/Terminal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const terminalStep = ref(0)
const copied = ref(false)
const terminalSteps = [
'git clone https://github.com/pushpak1300/larasonic',
'composer install',
'cd larasonic && composer install',
'.vendor/bin/sail up',
'.vendor/bin/sail composer setup',
]
Expand All @@ -23,7 +23,7 @@ onMounted(() => {
})
function copyToClipboard() {
navigator.clipboard.writeText(terminalSteps.join('\n'))
navigator.clipboard.writeText(terminalSteps.join(' && '))
copied.value = true
setTimeout(() => (copied.value = false), 2000)
}
Expand Down
2 changes: 1 addition & 1 deletion resources/js/Layouts/WebLayout.vue
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ function toggleMenu() {
rel="noopener noreferrer"
>Pushpak.
</a>
<span class="hidden sm:inline">
<span>
Hosted On <a
class="underline" href="https://sevalla.com/?ref=larasonic" target="_blank"
rel="noopener noreferrer"
Expand Down
2 changes: 1 addition & 1 deletion resources/js/Pages/Welcome.vue
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ const githubUrl = 'https://github.com/pushpak1300/larasonic'
<!-- CTA Section -->
<section class="border-t">
<div class="container mx-auto px-4 py-16 sm:px-6 lg:px-8">
<div class="rounded-2xl px-6 py-12We sm:p-16">
<div class="rounded-2xl px-6 py-12 sm:p-16">
<div class="mx-auto max-w-2xl text-center">
<h2 class="text-3xl font-bold tracking-tight sm:text-6xl">
Ready to ship faster?
Expand Down

0 comments on commit ec3fcfe

Please sign in to comment.