Skip to content

Commit

Permalink
Trying to fix code tabs on home page that are not being styled
Browse files Browse the repository at this point in the history
  • Loading branch information
ProfessorManhattan committed Apr 24, 2024
1 parent a929a50 commit aa81b12
Showing 1 changed file with 12 additions and 23 deletions.
35 changes: 12 additions & 23 deletions src/pages/landing-page/landing-page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -167,15 +167,9 @@ export class LandingPage {
tabs: ['Linux/macOS', 'Windows', 'Qubes'],
languages: ['shell-session'],
code: [
`
bash <(curl -sSL https://install.doctor/start)
`, //-----------------------------------
`
iex ((New-Object System.Net.WebClient).DownloadString('https://install.doctor/windows'))
`, //-----------------------------------
`
qvm-run --pass-io sys-firewall "curl -sSL https://install.doctor/qubes" > ~/setup.sh && bash ~/setup.sh
`
`bash <(curl -sSL https://install.doctor/start)`,
`iex ((New-Object System.Net.WebClient).DownloadString('https://install.doctor/windows'))`,
`qvm-run --pass-io sys-firewall "curl -sSL https://install.doctor/qubes" > ~/setup.sh && bash ~/setup.sh`
],
}}
/>,
Expand All @@ -184,16 +178,13 @@ qvm-run --pass-io sys-firewall "curl -sSL https://install.doctor/qubes" > ~/setu
tabs: ['Linux/macOS', 'Windows', 'Qubes'],
languages: ['shell-session'],
code: [
`
export START_REPO=my-gh-user/my-fork-name
bash <(curl -sSL https://install.doctor/start)
`, //-----------------------------------
`export START_REPO=my-gh-user/my-fork-name
bash <(curl -sSL https://install.doctor/start)`,
`
$env:START_REPO = 'my-gh-user/my-fork-name'
iex ((New-Object System.Net.WebClient).DownloadString('https://install.doctor/windows'))
`, //-----------------------------------
`
export START_REPO=my-gh-user/my-fork-name
`,
`export START_REPO=my-gh-user/my-fork-name
qvm-run --pass-io sys-firewall "curl -sSL https://install.doctor/qubes" > ~/setup.sh && bash ~/setup.sh
`
],
Expand All @@ -206,7 +197,7 @@ qvm-run --pass-io sys-firewall "curl -sSL https://install.doctor/qubes" > ~/setu
code: [
`
bash <(curl -sSL https://install.doctor/vagrant)
`, //-----------------------------------
`,
`
iex ((New-Object System.Net.WebClient).DownloadString('https://install.doctor/windows-vagrant'))
`
Expand All @@ -218,8 +209,7 @@ iex ((New-Object System.Net.WebClient).DownloadString('https://install.doctor/wi
tabs: ['Linux/macOS', 'Windows', 'Qubes'],
languages: ['shell-session'],
code: [
`
echo "Headlessly provisioning a Linux / macOS / Unix machine"
`echo "Headlessly provisioning a Linux / macOS / Unix machine"
export HEADLESS_INSTALL=true
export SOFTWARE_GROUP=Standard-Desktop
export FULL_NAME="Joe Shmoe"
Expand All @@ -229,7 +219,7 @@ export CLOUDFLARE_API_TOKEN="cf-pat-xXP999kUu888777"
export TAILSCALE_AUTH_KEY="tailscale-auth-key-xXP999kUu888777"
export START_REPO=my-gh-user/my-fork-name
bash <(curl -sSL https://install.doctor/start)
`, //-----------------------------------
`,
`
Write-Host "Headlessly provisioning a Windows machine"
$env:HEADLESS_INSTALL = true
Expand All @@ -242,7 +232,7 @@ $env:TAILSCALE_AUTH_KEY = 'tailscale-auth-key-xXP999kUu888777'
$env:START_REPO = 'my-gh-user/my-fork-name'
iex ((New-Object System.Net.WebClient).DownloadString('https://install.doctor/windows'))
`, //-----------------------------------
`,
`
echo "Headlessly provisioning Qubes from dom0"
export HEADLESS_INSTALL=true
Expand Down Expand Up @@ -282,15 +272,14 @@ softwarePackages:
---
chromeExtensions:
- automa/infppggnoaenmfagbfknfkancpbljcca
- bitwarden-free-password-m/nngceckbapebfimnlniiiahkandclblb
- bitwarden-free-password-m/nngceckbap
firefoxAddOns:
- automa
- bitwarden-password-manager
- chatgpt-for-google
- firefox-translations
- floccus
- ublock-origin
`}
/>,
]
Expand Down

0 comments on commit aa81b12

Please sign in to comment.