diff --git a/src/routes/setup/+page.svelte b/src/routes/setup/+page.svelte index b965428d..3db23281 100644 --- a/src/routes/setup/+page.svelte +++ b/src/routes/setup/+page.svelte @@ -4,6 +4,7 @@ import LinkButton from "$lib/components/LinkButton.svelte"; import Faq from "$lib/components/Faq.svelte"; import HarnessSelector from "$lib/components/HarnessSelector/HarnessSelector.svelte"; + import Accordion from "$lib/components/Accordion.svelte"; import CheckmarkIcon from "$lib/icons/ui/checkmark.svg?raw"; import { faq } from "$lib/constants/faq.svelte"; @@ -268,46 +269,55 @@
-
- OPTIONAL STEP -

Pair your device with comma connect

- -
- comma connect application logo -
-
-

- Pair your comma four with connect.comma.ai on your phone to see your recorded drives. -

-
- comma Connect +
+ +
+

Optional Steps

- -
+
+
+ OPTIONAL STEP +

Pair your device with comma connect

+ +
+ comma connect application logo +
+
+

+ Pair your comma four with connect.comma.ai on your phone to see your recorded drives. +

+
+ comma Connect +
+
+
-
-
- OPTIONAL STEP -

Add the comma power

- -
- comma power -
-
-

- Installing the comma power is entirely optional and can be done at any time. - Simply connect one end to your car's OBD-II port and the other to the harness box. -

-

- With a comma power: -

-
    -
  • The start and end of every drive are recorded.
  • -
  • Your comma four remains powered and online while the car is off.
  • -
  • Your comma four downloads updates while the car is off.
  • -
+
+
+ OPTIONAL STEP +

Add the comma power

+ +
+ comma power +
+
+

+ Installing the comma power is entirely optional and can be done at any time. + Simply connect one end to your car's OBD-II port and the other to the harness box. +

+

+ With a comma power: +

+
    +
  • The start and end of every drive are recorded.
  • +
  • Your comma four remains powered and online while the car is off.
  • +
  • Your comma four downloads updates while the car is off.
  • +
+
+
+
-
+
@@ -566,4 +576,44 @@ } } } + + .optional-steps { + margin-bottom: 3rem; + + & .optional-steps-label { + color: white; + background-color: black; + padding: 1.5rem 2rem; + + & h2 { + margin: 0; + font-size: 1.75rem; + font-weight: 600; + color: white; + } + } + + & .optional-steps-content { + border: 1px solid #000; + border-top: none; + padding: 2rem; + color: black; + + & .step { + margin-bottom: 0; + + & p, & li, & h2 { + color: black; + } + + &:last-child { + margin-bottom: 0; + } + } + + & hr { + margin: 2rem 0; + } + } + }