Update src/app/contact/page.tsx

This commit is contained in:
2026-03-07 07:13:13 +00:00
parent 8c33de3f41
commit 81885f7a9e

View File

@@ -13,9 +13,7 @@ export default function ContactPage() {
const navItems = [
{ name: "Features", id: "features" },
{ name: "Capabilities", id: "capabilities" },
{ name: "Pricing", id: "pricing" },
{ name: "Resources", id: "resources" },
{ name: "Contact", id: "contact" },
{ name: "Start Now", id: "contact" },
];
return (
@@ -46,7 +44,7 @@ export default function ContactPage() {
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AbgrarWA6Ni3cF0kNAO9uvWj12/a-modern-sleek-ai-powered-life-operating-1772866977604-fb5c9c8d.png?_wi=2"
imageAlt="LifeOS Support Team"
buttons={[
{ text: "Start Free Trial", href: "/contact" },
{ text: "Start Now", href: "/contact" },
{ text: "Schedule Demo", href: "/contact" },
]}
buttonAnimation="slide-up"
@@ -99,7 +97,7 @@ export default function ContactPage() {
mediaAnimation="slide-up"
mediaPosition="right"
inputPlaceholder="your.email@company.com"
buttonText="Start Free Trial"
buttonText="Start Now"
termsText="By signing up, you agree to our Terms of Service and Privacy Policy. No credit card required."
onSubmit={(email) => console.log("Email submitted:", email)}
/>
@@ -117,4 +115,4 @@ export default function ContactPage() {
</div>
</ThemeProvider>
);
}
}