2 Commits

Author SHA1 Message Date
154fb43236 Update src/app/page.tsx 2026-04-26 20:44:55 +00:00
e92d37f0ca Merge version_2 into main
Merge version_2 into main
2026-04-26 20:37:22 +00:00

View File

@@ -31,17 +31,17 @@ export default function LandingPage() {
<NavbarLayoutFloatingOverlay <NavbarLayoutFloatingOverlay
navItems={[ navItems={[
{ {
name: "Dashboard", id: "#hero"}, name: "Dashboard", id: "hero"},
{ {
name: "Features", id: "#features"}, name: "Features", id: "features"},
{ {
name: "Pricing", id: "#pricing"}, name: "Pricing", id: "pricing"},
{ {
name: "Contact", id: "#contact"}, name: "Contact", id: "contact"},
]} ]}
brandName="KosmosAI" brandName="KosmosAI"
button={{ button={{
text: "Get Started", href: "#contact"}} text: "Get Started", href: "contact"}}
/> />
</div> </div>
@@ -54,9 +54,9 @@ export default function LandingPage() {
tag="Next-Gen Intelligence" tag="Next-Gen Intelligence"
buttons={[ buttons={[
{ {
text: "Start Learning", href: "#features"}, text: "Start Learning", href: "features"},
{ {
text: "View Dashboard", href: "#contact"}, text: "View Dashboard", href: "contact"},
]} ]}
imageSrc="http://img.b2bpic.net/free-photo/man-trading-browsing-online-stock-investments-night_169016-57448.jpg?_wi=1" imageSrc="http://img.b2bpic.net/free-photo/man-trading-browsing-online-stock-investments-night_169016-57448.jpg?_wi=1"
imageAlt="KosmosAI Adaptive Dashboard" imageAlt="KosmosAI Adaptive Dashboard"
@@ -171,4 +171,4 @@ export default function LandingPage() {
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }