diff --git a/www/apps/api-reference/app/_mdx/admin.mdx b/www/apps/api-reference/app/_mdx/admin.mdx index 61e51f23a3..5c89f431e1 100644 --- a/www/apps/api-reference/app/_mdx/admin.mdx +++ b/www/apps/api-reference/app/_mdx/admin.mdx @@ -18,14 +18,6 @@ import ClientLibraries from "./client-libraries.mdx" - - -Medusa v2.0 is in development and not suitable for production -environments. As such, the API reference is incomplete and subject to -change, so please use it with caution. - - - This API reference includes Medusa v2's Admin APIs, which are REST APIs exposed by the Medusa application. They are used to perform admin functionalities or create an admin dashboard to access and manipulate your commerce store's data. All API Routes are prefixed with `/admin`. So, during development, the API Routes will be available under the path `http://localhost:9000/admin`. For production, replace `http://localhost:9000` with your Medusa application URL. diff --git a/www/apps/api-reference/app/_mdx/client-libraries.mdx b/www/apps/api-reference/app/_mdx/client-libraries.mdx index 335f8602b1..d87ba7f6be 100644 --- a/www/apps/api-reference/app/_mdx/client-libraries.mdx +++ b/www/apps/api-reference/app/_mdx/client-libraries.mdx @@ -13,7 +13,7 @@ Check out the [Medusa v2 Documentation](https://docs.medusajs.com/v2). To use Medusa's JS SDK library, install the following packages in your project (not required for admin customizations): ```bash -npm install @medusajs/js-sdk@rc @medusajs/types@rc +npm install @medusajs/js-sdk@latest @medusajs/types@latest ``` Learn more about the JS SDK in [this documentation](https://docs.medusajs.com/v2/resources/js-sdk). diff --git a/www/apps/api-reference/app/_mdx/store.mdx b/www/apps/api-reference/app/_mdx/store.mdx index 393d321360..efd6b75f80 100644 --- a/www/apps/api-reference/app/_mdx/store.mdx +++ b/www/apps/api-reference/app/_mdx/store.mdx @@ -18,14 +18,6 @@ import ClientLibraries from "./client-libraries.mdx" - - -Medusa v2.0 is in development and not suitable for production -environments. As such, the API reference is incomplete and subject to -change, so please use it with caution. - - - This API reference includes Medusa v2's Store APIs, which are REST APIs exposed by the Medusa application. They are used to create a storefront for your commerce store, such as a webshop or a commerce mobile app. All API Routes are prefixed with `/store`. So, during development, the API Routes will be available under the path `http://localhost:9000/store`. For production, replace `http://localhost:9000` with your Medusa application URL. diff --git a/www/apps/api-reference/app/layout.tsx b/www/apps/api-reference/app/layout.tsx index e66e474383..b84cc379f7 100644 --- a/www/apps/api-reference/app/layout.tsx +++ b/www/apps/api-reference/app/layout.tsx @@ -32,7 +32,6 @@ export default function RootLayout({ expandItems: false, }} showToc={false} - showBanner={false} showBreadcrumbs={false} ProvidersComponent={Providers} > diff --git a/www/apps/book/app/learn/advanced-development/data-models/manage-relationships/page.mdx b/www/apps/book/app/learn/advanced-development/data-models/manage-relationships/page.mdx index a978de4154..60abbb7708 100644 --- a/www/apps/book/app/learn/advanced-development/data-models/manage-relationships/page.mdx +++ b/www/apps/book/app/learn/advanced-development/data-models/manage-relationships/page.mdx @@ -1,10 +1,8 @@ -import { BetaBadge } from "docs-ui" - export const metadata = { title: `${pageNumber} Manage Relationships`, } -# {metadata.title} +# {metadata.title} In this chapter, you'll learn how to manage relationships between data models when creating, updating, or retrieving records using the module's main service. diff --git a/www/apps/book/app/learn/advanced-development/data-models/relationships/page.mdx b/www/apps/book/app/learn/advanced-development/data-models/relationships/page.mdx index 92457b419c..fcb2215fda 100644 --- a/www/apps/book/app/learn/advanced-development/data-models/relationships/page.mdx +++ b/www/apps/book/app/learn/advanced-development/data-models/relationships/page.mdx @@ -1,10 +1,8 @@ -import { BetaBadge } from "docs-ui" - export const metadata = { title: `${pageNumber} Data Model Relationships`, } -# {metadata.title} +# {metadata.title} In this chapter, you’ll learn how to define relationships between data models in your module. diff --git a/www/apps/book/app/learn/advanced-development/module-links/remote-link/page.mdx b/www/apps/book/app/learn/advanced-development/module-links/remote-link/page.mdx index 0812304637..2f6c803581 100644 --- a/www/apps/book/app/learn/advanced-development/module-links/remote-link/page.mdx +++ b/www/apps/book/app/learn/advanced-development/module-links/remote-link/page.mdx @@ -1,10 +1,8 @@ -import { BetaBadge } from "docs-ui" - export const metadata = { title: `${pageNumber} Remote Link`, } -# {metadata.title} +# {metadata.title} In this chapter, you’ll learn what the remote link is and how to use it to manage links. diff --git a/www/apps/book/app/learn/debugging-and-testing/testing-tools/page.mdx b/www/apps/book/app/learn/debugging-and-testing/testing-tools/page.mdx index a7fdb8d9bc..3555afe67f 100644 --- a/www/apps/book/app/learn/debugging-and-testing/testing-tools/page.mdx +++ b/www/apps/book/app/learn/debugging-and-testing/testing-tools/page.mdx @@ -15,7 +15,7 @@ Medusa provides a `@medusajs/test-utils` package with utility tools to create in To use the `@medusajs/test-utils` package, install it as a `devDependency`: ```bash npm2yarn -npm install --save-dev @medusajs/test-utils@rc +npm install --save-dev @medusajs/test-utils@latest ``` --- diff --git a/www/apps/book/app/learn/deployment/page.mdx b/www/apps/book/app/learn/deployment/page.mdx index d3cfbd190c..4c91773771 100644 --- a/www/apps/book/app/learn/deployment/page.mdx +++ b/www/apps/book/app/learn/deployment/page.mdx @@ -6,12 +6,6 @@ export const metadata = { In this chapter, you’ll learn the general approach to deploying the Medusa application. - - -As Medusa v2 is still in active development, it's highly recommended not to deploy it for production purposes. - - - ## Medusa Project Components A standard Medusa project is made up of: diff --git a/www/apps/book/app/learn/page.mdx b/www/apps/book/app/learn/page.mdx index 8c40a92f72..754140e6f6 100644 --- a/www/apps/book/app/learn/page.mdx +++ b/www/apps/book/app/learn/page.mdx @@ -42,7 +42,7 @@ However, unlike other platforms, Medusa is built with customization in mind. You Create your first Medusa store by running the following command: ```bash -npx create-medusa-app@rc +npx create-medusa-app@latest ``` --- diff --git a/www/apps/book/app/learn/storefront-development/nextjs-starter/page.mdx b/www/apps/book/app/learn/storefront-development/nextjs-starter/page.mdx index 6d29d074dd..b760985f5d 100644 --- a/www/apps/book/app/learn/storefront-development/nextjs-starter/page.mdx +++ b/www/apps/book/app/learn/storefront-development/nextjs-starter/page.mdx @@ -1,10 +1,10 @@ -import { Prerequisites, BetaBadge } from "docs-ui" +import { Prerequisites } from "docs-ui" export const metadata = { title: `${pageNumber} Next.js Starter`, } -# {metadata.title} +# {metadata.title} In this chapter, you’ll learn how to install and use the Next.js Starter storefront. diff --git a/www/apps/resources/app/deployment/admin/vercel/page.mdx b/www/apps/resources/app/deployment/admin/vercel/page.mdx index 04ba3955d7..7ab29c55fc 100644 --- a/www/apps/resources/app/deployment/admin/vercel/page.mdx +++ b/www/apps/resources/app/deployment/admin/vercel/page.mdx @@ -12,14 +12,6 @@ export const metadata = { In this document, you’ll learn how to deploy the Medusa Admin to [Vercel](https://vercel.com). - - -As Medusa v2 is still in active development, it's highly recommended not to deploy it for production purposes. The deployment process may also change. - - - ---- - - -As Medusa v2 is still in active development, it's highly recommended not to deploy it for production purposes. - - - ## What You’ll Deploy 1. PostgreSQL database. @@ -405,12 +398,3 @@ To check issues or errors in your deployed Medusa application: 1. Click on the card of the Medusa application in server mode. 2. Click on the Deployments tab. 3. Click on the View Logs button. - - - } - ]} -/> diff --git a/www/apps/resources/app/deployment/page.mdx b/www/apps/resources/app/deployment/page.mdx index 4e150bec7e..c74a496722 100644 --- a/www/apps/resources/app/deployment/page.mdx +++ b/www/apps/resources/app/deployment/page.mdx @@ -6,10 +6,4 @@ export const metadata = { # {metadata.title} - - -As Medusa v2 is still in active development, it's highly recommended not to deploy it for production purposes. - - - \ No newline at end of file diff --git a/www/apps/resources/app/deployment/storefront/vercel/page.mdx b/www/apps/resources/app/deployment/storefront/vercel/page.mdx index adf119ac3d..790310b438 100644 --- a/www/apps/resources/app/deployment/storefront/vercel/page.mdx +++ b/www/apps/resources/app/deployment/storefront/vercel/page.mdx @@ -12,14 +12,6 @@ export const metadata = { In this document, you’ll learn how to deploy the Next.js storefront to [Vercel](https://vercel.com). - - -As Medusa v2 is still in active development, it's highly recommended not to deploy it for production purposes. The deployment process may also change. - - - ---- - +# {metadata.title} The Next.js Starter storefront provides rich commerce features and a sleek design. Developers and businesses can use it as-is or as a starting point to build a storefront for their Medusa application. @@ -23,26 +23,6 @@ The Next.js Starter storefront provides rich commerce features and a sleek desig ## Installation -{/* TODO add when we support next.js starter in create-medusa-app v2 */} - -{/* ### Option 1: Medusa Application + Next.js Starter - -The `create-medusa-app` CLI tool accepts the `--with-nextjs-starter` option that installs the Next.js storefront along with the Medusa application: - -```bash -npx create-medusa-app@latest --with-nextjs-starter -``` - -Refer to the [create-medusa-app reference](../create-medusa-app/page.mdx) for more details on prerequisites, steps, and troubleshooting. */} - -{/* ### Option 2: Next.js Starter Only */} - -{/* - -- At least one region in the Medusa application. - - */} - 1. Clone the `v2` branch of the [Next.js Starter](https://github.com/medusajs/nextjs-starter-medusa): ```bash diff --git a/www/apps/resources/app/recipes/b2b/page.mdx b/www/apps/resources/app/recipes/b2b/page.mdx index 9ac8e49266..5a47fa580a 100644 --- a/www/apps/resources/app/recipes/b2b/page.mdx +++ b/www/apps/resources/app/recipes/b2b/page.mdx @@ -5,7 +5,7 @@ export const metadata = { title: `B2B Recipe`, } -# {metadata.title} +# {metadata.title} This recipe provides the general steps to implement a B2B store with Medusa. diff --git a/www/apps/resources/app/recipes/commerce-automation/page.mdx b/www/apps/resources/app/recipes/commerce-automation/page.mdx index 14bf4b7a9e..f8a48087ef 100644 --- a/www/apps/resources/app/recipes/commerce-automation/page.mdx +++ b/www/apps/resources/app/recipes/commerce-automation/page.mdx @@ -1,11 +1,11 @@ import { AcademicCapSolid, BoltSolid } from "@medusajs/icons" -import { LearningPath, BetaBadge } from "docs-ui" +import { BetaBadge } from "docs-ui" export const metadata = { title: `Commerce Automation Recipe`, } -# {metadata.title} +# {metadata.title} This recipe provides the general steps to implement commerce automation with Medusa. diff --git a/www/apps/resources/app/recipes/ecommerce/page.mdx b/www/apps/resources/app/recipes/ecommerce/page.mdx index eaadb0653e..68a3f70e8b 100644 --- a/www/apps/resources/app/recipes/ecommerce/page.mdx +++ b/www/apps/resources/app/recipes/ecommerce/page.mdx @@ -32,7 +32,7 @@ Medusa provides all essential commerce features out-of-the-box. Businesses can g Use the following command to install an ecommerce store with Medusa: ```bash -npx create-medusa-app@rc --with-nextjs-starter +npx create-medusa-app@latest --with-nextjs-starter ``` This installs: diff --git a/www/apps/resources/app/storefront-development/tips/page.mdx b/www/apps/resources/app/storefront-development/tips/page.mdx index b3f3e5ee84..6af1663007 100644 --- a/www/apps/resources/app/storefront-development/tips/page.mdx +++ b/www/apps/resources/app/storefront-development/tips/page.mdx @@ -22,7 +22,7 @@ The `@medusajs/types` package provide API routes' request and response types. If you're not using the JS SDK, install `@medusajs/types` to use the correct request and response types: ```bash npm2yarn -npm install @medusajs/types@rc +npm install @medusajs/types@latest ``` --- diff --git a/www/apps/resources/app/troubleshooting/_sections/common-installation-errors/outdated-preview.mdx b/www/apps/resources/app/troubleshooting/_sections/common-installation-errors/outdated-preview.mdx deleted file mode 100644 index e78821b2c4..0000000000 --- a/www/apps/resources/app/troubleshooting/_sections/common-installation-errors/outdated-preview.mdx +++ /dev/null @@ -1,10 +0,0 @@ -If you've installed an `rc` version of a package, such as `@medusajs/medusa/file-s3`, make sure its version in `package.json` is set to `rc`: - -```json title="package.json" -"dependencies": { - // ... - "@medusajs/medusa/file-s3": "rc" -} -``` - -Otherwise, unexpected errors may occur when running the Medusa application due to outdated version installed. diff --git a/www/apps/resources/app/troubleshooting/deployment/page.mdx b/www/apps/resources/app/troubleshooting/deployment/page.mdx deleted file mode 100644 index 39e45966c3..0000000000 --- a/www/apps/resources/app/troubleshooting/deployment/page.mdx +++ /dev/null @@ -1,11 +0,0 @@ -import OutdatedPreviewContent from "../_sections/common-installation-errors/outdated-preview.mdx" - -export const metadata = { - title: `General Deployment Errors`, -} - -# {metadata.title} - -## Dependencies Using Outdated Preview Version - - \ No newline at end of file diff --git a/www/apps/resources/app/troubleshooting/page.mdx b/www/apps/resources/app/troubleshooting/page.mdx index 6f94588722..b76fd2ac40 100644 --- a/www/apps/resources/app/troubleshooting/page.mdx +++ b/www/apps/resources/app/troubleshooting/page.mdx @@ -6,24 +6,4 @@ export const metadata = { # {metadata.title} -## Update Medusa Version - -While Medusa v2 is still in active development, a version is released every three hours under the `rc` tag. - -If you run into issues during your development, try first to remove the `node_modules` directory and `yarn.lock` file (or `package-lock.json`) and re-install the dependencies: - -```bash -rm -rf node_modules -rm yarn.lock # or package-lock.json -yarn install # or npm install -``` - -This updates the Medusa v2 dependencies to the latest `rc` version, which may have resolved your issue. - -If your issue still persists, check out the troubleshooting guides below or [create a GitHub issue](https://github.com/medusajs/medusa/issues/new?assignees=&labels=status:+needs+triaging,+version:+2.0&projects=&template=bug_report_v2.md&title=). - ---- - -## Guides - \ No newline at end of file diff --git a/www/apps/resources/app/upgrade-guides/page.mdx b/www/apps/resources/app/upgrade-guides/page.mdx index 9e3c36fac7..dede3c5ad8 100644 --- a/www/apps/resources/app/upgrade-guides/page.mdx +++ b/www/apps/resources/app/upgrade-guides/page.mdx @@ -1,5 +1,5 @@ export const metadata = { - title: `Troubleshooting Guides`, + title: `Upgrade Guides`, } # {metadata.title} diff --git a/www/apps/resources/generated/edit-dates.mjs b/www/apps/resources/generated/edit-dates.mjs index 7a100f1335..e4a16283b1 100644 --- a/www/apps/resources/generated/edit-dates.mjs +++ b/www/apps/resources/generated/edit-dates.mjs @@ -117,7 +117,7 @@ export const generatedEditDates = { "app/contribution-guidelines/docs/page.mdx": "2024-10-16T15:48:04.071Z", "app/create-medusa-app/page.mdx": "2024-08-05T11:10:55+03:00", "app/deployment/admin/vercel/page.mdx": "2024-10-16T08:10:29.377Z", - "app/deployment/medusa-application/railway/page.mdx": "2024-10-15T12:50:50.981Z", + "app/deployment/medusa-application/railway/page.mdx": "2024-10-22T11:02:09.029Z", "app/deployment/storefront/vercel/page.mdx": "2024-07-26T07:21:31+00:00", "app/deployment/page.mdx": "2024-07-25T09:55:22+03:00", "app/integrations/page.mdx": "2024-10-15T12:26:39.839Z", @@ -129,7 +129,7 @@ export const generatedEditDates = { "app/recipes/commerce-automation/page.mdx": "2024-10-16T08:52:01.585Z", "app/recipes/digital-products/examples/standard/page.mdx": "2024-10-16T08:52:12.991Z", "app/recipes/digital-products/page.mdx": "2024-10-03T13:07:44.147Z", - "app/recipes/ecommerce/page.mdx": "2024-06-09T15:18:43+02:00", + "app/recipes/ecommerce/page.mdx": "2024-10-22T11:01:01.218Z", "app/recipes/integrate-ecommerce-stack/page.mdx": "2024-10-16T08:52:16.760Z", "app/recipes/marketplace/examples/vendors/page.mdx": "2024-10-16T08:52:24.906Z", "app/recipes/marketplace/page.mdx": "2024-10-03T13:07:44.153Z", @@ -193,7 +193,7 @@ export const generatedEditDates = { "app/storefront-development/regions/list/page.mdx": "2024-09-11T10:07:34.742Z", "app/storefront-development/regions/store-retrieve-region/page.mdx": "2024-09-11T10:07:42.887Z", "app/storefront-development/regions/page.mdx": "2024-06-09T15:19:09+02:00", - "app/storefront-development/tips/page.mdx": "2024-10-16T12:44:31.781Z", + "app/storefront-development/tips/page.mdx": "2024-10-22T11:01:01.298Z", "app/storefront-development/page.mdx": "2024-06-09T15:19:09+02:00", "app/troubleshooting/cors-errors/page.mdx": "2024-05-03T17:36:38+03:00", "app/troubleshooting/create-medusa-app-errors/page.mdx": "2024-07-11T10:29:13+03:00", @@ -238,7 +238,6 @@ export const generatedEditDates = { "app/admin-widget-injection-zones/page.mdx": "2024-09-30T08:43:53.147Z", "app/architectural-modules/notification/page.mdx": "2024-10-15T12:51:28.735Z", "app/architectural-modules/event/create/page.mdx": "2024-10-16T08:51:41.334Z", - "app/troubleshooting/deployment/page.mdx": "2024-08-19T07:19:40.924Z", "references/core_flows/Order/functions/core_flows.Order.orderEditUpdateItemQuantityValidationStep/page.mdx": "2024-08-20T00:10:58.913Z", "references/core_flows/Order/functions/core_flows.Order.orderEditUpdateItemQuantityWorkflow/page.mdx": "2024-08-20T00:10:58.949Z", "references/core_flows/Order/functions/core_flows.Order.updateOrderEditItemQuantityValidationStep/page.mdx": "2024-08-20T00:10:59.121Z", diff --git a/www/apps/resources/generated/files-map.mjs b/www/apps/resources/generated/files-map.mjs index 0efc8c91cf..f32af0876f 100644 --- a/www/apps/resources/generated/files-map.mjs +++ b/www/apps/resources/generated/files-map.mjs @@ -979,10 +979,6 @@ export const filesMap = [ "filePath": "/www/apps/resources/app/troubleshooting/database-errors/page.mdx", "pathname": "/troubleshooting/database-errors" }, - { - "filePath": "/www/apps/resources/app/troubleshooting/deployment/page.mdx", - "pathname": "/troubleshooting/deployment" - }, { "filePath": "/www/apps/resources/app/troubleshooting/dist-imports/page.mdx", "pathname": "/troubleshooting/dist-imports" diff --git a/www/apps/resources/generated/sidebar.mjs b/www/apps/resources/generated/sidebar.mjs index 0b05642809..04fbbd54b6 100644 --- a/www/apps/resources/generated/sidebar.mjs +++ b/www/apps/resources/generated/sidebar.mjs @@ -9250,14 +9250,6 @@ export const generatedSidebar = [ "children": [] } ] - }, - { - "loaded": true, - "isPathHref": true, - "type": "link", - "path": "/troubleshooting/deployment", - "title": "Deployment", - "children": [] } ] } diff --git a/www/apps/resources/sidebar.mjs b/www/apps/resources/sidebar.mjs index bc79f30dd6..ab4e5acecc 100644 --- a/www/apps/resources/sidebar.mjs +++ b/www/apps/resources/sidebar.mjs @@ -2212,11 +2212,6 @@ export const sidebar = sidebarAttachHrefCommonOptions([ }, ], }, - { - type: "link", - path: "/troubleshooting/deployment", - title: "Deployment", - }, ], }, ], diff --git a/www/apps/ui/src/app/layout.tsx b/www/apps/ui/src/app/layout.tsx index d618c1a7f3..675b272401 100644 --- a/www/apps/ui/src/app/layout.tsx +++ b/www/apps/ui/src/app/layout.tsx @@ -38,7 +38,6 @@ export default function RootLayout({ sidebarProps={{ expandItems: true, }} - showBanner={false} ProvidersComponent={Providers} > {children} diff --git a/www/packages/docs-ui/src/components/AiAssistant/ThreadItem/index.tsx b/www/packages/docs-ui/src/components/AiAssistant/ThreadItem/index.tsx index 44e4bcb5eb..1a07cf2b53 100644 --- a/www/packages/docs-ui/src/components/AiAssistant/ThreadItem/index.tsx +++ b/www/packages/docs-ui/src/components/AiAssistant/ThreadItem/index.tsx @@ -17,7 +17,11 @@ export const AiAssistantThreadItem = ({ item }: AiAssistantThreadItemProps) => { item.type === "answer" && "!pr-[20px]" )} > - {item.type !== "question" && } + {item.type !== "question" && ( + + + + )}
{ "px-docs_0.75 py-docs_0.5", ], item.type !== "question" && "flex-1", - item.type === "answer" && "text-pretty" + item.type === "answer" && "text-pretty flex-1" )} > {item.type === "question" && <>{item.content}} diff --git a/www/packages/docs-ui/src/components/Bannerv2/index.tsx b/www/packages/docs-ui/src/components/Bannerv2/index.tsx deleted file mode 100644 index d0da40a740..0000000000 --- a/www/packages/docs-ui/src/components/Bannerv2/index.tsx +++ /dev/null @@ -1,65 +0,0 @@ -"use client" - -import React, { useEffect, useState } from "react" -import { Button, useIsBrowser } from "../.." -import { ExclamationCircleSolid, XMark } from "@medusajs/icons" -import clsx from "clsx" - -const LOCAL_STORAGE_KEY = "banner-v2" - -export type Bannerv2Props = { - className?: string -} - -export const Bannerv2 = ({ className }: Bannerv2Props) => { - const [show, setShow] = useState(false) - const { isBrowser } = useIsBrowser() - - useEffect(() => { - if (!isBrowser) { - return - } - - const localStorageValue = localStorage.getItem(LOCAL_STORAGE_KEY) - if (!localStorageValue) { - setShow(true) - } - }, [isBrowser]) - - const handleClose = () => { - setShow(false) - localStorage.setItem(LOCAL_STORAGE_KEY, "true") - } - - return ( - - ) -} diff --git a/www/packages/docs-ui/src/components/Icons/AiAssistant/index.tsx b/www/packages/docs-ui/src/components/Icons/AiAssistant/index.tsx index 0308d7178a..d1c523adea 100644 --- a/www/packages/docs-ui/src/components/Icons/AiAssistant/index.tsx +++ b/www/packages/docs-ui/src/components/Icons/AiAssistant/index.tsx @@ -4,45 +4,40 @@ import { IconProps } from "@medusajs/icons/dist/types" export const AiAssistantIcon = (props: IconProps) => { return ( - + + - @@ -51,14 +46,19 @@ export const AiAssistantIcon = (props: IconProps) => { mixBlendMode: "plus-lighter", }} opacity="0.8" - filter="url(#filter2_f_10448_46450)" + filter="url(#filter2_f_10861_53192)" > - + @@ -67,21 +67,21 @@ export const AiAssistantIcon = (props: IconProps) => { mixBlendMode: "plus-lighter", }} opacity="0.8" - filter="url(#filter3_f_10448_46450)" + filter="url(#filter3_f_10861_53192)" > @@ -90,21 +90,21 @@ export const AiAssistantIcon = (props: IconProps) => { mixBlendMode: "plus-lighter", }} opacity="0.8" - filter="url(#filter4_f_10448_46450)" + filter="url(#filter4_f_10861_53192)" > @@ -113,31 +113,31 @@ export const AiAssistantIcon = (props: IconProps) => { mixBlendMode: "plus-lighter", }} opacity="0.8" - filter="url(#filter5_f_10448_46450)" + filter="url(#filter5_f_10861_53192)" > @@ -158,12 +158,12 @@ export const AiAssistantIcon = (props: IconProps) => { { { /> { /> { /> { /> { /> { /> { /> @@ -358,10 +358,10 @@ export const AiAssistantIcon = (props: IconProps) => { @@ -369,10 +369,10 @@ export const AiAssistantIcon = (props: IconProps) => { @@ -380,10 +380,10 @@ export const AiAssistantIcon = (props: IconProps) => { @@ -391,7 +391,7 @@ export const AiAssistantIcon = (props: IconProps) => { { { { { { { const { isBrowser } = useIsBrowser() @@ -43,7 +41,6 @@ export const MainContentLayout = ({ mainWrapperClasses )} > - {showBanner && }