Merge version_2 into main #4

Merged
bender merged 1 commits from version_2 into main 2026-04-27 19:26:51 +00:00

View File

@@ -32,11 +32,11 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "#hero" },
{ name: "About", id: "#about" },
{ name: "Features", id: "#features" },
{ name: "Pricing", id: "#pricing" },
{ name: "Contact", id: "#contact" },
{ name: "Home", id: "hero" },
{ name: "About", id: "about" },
{ name: "Features", id: "features" },
{ name: "Pricing", id: "pricing" },
{ name: "Contact", id: "contact" },
]}
brandName="GoldRate Engine"
/>
@@ -47,7 +47,7 @@ export default function LandingPage() {
background={{ variant: "plain" }}
title="Real-Time Gold Price Engine India"
description="Trusted source for 22K, 23K, and 24K gold rates. Get live market updates and informed investment guidance at your fingertips."
buttons={[{ text: "Start Tracking", href: "#pricing" }]}
buttons={[{ text: "Start Tracking", href: "pricing" }]}
imageSrc="http://img.b2bpic.net/free-photo/close-up-gold-piece-material-with-circle-gold-center_91008-481.jpg?_wi=1"
mediaAnimation="slide-up"
avatars={[
@@ -173,7 +173,7 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{ title: "Learn More", items: [{ label: "About Us", href: "#about" }, { label: "Contact Us", href: "#contact" }] },
{ title: "Learn More", items: [{ label: "About Us", href: "about" }, { label: "Contact Us", href: "contact" }] },
{ title: "Legal", items: [{ label: "Terms of Service", href: "#" }, { label: "Privacy Policy", href: "#" }] },
]}
bottomLeftText="© 2026 Greynium Information Technology"
@@ -183,4 +183,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}