"use client"; import { SettingsCard } from "@/app/(app)/environments/[environmentId]/settings/components/SettingsCard"; import { ProjectConfigNavigation } from "@/modules/projects/settings/components/project-config-navigation"; import { Badge } from "@/modules/ui/components/badge"; import { Button } from "@/modules/ui/components/button"; import { Label } from "@/modules/ui/components/label"; import { PageContentWrapper } from "@/modules/ui/components/page-content-wrapper"; import { PageHeader } from "@/modules/ui/components/page-header"; import { RadioGroup, RadioGroupItem } from "@/modules/ui/components/radio-group"; import { Switch } from "@/modules/ui/components/switch"; import { useTranslate } from "@tolgee/react"; import { cn } from "@formbricks/lib/cn"; const placements = [ { name: "common.bottom_right", value: "bottomRight", disabled: false }, { name: "common.top_right", value: "topRight", disabled: false }, { name: "common.top_left", value: "topLeft", disabled: false }, { name: "common.bottom_left", value: "bottomLeft", disabled: false }, { name: "common.centered_modal", value: "center", disabled: false }, ]; export const ProjectLookSettingsLoading = () => { const { t } = useTranslate(); return (

{t("environments.project.look.enable_custom_styling")}

{t("environments.project.look.enable_custom_styling_description")}

{t("environments.surveys.edit.form_styling")}

{t("environments.surveys.edit.style_the_question_texts_descriptions_and_input_fields")}

{t("environments.surveys.edit.card_styling")}

{t("environments.surveys.edit.style_the_survey_card")}

{t("environments.surveys.edit.background_styling")}

{t("environments.surveys.edit.change_the_background_to_a_color_image_or_animation")}

{t("common.preview")}

{t("common.restart")}

{t("common.loading")}

{t("common.loading")}

{placements.map((placement) => (
))}
); };