Due to design changes, removed old authentication components and related configuration settings in .idea and .vscode folders. Changes include elimination of subscription input, email input, login and register modals, and user interface blocks. All changes aim to clean up the codebase and eliminate unused or unnecessary code.
13 lines
480 B
Text
13 lines
480 B
Text
---
|
|
const { title } = Astro.props;
|
|
|
|
interface Props {
|
|
title: string;
|
|
}
|
|
---
|
|
|
|
<button
|
|
type="submit"
|
|
class="inline-flex w-full items-center justify-center gap-x-2 rounded-lg border border-transparent bg-yellow-400 px-4 py-3 text-sm font-bold text-neutral-700 hover:bg-yellow-500 disabled:pointer-events-none disabled:opacity-50 dark:focus:outline-none 2xl:text-base focus-visible:ring outline-none ring-zinc-500 dark:ring-zinc-200 transition duration-300"
|
|
>{title}</button
|
|
>
|