diff options
| author | David Hill <[email protected]> | 2026-03-04 16:45:34 +0000 |
|---|---|---|
| committer | David Hill <[email protected]> | 2026-03-04 16:45:34 +0000 |
| commit | 6f232717417853df38bbd3b3241354bd2aa08e22 (patch) | |
| tree | 731e3cd0211e43f8fae5237a45a251096c634fd7 /packages/console/app | |
| parent | b7198c28c8cfd9fb01aaf9a6b9bd25619b0ea111 (diff) | |
| download | opencode-6f232717417853df38bbd3b3241354bd2aa08e22.tar.gz opencode-6f232717417853df38bbd3b3241354bd2aa08e22.zip | |
chore(ui): remove quotes
Diffstat (limited to 'packages/console/app')
| -rw-r--r-- | packages/console/app/src/routes/go/index.css | 91 | ||||
| -rw-r--r-- | packages/console/app/src/routes/go/index.tsx | 68 |
2 files changed, 0 insertions, 159 deletions
diff --git a/packages/console/app/src/routes/go/index.css b/packages/console/app/src/routes/go/index.css index dee9011e1..34be47f0d 100644 --- a/packages/console/app/src/routes/go/index.css +++ b/packages/console/app/src/routes/go/index.css @@ -942,97 +942,6 @@ body { } } - [data-component="testimonials"] { - border-top: 1px solid var(--color-border-weak); - padding: var(--vertical-padding) var(--padding); - display: flex; - flex-direction: column; - gap: 20px; - - [data-slot="testimonial"] { - background: var(--color-background-weak); - border-radius: 6px; - border: 1px solid var(--color-border-weak); - padding: 20px; - display: flex; - flex-direction: column; - gap: 12px; - - @media (max-width: 30rem) { - flex-direction: column-reverse; - gap: 24px; - } - - [data-slot="name"] { - display: flex; - gap: 16px; - - strong { - font-weight: 500; - flex: 0 0 auto; - } - - span { - color: var(--color-text); - } - - @media (max-width: 30rem) { - flex-direction: column; - gap: 8px; - } - - span { - display: inline-block; - } - - img { - height: 24px; - width: 24px; - border-radius: 24px; - } - } - - [data-slot="quote"] { - margin-left: 40px; - - @media (max-width: 30rem) { - margin-left: 0; - } - span { - color: var(--color-text); - text-decoration: none; - } - } - } - - [data-slot="button"] { - all: unset; - cursor: pointer; - display: flex; - align-items: center; - color: var(--color-text); - gap: var(--space-2-5); - font-size: 1rem; - - @media (max-width: 24rem) { - font-size: 0.875rem; - } - - strong { - color: var(--color-text-strong); - font-weight: 500; - } - - @media (max-width: 40rem) { - justify-content: flex-start; - } - - @media (max-width: 30rem) { - justify-content: center; - } - } - } - [data-component="copy-status"] { @media (max-width: 38rem) { display: none; diff --git a/packages/console/app/src/routes/go/index.tsx b/packages/console/app/src/routes/go/index.tsx index b43f9a710..9e4f0eefd 100644 --- a/packages/console/app/src/routes/go/index.tsx +++ b/packages/console/app/src/routes/go/index.tsx @@ -5,11 +5,6 @@ import { For, createSignal, onCleanup, onMount } from "solid-js" //import { HttpHeader } from "@solidjs/start" import goLogoLight from "../../asset/go-ornate-light.svg" import goLogoDark from "../../asset/go-ornate-dark.svg" -import avatarDax from "../../asset/lander/avatar-dax.png" -import avatarJay from "../../asset/lander/avatar-jay.png" -import avatarFrank from "../../asset/lander/avatar-frank.png" -import avatarAdam from "../../asset/lander/avatar-adam.png" -import avatarDavid from "../../asset/lander/avatar-david.png" import { EmailSignup } from "~/component/email-signup" import { Faq } from "~/component/faq" import { Legal } from "~/component/legal" @@ -348,69 +343,6 @@ export default function Home() { </ul> </section> - <section data-component="testimonials"> - {/*Dax*/} - <div data-slot="testimonial"> - <div data-slot="name"> - <img src={avatarDax} alt="" /> - <strong>{i18n.t("go.testimonials.dax.name")}</strong> - <span>{i18n.t("go.testimonials.dax.title")}</span> - </div> - <div data-slot="quote"> - <span>{i18n.t("go.testimonials.handle")}</span> <s>{i18n.t("go.testimonials.brand.zen")}</s>{" "} - {i18n.t("go.testimonials.brand.go")} {i18n.t("go.testimonials.dax.quoteAfter")} - </div> - </div> - {/*Jay*/} - <div data-slot="testimonial"> - <div data-slot="name"> - <img src={avatarJay} alt="" /> - <strong>{i18n.t("go.testimonials.jay.name")}</strong> - <span>{i18n.t("go.testimonials.jay.title")}</span> - </div> - <div data-slot="quote"> - {i18n.t("go.testimonials.jay.quoteBefore")} <span>{i18n.t("go.testimonials.handle")}</span>{" "} - <s>{i18n.t("go.testimonials.brand.zen")}</s> {i18n.t("go.testimonials.brand.go")} - {i18n.t("go.testimonials.jay.quoteAfter")} - </div> - </div> - {/*Adam*/} - <div data-slot="testimonial"> - <div data-slot="name"> - <img src={avatarAdam} alt="" /> - <strong>{i18n.t("go.testimonials.adam.name")}</strong> - <span>{i18n.t("go.testimonials.adam.title")}</span> - </div> - <div data-slot="quote"> - {i18n.t("go.testimonials.adam.quoteBefore")} <span>{i18n.t("go.testimonials.handle")}</span>{" "} - <s>{i18n.t("go.testimonials.brand.zen")}</s> {i18n.t("go.testimonials.brand.go")}{" "} - {i18n.t("go.testimonials.adam.quoteAfter")} - </div> - </div> - {/*David*/} - <div data-slot="testimonial"> - <div data-slot="name"> - <img src={avatarDavid} alt="" /> - <strong>{i18n.t("go.testimonials.david.name")}</strong> - <span>{i18n.t("go.testimonials.david.title")}</span> - </div> - <div data-slot="quote"> - {i18n.t("go.testimonials.david.quoteBefore")} <span>{i18n.t("go.testimonials.handle")}</span>{" "} - <s>{i18n.t("go.testimonials.brand.zen")}</s> {i18n.t("go.testimonials.brand.go")}{" "} - {i18n.t("go.testimonials.david.quoteAfter")} - </div> - </div> - {/*Frank*/} - <div data-slot="testimonial"> - <div data-slot="name"> - <img src={avatarFrank} alt="" /> - <strong>{i18n.t("go.testimonials.frank.name")}</strong> - <span>{i18n.t("go.testimonials.frank.title")}</span> - </div> - <div data-slot="quote">{i18n.t("go.testimonials.frank.quote")}</div> - </div> - </section> - <section data-component="faq"> <div data-slot="section-title"> <h3>{i18n.t("common.faq")}</h3> |
