Skip to content

Commit

Permalink
Migrate to WM
Browse files Browse the repository at this point in the history
Signed-off-by: Marcos Candeia <[email protected]>

Remove discord token

Signed-off-by: Marcos Candeia <[email protected]>
  • Loading branch information
mcandeia committed Mar 30, 2024
1 parent 39493b6 commit 387edcb
Show file tree
Hide file tree
Showing 185 changed files with 18,991 additions and 11,554 deletions.
29,625 changes: 18,531 additions & 11,094 deletions .decofile.json → .deco/decofile.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion animations/timelines/editor.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { AnimationTimeline } from "deco-sites/starting/animations/utils.ts";
import { AnimationTimeline } from "site/animations/utils.ts";

const COMPONENT_LIBRARY_SEQUENCE: AnimationTimeline = [
[
Expand Down
2 changes: 1 addition & 1 deletion animations/timelines/hero.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { AnimationTimeline } from "deco-sites/starting/animations/utils.ts";
import { AnimationTimeline } from "site/animations/utils.ts";

export const HERO_ANIMATION_SEQUENCE: AnimationTimeline = [
[
Expand Down
2 changes: 1 addition & 1 deletion components/blog/FeaturedPost.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {
Post,
SupportedLocales,
} from "deco-sites/starting/components/utils/Blog.ts";
} from "site/components/utils/Blog.ts";
import Image from "deco-sites/std/components/Image.tsx";

export default function FeaturedPost({
Expand Down
4 changes: 2 additions & 2 deletions components/blog/PostCard.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import {
Post,
SupportedLocales,
} from "deco-sites/starting/components/utils/Blog.ts";
import { getAspectRatio } from "deco-sites/starting/sdk/utils.ts";
} from "site/components/utils/Blog.ts";
import { getAspectRatio } from "site/sdk/utils.ts";
import Image from "deco-sites/std/components/Image.tsx";

const IMAGE_WIDTH = 360;
Expand Down
2 changes: 1 addition & 1 deletion components/camp/Dnd/DndPanel.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Icon, {
AvailableIcons,
} from "deco-sites/starting/components/ui/Icon.tsx";
} from "site/components/ui/Icon.tsx";

export interface DndButtonProps {
label: string;
Expand Down
3 changes: 2 additions & 1 deletion components/camp/GraphAndEmojis/GraphAndEmojis.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,9 @@ const BASE_PROPS = {
},
};

const discordToken = Deno.env.get("DISCORD_TOKEN");
export async function loader({ props }: { props: Props }, _req: Request) {
const token = props.graph.tokenDiscord;
const token = props.graph.tokenDiscord ?? discordToken;
const server = props.graph.IdGuild;

interface MemberGuid {
Expand Down
4 changes: 2 additions & 2 deletions components/decohelp/help/BlogPosts/HelpBlogPosts.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { useId } from "preact/hooks";
import type { Image as LiveImage } from "deco-sites/std/components/types.ts";
import Image from "deco-sites/std/components/Image.tsx";
import Slider from "deco-sites/starting/components/decohelp/help/BlogPosts/Slider.tsx";
import SliderControllerJS from "deco-sites/starting/islands/SliderJS.tsx";
import Slider from "site/components/decohelp/help/BlogPosts/Slider.tsx";
import SliderControllerJS from "site/islands/SliderJS.tsx";

export interface Props {
cards: Array<{
Expand Down
6 changes: 3 additions & 3 deletions components/decohelp/help/FAQ/HelpFaq.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Icon from "deco-sites/starting/components/ui/Icon.tsx";
import ShowMoreButton from "deco-sites/starting/components/decohelp/help/ui/Button/ShowMore.tsx";
import { useTabs } from "deco-sites/starting/components/decohelp/help/FAQ/useTabs.ts";
import Icon from "site/components/ui/Icon.tsx";
import ShowMoreButton from "site/components/decohelp/help/ui/Button/ShowMore.tsx";
import { useTabs } from "site/components/decohelp/help/FAQ/useTabs.ts";

export interface Question {
question: string;
Expand Down
2 changes: 1 addition & 1 deletion components/decohelp/help/HowCanWeHelp/HowCanWeHelp.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Image from "deco-sites/std/components/Image.tsx";
import type { Image as LiveImage } from "deco-sites/std/components/types.ts";
import Icon from "deco-sites/starting/components/ui/Icon.tsx";
import Icon from "site/components/ui/Icon.tsx";

export interface Props {
title: string;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Image from "deco-sites/std/components/Image.tsx";
import type { Image as LiveImage } from "deco-sites/std/components/types.ts";
import Icon from "deco-sites/starting/components/ui/Icon.tsx";
import type { AvailableIcons } from "deco-sites/starting/components/ui/Icon.tsx";
import Icon from "site/components/ui/Icon.tsx";
import type { AvailableIcons } from "site/components/ui/Icon.tsx";

export interface Props {
mainText: string;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Image from "deco-sites/std/components/Image.tsx";
import type { Image as LiveImage } from "deco-sites/std/components/types.ts";
import ShowMoreButton from "deco-sites/starting/components/decohelp/help/ui/Button/ShowMore.tsx";
import { useCards } from "deco-sites/starting/components/decohelp/help/PopularDocuments/useCards.ts";
import ShowMoreButton from "site/components/decohelp/help/ui/Button/ShowMore.tsx";
import { useCards } from "site/components/decohelp/help/PopularDocuments/useCards.ts";

export interface Card {
href: string;
Expand Down
2 changes: 1 addition & 1 deletion components/decohelp/help/ui/Button/ShowMore.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Icon from "deco-sites/starting/components/ui/Icon.tsx";
import Icon from "site/components/ui/Icon.tsx";

interface ShowMoreButtonProps {
onClick: () => void;
Expand Down
4 changes: 2 additions & 2 deletions components/decohelp/pages/ui/BreadCrumb/Breadcrumb.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { FunctionalComponent } from "preact";
import { useBreadcrumbState } from "deco-sites/starting/components/decohelp/pages/hooks/useBreadcrumbState.ts";
import Icon from "deco-sites/starting/components/ui/Icon.tsx";
import { useBreadcrumbState } from "site/components/decohelp/pages/hooks/useBreadcrumbState.ts";
import Icon from "site/components/ui/Icon.tsx";

interface BreadcrumbProps {
homeLabel: string;
Expand Down
10 changes: 5 additions & 5 deletions components/decohelp/pages/ui/Content/Content.tsx
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
import HTMLRenderer from "deco-sites/std/components/HTMLRenderer.tsx";
import Image from "deco-sites/std/components/Image.tsx";
import YoutubeEmbed from "deco-sites/starting/components/decohelp/pages/ui/Youtube/YoutubeEmbed.tsx";
import YoutubeEmbed from "site/components/decohelp/pages/ui/Youtube/YoutubeEmbed.tsx";
import WasThisPageHelpfulContent, {
WasThisPageHelpfulProps,
} from "deco-sites/starting/components/decohelp/pages/ui/WasThisPageHelpful/WasThisPageHelpful.tsx";
import ForwardBackButtons from "deco-sites/starting/islands/ForwardBackButtons/ForwardBackButtons.tsx";
import BreadCrumb from "deco-sites/starting/components/decohelp/pages/ui/BreadCrumb/Breadcrumb.tsx";
} from "site/components/decohelp/pages/ui/WasThisPageHelpful/WasThisPageHelpful.tsx";
import ForwardBackButtons from "site/islands/ForwardBackButtons/ForwardBackButtons.tsx";
import BreadCrumb from "site/components/decohelp/pages/ui/BreadCrumb/Breadcrumb.tsx";
import {
ContentType,
Props,
} from "deco-sites/starting/components/decohelp/pages/interfaces.ts";
} from "site/components/decohelp/pages/interfaces.ts";

function renderContentItem(item: ContentType, idx: number) {
return "Text" in item
Expand Down
2 changes: 1 addition & 1 deletion components/decohelp/pages/ui/OnThisPage/OnThisPage.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import useMenuState from "deco-sites/starting/components/decohelp/pages/hooks/useMenuState.ts";
import useMenuState from "site/components/decohelp/pages/hooks/useMenuState.ts";
import { useEffect, useState } from "preact/hooks";

interface OnThisPage {
Expand Down
6 changes: 3 additions & 3 deletions components/decohelp/pages/ui/Sidebar/Sidebar.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { useEffect, useState } from "preact/hooks";
import { Image as LiveImage } from "deco-sites/std/components/types.ts";
import Image from "deco-sites/std/components/Image.tsx";
import Icon from "deco-sites/starting/components/ui/Icon.tsx";
import MenuButton from "deco-sites/starting/components/decohelp/pages/ui/Sidebar/MenuButton.tsx";
import useMenuState from "deco-sites/starting/components/decohelp/pages/hooks/useMenuState.ts";
import Icon from "site/components/ui/Icon.tsx";
import MenuButton from "site/components/decohelp/pages/ui/Sidebar/MenuButton.tsx";
import useMenuState from "site/components/decohelp/pages/hooks/useMenuState.ts";
import SearchButton from "./SearchButton.tsx";

export interface SidebarContent {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import type { ImageWidget } from "apps/admin/widgets.ts";
import Image from "apps/website/components/Image.tsx";
import type { HTMLWidget } from "apps/admin/widgets.ts";
import { useState } from "preact/hooks";
import { Runtime } from "deco-sites/starting/runtime.ts";
import { Runtime } from "site/runtime.ts";

export interface WasThisPageHelpfulProps {
WasThisPageHelpful?: {
Expand Down Expand Up @@ -31,10 +31,10 @@ export default function WasThisPageHelpfulContent({
Button: {
NegativeButtonLabel: "Not really",
NegativeIcon:
"https://github.com/deco-sites/starting/assets/76822093/4a74c587-0c97-4b24-b6c9-e9a8fdcd60b2",
"https://github.com/site/assets/76822093/4a74c587-0c97-4b24-b6c9-e9a8fdcd60b2",
PositiveButtonLabel: "Yes, thanks",
PositiveIcon:
"https://github.com/deco-sites/starting/assets/76822093/d29d1ea7-fbc0-4e3e-85e2-0458c197fb97",
"https://github.com/site/assets/76822093/d29d1ea7-fbc0-4e3e-85e2-0458c197fb97",
},
Text:
"Can't find what you're looking for? Spot an error in the documentation? Get in touch with us on our Community Forum",
Expand All @@ -46,7 +46,7 @@ export default function WasThisPageHelpfulContent({
const handleButtonClick = async (label: string, helpful: boolean) => {
setIsPending(true);
setButtonClicked({ label, helpful });
await Runtime.invoke["deco-sites/starting"].actions.feedbackDocs({
await Runtime.invoke.site.actions.feedbackDocs({
contents: [helpful, label, window.location.href],
});
setIsPending(false);
Expand Down
2 changes: 1 addition & 1 deletion components/nrf/Faq.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Icon from "deco-sites/starting/components/ui/Icon.tsx";
import Icon from "site/components/ui/Icon.tsx";

export interface Question {
question: string;
Expand Down
4 changes: 2 additions & 2 deletions components/nrf/editor/Analytics.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { TopNavigation } from "deco-sites/starting/animations/assets/TopNavigation.tsx";
import { AnimatedSvgProps } from "deco-sites/starting/animations/utils.ts";
import { TopNavigation } from "site/animations/assets/TopNavigation.tsx";
import { AnimatedSvgProps } from "site/animations/utils.ts";

export const Analytics = (props: AnimatedSvgProps) => {
return (
Expand Down
4 changes: 2 additions & 2 deletions components/nrf/editor/AppsIntegrations.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { TopNavigation } from "deco-sites/starting/animations/assets/TopNavigation.tsx";
import { AnimatedSvgProps } from "deco-sites/starting/animations/utils.ts";
import { TopNavigation } from "site/animations/assets/TopNavigation.tsx";
import { AnimatedSvgProps } from "site/animations/utils.ts";

export const AppsIntegrations = (props: AnimatedSvgProps) => {
return (
Expand Down
4 changes: 2 additions & 2 deletions components/nrf/editor/ComponentLibrary.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { TopNavigation } from "deco-sites/starting/animations/assets/TopNavigation.tsx";
import { AnimatedSvgProps } from "deco-sites/starting/animations/utils.ts";
import { TopNavigation } from "site/animations/assets/TopNavigation.tsx";
import { AnimatedSvgProps } from "site/animations/utils.ts";

export const ComponentLibrary = (props: AnimatedSvgProps) => {
return (
Expand Down
4 changes: 2 additions & 2 deletions components/nrf/editor/ContentModeling.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { TopNavigation } from "deco-sites/starting/animations/assets/TopNavigation.tsx";
import { AnimatedSvgProps } from "deco-sites/starting/animations/utils.ts";
import { TopNavigation } from "site/animations/assets/TopNavigation.tsx";
import { AnimatedSvgProps } from "site/animations/utils.ts";

export const ContentModeling = (props: AnimatedSvgProps) => {
return (
Expand Down
4 changes: 2 additions & 2 deletions components/nrf/editor/DesignSystem.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { TopNavigation } from "deco-sites/starting/animations/assets/TopNavigation.tsx";
import { AnimatedSvgProps } from "deco-sites/starting/animations/utils.ts";
import { TopNavigation } from "site/animations/assets/TopNavigation.tsx";
import { AnimatedSvgProps } from "site/animations/utils.ts";

export const DesignSystem = (props: AnimatedSvgProps) => {
return (
Expand Down
4 changes: 2 additions & 2 deletions components/nrf/editor/FullCode.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { TopNavigation } from "deco-sites/starting/animations/assets/TopNavigation.tsx";
import { AnimatedSvgProps } from "deco-sites/starting/animations/utils.ts";
import { TopNavigation } from "site/animations/assets/TopNavigation.tsx";
import { AnimatedSvgProps } from "site/animations/utils.ts";

export const FullCode = (props: AnimatedSvgProps) => {
return (
Expand Down
4 changes: 2 additions & 2 deletions components/nrf/editor/RealtimeEditor.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { TopNavigation } from "deco-sites/starting/animations/assets/TopNavigation.tsx";
import { AnimatedSvgProps } from "deco-sites/starting/animations/utils.ts";
import { TopNavigation } from "site/animations/assets/TopNavigation.tsx";
import { AnimatedSvgProps } from "site/animations/utils.ts";

export const RealtimeEditor = (props: AnimatedSvgProps) => {
return (
Expand Down
4 changes: 2 additions & 2 deletions components/nrf/editor/Segmentation.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { TopNavigation } from "deco-sites/starting/animations/assets/TopNavigation.tsx";
import { AnimatedSvgProps } from "deco-sites/starting/animations/utils.ts";
import { TopNavigation } from "site/animations/assets/TopNavigation.tsx";
import { AnimatedSvgProps } from "site/animations/utils.ts";

export const Segmentation = (props: AnimatedSvgProps) => {
return (
Expand Down
2 changes: 1 addition & 1 deletion components/ranking/AnalyzeForm.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { useSignal } from "@preact/signals";
import { Site } from "deco-sites/starting/routes/api/ranking.ts";
import { Site } from "site/routes/api/ranking.ts";
import { JSX } from "preact";
import Form from "./analyze/Form.tsx";
import Loading from "./analyze/Loading.tsx";
Expand Down
2 changes: 1 addition & 1 deletion components/ranking/Header.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Icon from "deco-sites/starting/components/ui/Icon.tsx";
import Icon from "site/components/ui/Icon.tsx";
import type { Language } from "./ui/LanguageSwitcher.tsx";
import { LanguageSwitcher } from "./ui/LanguageSwitcher.tsx";
import { Head } from "$fresh/runtime.ts";
Expand Down
2 changes: 1 addition & 1 deletion components/ranking/RankingList.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { LoaderReturnType } from "deco/types.ts";
import type { Site } from "deco-sites/starting/routes/api/ranking.ts";
import type { Site } from "site/routes/api/ranking.ts";
import { SiteList } from "./list/SiteList.tsx";

export interface TableHeaderTranslations {
Expand Down
2 changes: 1 addition & 1 deletion components/ranking/analyze/Loading.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { AnalyzeFormTranslation } from "../AnalyzeForm.tsx";
import Spinner from "deco-sites/starting/components/ui/Spinner.tsx";
import Spinner from "site/components/ui/Spinner.tsx";

export interface Props {
translations: AnalyzeFormTranslation;
Expand Down
4 changes: 2 additions & 2 deletions components/ranking/analyze/Result.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import Icon from "deco-sites/starting/components/ui/Icon.tsx";
import { Site } from "deco-sites/starting/routes/api/ranking.ts";
import Icon from "site/components/ui/Icon.tsx";
import { Site } from "site/routes/api/ranking.ts";
import { IS_BROWSER } from "https://deno.land/x/[email protected]/src/runtime/utils.ts";
import { useEffect } from "preact/compat";
import { AnalyzeFormTranslation } from "../AnalyzeForm.tsx";
Expand Down
6 changes: 3 additions & 3 deletions components/ranking/list/SiteItem.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import type { Site } from "deco-sites/starting/routes/api/ranking.ts";
import FaviconImage from "deco-sites/starting/islands/FaviconImage.tsx";
import type { Site } from "site/routes/api/ranking.ts";
import FaviconImage from "site/islands/FaviconImage.tsx";
import Icon, {
AvailableIcons,
} from "deco-sites/starting/components/ui/Icon.tsx";
} from "site/components/ui/Icon.tsx";

export interface Props {
site: Site;
Expand Down
2 changes: 1 addition & 1 deletion components/ranking/list/SiteList.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Site } from "deco-sites/starting/routes/api/ranking.ts";
import { Site } from "site/routes/api/ranking.ts";
import { TableHeaderTranslations } from "../RankingList.tsx";
import { SiteItem } from "./SiteItem.tsx";

Expand Down
2 changes: 1 addition & 1 deletion components/ranking/ui/LanguageSwitcher.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { useSignal } from "@preact/signals";
import { useMemo } from "preact/compat";
import { useLanguage } from "../hooks/useLanguage.tsx";
import Icon from "deco-sites/starting/components/ui/Icon.tsx";
import Icon from "site/components/ui/Icon.tsx";
import { IS_BROWSER } from "https://deno.land/x/[email protected]/src/runtime/utils.ts";

export interface Language {
Expand Down
2 changes: 1 addition & 1 deletion components/seo/BlogMetatags.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Preview from "deco-sites/std/components/seo/components/Preview.tsx";
import { Head } from "$fresh/runtime.ts";
import { Post } from "deco-sites/starting/components/utils/Blog.ts";
import { Post } from "site/components/utils/Blog.ts";
import type { Props as SEOProps } from "deco-sites/std/components/seo/types.ts";
interface Props extends Omit<SEOProps, "context"> {
context?: Post & { seo: SEOProps } | null;
Expand Down
2 changes: 1 addition & 1 deletion components/seo/BlogPostSEO.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import Metatags from "./BlogMetatags.tsx";
import {
Post,
SupportedLocales,
} from "deco-sites/starting/components/utils/Blog.ts";
} from "site/components/utils/Blog.ts";
import type { Props as SEOProps } from "deco-sites/std/components/seo/types.ts";

export interface Props {
Expand Down
4 changes: 2 additions & 2 deletions components/ui/Benefits.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import Icon from "deco-sites/starting/components/ui/Icon.tsx";
import type { AvailableIcons } from "deco-sites/starting/components/ui/Icon.tsx";
import Icon from "site/components/ui/Icon.tsx";
import type { AvailableIcons } from "site/components/ui/Icon.tsx";

export interface Card {
icon: AvailableIcons;
Expand Down
8 changes: 4 additions & 4 deletions components/ui/Carousel.tsx
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import { useId } from "preact/hooks";
import Image from "deco-sites/std/components/Image.tsx";
import Slider from "deco-sites/starting/components/ui/Slider.tsx";
import SliderControllerJS from "deco-sites/starting/islands/SliderJS.tsx";
import { getAspectRatio } from "deco-sites/starting/sdk/utils.ts";
import Slider from "site/components/ui/Slider.tsx";
import SliderControllerJS from "site/islands/SliderJS.tsx";
import { getAspectRatio } from "site/sdk/utils.ts";
import {
getBlogPath,
Post,
SupportedLocales,
} from "deco-sites/starting/components/utils/Blog.ts";
} from "site/components/utils/Blog.ts";

const IMAGE_WIDTH = 360;

Expand Down
4 changes: 2 additions & 2 deletions components/ui/Case.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import ReCAPTCHA from "deco-sites/starting/sections/ReCAPTCHA.tsx";
import { RECAPTCHA_SITE_KEY } from "deco-sites/starting/sdk/recaptcha.ts";
import ReCAPTCHA from "site/sections/ReCAPTCHA.tsx";
import { RECAPTCHA_SITE_KEY } from "site/sdk/recaptcha.ts";

export interface listItem {
title?: string;
Expand Down
4 changes: 2 additions & 2 deletions components/ui/Community.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Image from "deco-sites/std/components/Image.tsx";
import type { Image as LiveImage } from "deco-sites/std/components/types.ts";
import Icon from "deco-sites/starting/components/ui/Icon.tsx";
import type { AvailableIcons } from "deco-sites/starting/components/ui/Icon.tsx";
import Icon from "site/components/ui/Icon.tsx";
import type { AvailableIcons } from "site/components/ui/Icon.tsx";

export interface Props {
mainText: string;
Expand Down
4 changes: 2 additions & 2 deletions components/ui/ContactUs.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { RECAPTCHA_SITE_KEY } from "deco-sites/starting/sdk/recaptcha.ts";
import ReCAPTCHA from "deco-sites/starting/sections/ReCAPTCHA.tsx";
import { RECAPTCHA_SITE_KEY } from "site/sdk/recaptcha.ts";
import ReCAPTCHA from "site/sections/ReCAPTCHA.tsx";
export interface listItem {
title?: string;
/** @format textarea */
Expand Down
2 changes: 1 addition & 1 deletion components/ui/Delight.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Icon from "deco-sites/starting/components/ui/Icon.tsx";
import Icon from "site/components/ui/Icon.tsx";

export interface Props {
mainText: string;
Expand Down
Loading

0 comments on commit 387edcb

Please sign in to comment.