import type { ButtonHTMLAttributes } from "react";
import Button from "./Button";
import { useI18n } from "../composables";
import "./GetStarted.scss";
interface GetStartedProps {
onClick?: ButtonHTMLAttributes["onClick"];
}
export default function GetStarted({ onClick }: GetStartedProps) {
const { t } = useI18n();
return (
);
}