import { component$, useStylesScoped$ } from '@builder.io/qwik'; import { $translate as t } from 'qwik-speak'; import Button, { ButtonTheme } from '../../button/button'; import Section from '../../section/section'; import styles from './medusa.css?inline'; import { centerShape, leftShape, rightShape } from './shapes'; import Line from '../../line/line'; export default component$(() => { useStylesScoped$(styles); return (

{t('medusa.title@@Start using Module Federation with')}

{leftShape}
{centerShape}
{rightShape}
); });