From 70ebceec4d3875c5ebdb154140e322d288a5eabc Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 11:46:53 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 669e016..c891d00 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -38,9 +38,7 @@ export default function RootLayout({ return ( - + {children} -- 2.49.1 From 6bec957563701cbdb683082d7871eb0ec9957056 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 11:46:53 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 147 +++++++++++++++++++++++++++-------------------- 1 file changed, 84 insertions(+), 63 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 70af43d..6504d27 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -11,7 +11,7 @@ import TestimonialCardFifteen from '@/components/sections/testimonial/Testimonia import FaqSplitText from '@/components/sections/faq/FaqSplitText'; import ContactSplit from '@/components/sections/contact/ContactSplit'; import FooterBase from '@/components/sections/footer/FooterBase'; -import { Activity, CheckCircle, Clock, Heart, Lightbulb, Move3d, PlugZap, Send, Shield, Star, TrendingUp, Workflow, Zap } from 'lucide-react'; +import { Activity, CheckCircle, Clock, Heart, Lightbulb, Move3d, PlugZap, Send, Shield, Star, TrendingUp, Workflow, Zap, Canvas, Grid3x3, Layers, Workflow as WorkflowIcon } from 'lucide-react'; export default function LandingPage() { return ( @@ -44,15 +44,15 @@ export default function LandingPage() {
@@ -235,8 +256,8 @@ export default function LandingPage() { columns={[ { title: "Product", items: [ - { label: "Features", href: "#features" }, - { label: "Integrations", href: "#" }, + { label: "Canvas Workspace", href: "#features" }, + { label: "Node Library", href: "#workflow" }, { label: "Pricing", href: "#" }, { label: "Security", href: "#" }, ], @@ -244,9 +265,9 @@ export default function LandingPage() { { title: "Resources", items: [ { label: "Documentation", href: "#" }, - { label: "Blog", href: "#" }, - { label: "Templates", href: "#" }, + { label: "Tutorials", href: "#" }, { label: "Community", href: "#" }, + { label: "Blog", href: "#" }, ], }, { @@ -259,7 +280,7 @@ export default function LandingPage() { }, ]} logoText="Ranavo" - copyrightText="© 2025 Ranavo. All rights reserved." + copyrightText="© 2025 Ranavo Canvas. All rights reserved." />
-- 2.49.1