Update site headers, buttons, and pricing table format

The changes made are primarily related to updating the layout and style of the site headers and buttons. A significant chunk of modifications were made to the pricing-table.tsx file, including tweaks to the styling, padding, highlighting, and addition of new properties. Also, the site-header-account-section.tsx and site-page-header.tsx files have seen a few changes, focusing mainly on buttons and heading style. A new locale message was added to facilitate better user interaction.
This commit is contained in:
giancarlo
2024-04-12 00:28:11 +08:00
parent fb86e6e6b2
commit b7aa64b06e
5 changed files with 34 additions and 39 deletions

View File

@@ -264,7 +264,7 @@ function RightFeatureContainer(props: React.PropsWithChildren) {
function MainCallToActionButton() {
return (
<div className={'flex space-x-2'}>
<Button>
<Button size={'lg'}>
<Link href={'/auth/sign-up'}>
<span className={'flex items-center space-x-0.5'}>
<span>Get Started</span>
@@ -278,12 +278,6 @@ function MainCallToActionButton() {
</span>
</Link>
</Button>
<Button variant={'ghost'}>
<Link href={'/auth/sign-in'}>
<span>Sign In</span>
</Link>
</Button>
</div>
);
}