Update src/app/contact/page.tsx

This commit is contained in:
2026-03-09 10:47:08 +00:00
parent 634a9edb21
commit e1b71fed94

View File

@@ -8,8 +8,8 @@ import Link from "next/link";
export default function ContactPage() {
const navItems = [
{ name: "Home", id: "/" },
{ name: "Features", id: "/" },
{ name: "Pricing", id: "/" },
{ name: "Features", id: "/#features" },
{ name: "Pricing", id: "/pricing" },
{ name: "Studio", id: "https://studio.dieter.ai" },
{ name: "Contact", id: "/contact" },
];
@@ -44,13 +44,9 @@ export default function ContactPage() {
useInvertedBackground={false}
buttons={[
{
text: "Launch Dieter Studio",
href: "https://studio.dieter.ai",
},
text: "Launch Dieter Studio", href: "https://studio.dieter.ai"},
{
text: "Book a Demo",
href: "mailto:hello@dieter.studio",
},
text: "Book a Demo", href: "mailto:hello@dieter.studio"},
]}
/>
</div>
@@ -73,12 +69,12 @@ export default function ContactPage() {
</Link>
</li>
<li>
<Link href="/" className="hover:text-white transition">
<a href="/#features" className="hover:text-white transition">
Features
</Link>
</a>
</li>
<li>
<Link href="/" className="hover:text-white transition">
<Link href="/pricing" className="hover:text-white transition">
Pricing
</Link>
</li>