From e1b71fed9456bb97c4daa444c7b9ada795fa896a Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 10:47:08 +0000 Subject: [PATCH 1/5] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 351d189..250216c 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -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"}, ]} /> @@ -73,12 +69,12 @@ export default function ContactPage() {
  • - + Features - +
  • - + Pricing
  • -- 2.49.1 From bea924e3c6fbc61a11892f3340af5a57ab4461b1 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 10:47:09 +0000 Subject: [PATCH 2/5] Update src/app/page.tsx --- src/app/page.tsx | 224 +++++++++++------------------------------------ 1 file changed, 51 insertions(+), 173 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index bea3418..1a3c53c 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -16,7 +16,7 @@ export default function HomePage() { const navItems = [ { name: "Home", id: "/" }, { name: "Features", id: "features" }, - { name: "Pricing", id: "pricing" }, + { name: "Pricing", id: "/pricing" }, { name: "Studio", id: "https://studio.dieter.ai" }, { name: "Contact", id: "/contact" }, ]; @@ -50,17 +50,11 @@ export default function HomePage() { background={{ variant: "glowing-orb" }} kpis={[ { - value: "60s", - label: "Song Generation Time", - }, + value: "60s", label: "Song Generation Time"}, { - value: "8+", - label: "Voice Styles & Languages", - }, + value: "8+", label: "Voice Styles & Languages"}, { - value: "Multi-Stem", - label: "Professional Mixing", - }, + value: "Multi-Stem", label: "Professional Mixing"}, ]} enableKpiAnimation={true} tag="Future of Music Production" @@ -71,13 +65,9 @@ export default function HomePage() { imagePosition="right" buttons={[ { - text: "Launch Studio", - href: "https://studio.dieter.ai", - }, + text: "Launch Studio", href: "https://studio.dieter.ai"}, { - text: "Watch Demo", - href: "#features", - }, + text: "Watch Demo", href: "#features"}, ]} buttonAnimation="slide-up" /> @@ -89,21 +79,11 @@ export default function HomePage() { description="Everything you need to create professional music without installing heavy software. Write, generate, mix, and export—all from one intuitive interface." negativeCard={{ items: [ - "Complex DAW software setup", - "Steep learning curve", - "Expensive plugins and licenses", - "Slow rendering times", - "Limited collaboration features", - ], + "Complex DAW software setup", "Steep learning curve", "Expensive plugins and licenses", "Slow rendering times", "Limited collaboration features"], }} positiveCard={{ items: [ - "Browser-based, instant access", - "AI-assisted songwriting & generation", - "No plugins needed, everything included", - "Real-time preview & playback", - "Integrated marketing guidance", - ], + "Browser-based, instant access", "AI-assisted songwriting & generation", "No plugins needed, everything included", "Real-time preview & playback", "Integrated marketing guidance"], }} animationType="slide-up" textboxLayout="default" @@ -121,9 +101,7 @@ export default function HomePage() { useInvertedBackground={true} buttons={[ { - text: "Explore Features", - href: "#pricing", - }, + text: "Explore Features", href: "#pricing"}, ]} buttonAnimation="opacity" /> @@ -135,21 +113,11 @@ export default function HomePage() { description="Get intelligent suggestions on where to publish, how to promote, and which platforms maximize your reach and income potential." negativeCard={{ items: [ - "Music sits on your hard drive", - "Guess where to distribute", - "Manual metadata entry", - "No promotion strategy", - "Leave money on the table", - ], + "Music sits on your hard drive", "Guess where to distribute", "Manual metadata entry", "No promotion strategy", "Leave money on the table"], }} positiveCard={{ items: [ - "AI analyzes your track", - "Recommends best platforms", - "Auto-generates metadata & tags", - "Suggests promotional strategies", - "Identifies monetization paths", - ], + "AI analyzes your track", "Recommends best platforms", "Auto-generates metadata & tags", "Suggests promotional strategies", "Identifies monetization paths"], }} animationType="blur-reveal" textboxLayout="default" @@ -162,59 +130,29 @@ export default function HomePage() { @@ -393,9 +271,9 @@ export default function HomePage() {
  • - + Pricing - +
  • -- 2.49.1 From bd6ffcba20c5d7f4d1750f94f00092fdc88c5de0 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 10:47:09 +0000 Subject: [PATCH 3/5] Update src/app/pricing/page.tsx --- src/app/pricing/page.tsx | 74 +++++++++------------------------------- 1 file changed, 16 insertions(+), 58 deletions(-) diff --git a/src/app/pricing/page.tsx b/src/app/pricing/page.tsx index 9714699..147028a 100644 --- a/src/app/pricing/page.tsx +++ b/src/app/pricing/page.tsx @@ -12,7 +12,7 @@ export default function PricingPage() { { name: "Features", id: "/#features" }, { name: "Pricing", id: "/pricing" }, { name: "Studio", id: "https://studio.dieter.ai" }, - { name: "Contact", id: "/#contact" }, + { name: "Contact", id: "/contact" }, ]; return ( @@ -41,71 +41,33 @@ export default function PricingPage() { -- 2.49.1 From 13954f4b3beb0b9a57d3c52296e504f94edce61b Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 10:47:10 +0000 Subject: [PATCH 4/5] Update src/app/studio/page.tsx --- src/app/studio/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/studio/page.tsx b/src/app/studio/page.tsx index 1527bf9..a5b391e 100644 --- a/src/app/studio/page.tsx +++ b/src/app/studio/page.tsx @@ -11,9 +11,9 @@ export default function StudioPage() { const navItems = [ { name: "Home", id: "/" }, { name: "Features", id: "/#features" }, - { name: "Pricing", id: "/#pricing" }, + { name: "Pricing", id: "/pricing" }, { name: "Studio", id: "https://studio.dieter.ai" }, - { name: "Contact", id: "/#contact" }, + { name: "Contact", id: "/contact" }, ]; return ( -- 2.49.1 From 97bfb01ded326791f5afc653007a5cface28892c Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 10:47:10 +0000 Subject: [PATCH 5/5] Update src/app/video/page.tsx --- src/app/video/page.tsx | 28 ++++++---------------------- 1 file changed, 6 insertions(+), 22 deletions(-) diff --git a/src/app/video/page.tsx b/src/app/video/page.tsx index fcfbeac..01f9590 100644 --- a/src/app/video/page.tsx +++ b/src/app/video/page.tsx @@ -12,7 +12,7 @@ export default function VideoPage() { { name: "Features", id: "/#features" }, { name: "Pricing", id: "/pricing" }, { name: "Studio", id: "https://studio.dieter.ai" }, - { name: "Contact", id: "/#contact" }, + { name: "Contact", id: "/contact" }, ]; return ( @@ -46,9 +46,7 @@ export default function VideoPage() { useInvertedBackground={false} buttons={[ { - text: "Start Collaborating", - href: "https://studio.dieter.ai", - }, + text: "Start Collaborating", href: "https://studio.dieter.ai"}, ]} buttonAnimation="slide-up" /> @@ -60,21 +58,11 @@ export default function VideoPage() { description="Professional-grade video tools designed for creative teams working on music videos, promotional content, and multimedia projects." negativeCard={{ items: [ - "Scattered file versions and folders", - "Difficulty syncing feedback across team", - "Time-consuming manual edits", - "No integrated asset management", - "Communication happens outside platform", - ], + "Scattered file versions and folders", "Difficulty syncing feedback across team", "Time-consuming manual edits", "No integrated asset management", "Communication happens outside platform"], }} positiveCard={{ items: [ - "Centralized project workspace", - "Real-time team collaboration", - "AI-powered editing suggestions", - "Integrated asset library", - "Built-in commenting & feedback system", - ], + "Centralized project workspace", "Real-time team collaboration", "AI-powered editing suggestions", "Integrated asset library", "Built-in commenting & feedback system"], }} animationType="slide-up" textboxLayout="default" @@ -91,13 +79,9 @@ export default function VideoPage() { useInvertedBackground={false} buttons={[ { - text: "Get Started Today", - href: "https://studio.dieter.ai", - }, + text: "Get Started Today", href: "https://studio.dieter.ai"}, { - text: "Learn More", - href: "/#features", - }, + text: "Learn More", href: "/#features"}, ]} /> -- 2.49.1