Update src/app/page.tsx

This commit is contained in:
2026-03-04 07:21:35 +00:00
parent 80cc972877
commit 4ec32cbe97

View File

@@ -46,7 +46,7 @@ export default function HomePage() {
<NavbarLayoutFloatingInline
brandName="TOMAN"
navItems={navItems.map((item) => ({ name: item.name, id: item.id }))}
button={{ text: "Sign In", href: "/signin" }}
button={{ text: "Enter TOMAN Now", href: "/signin" }}
animateOnLoad={true}
/>
</div>
@@ -60,7 +60,7 @@ export default function HomePage() {
tagIcon={Lock}
tagAnimation="blur-reveal"
buttons={[
{ text: "Sign In", href: "/signin" },
{ text: "Enter TOMAN Now", href: "/signin" },
{ text: "New Member?", href: "/signup" },
]}
buttonAnimation="slide-up"
@@ -294,4 +294,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}