Update src/app/page.tsx

This commit is contained in:
2026-01-22 13:38:00 +00:00
parent 0261208854
commit d12001b19c

View File

@@ -30,7 +30,7 @@ export default function HomePage() {
<NavbarStyleMinimal <NavbarStyleMinimal
brandName="Kapital" brandName="Kapital"
button={{ button={{
text: "Schedule Consultation", href: "/contact" text: "Schedule Consultation", href: "#contact"
}} }}
/> />
</div> </div>
@@ -42,8 +42,8 @@ export default function HomePage() {
tag="Investment Excellence" tag="Investment Excellence"
tagIcon={TrendingUp} tagIcon={TrendingUp}
buttons={[ buttons={[
{ text: "Start Investing", href: "/contact" }, { text: "Start Investing", href: "#contact" },
{ text: "Explore Strategies", href: "/services" } { text: "Explore Strategies", href: "#features" }
]} ]}
background={{ variant: "radial-gradient" }} background={{ variant: "radial-gradient" }}
carouselItems={[ carouselItems={[
@@ -207,24 +207,24 @@ export default function HomePage() {
columns={[ columns={[
{ {
title: "Services", items: [ title: "Services", items: [
{ label: "Wealth Management", href: "/services" }, { label: "Wealth Management", href: "features" },
{ label: "Portfolio Management", href: "/services" }, { label: "Portfolio Management", href: "features" },
{ label: "Financial Planning", href: "/services" }, { label: "Financial Planning", href: "features" },
{ label: "Alternative Investments", href: "/services" } { label: "Alternative Investments", href: "features" }
] ]
}, },
{ {
title: "Company", items: [ title: "Company", items: [
{ label: "About Us", href: "/about" }, { label: "About Us", href: "about" },
{ label: "Our Team", href: "/about" }, { label: "Our Team", href: "about" },
{ label: "Blog", href: "/blog" }, { label: "Blog", href: "blog" },
{ label: "Careers", href: "#" } { label: "Careers", href: "#" }
] ]
}, },
{ {
title: "Support", items: [ title: "Support", items: [
{ label: "FAQ", href: "/support" }, { label: "FAQ", href: "faq" },
{ label: "Contact Us", href: "/contact" }, { label: "Contact Us", href: "contact" },
{ label: "Privacy Policy", href: "#" }, { label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" } { label: "Terms of Service", href: "#" }
] ]