From 34ad1b12cf858a5840e69a593103110825e6b17c Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 12 May 2026 09:42:15 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 170 +++++++++++++++-------------------------------- 1 file changed, 54 insertions(+), 116 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 19c2a06..5bc56ab 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -33,14 +33,11 @@ export default function LandingPage() { +
+ console.log("Booking for: ", email)} + /> +
+ +
+ +
+
@@ -149,16 +141,11 @@ export default function LandingPage() { textboxLayout="split" useInvertedBackground={false} testimonials={[ - { - id: "t1", name: "Jane Doe", handle: "@jane", testimonial: "Transformative software.", imageSrc: "http://img.b2bpic.net/free-photo/pensive-middle-aged-man-with-beard-hairstyle-dressed-elegant-blue-suit-textured-dark-background-studio_613910-19917.jpg", imageAlt: "executive portrait professional dark"}, - { - id: "t2", name: "John Smith", handle: "@john", testimonial: "Incredible speed.", imageSrc: "http://img.b2bpic.net/free-photo/stylish-bearded-hipster-male-dressed-suit-sunglasses-dark-grey-background_613910-12487.jpg", imageAlt: "software developer portrait professional"}, - { - id: "t3", name: "Alice Wong", handle: "@alice", testimonial: "Essential platform.", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-posing-cv_23-2149927574.jpg", imageAlt: "creative designer professional portrait"}, - { - id: "t4", name: "Bob Chen", handle: "@bob", testimonial: "Game changer for us.", imageSrc: "http://img.b2bpic.net/free-photo/business-woman-using-phone-office-staying-late-by-night_1303-27097.jpg", imageAlt: "manager professional corporate headshot"}, - { - id: "t5", name: "Eve Davis", handle: "@eve", testimonial: "Best in class tools.", imageSrc: "http://img.b2bpic.net/free-photo/manufacturing-analyst-reviewing-solar-panel-production-workflow_482257-125954.jpg", imageAlt: "engineer professional portrait tech"}, + { id: "t1", name: "Jane Doe", handle: "@jane", testimonial: "Transformative software.", imageSrc: "http://img.b2bpic.net/free-photo/pensive-middle-aged-man-with-beard-hairstyle-dressed-elegant-blue-suit-textured-dark-background-studio_613910-19917.jpg", imageAlt: "executive portrait professional dark" }, + { id: "t2", name: "John Smith", handle: "@john", testimonial: "Incredible speed.", imageSrc: "http://img.b2bpic.net/free-photo/stylish-bearded-hipster-male-dressed-suit-sunglasses-dark-grey-background_613910-12487.jpg", imageAlt: "software developer portrait professional" }, + { id: "t3", name: "Alice Wong", handle: "@alice", testimonial: "Essential platform.", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-posing-cv_23-2149927574.jpg", imageAlt: "creative designer professional portrait" }, + { id: "t4", name: "Bob Chen", handle: "@bob", testimonial: "Game changer for us.", imageSrc: "http://img.b2bpic.net/free-photo/business-woman-using-phone-office-staying-late-by-night_1303-27097.jpg", imageAlt: "manager professional corporate headshot" }, + { id: "t5", name: "Eve Davis", handle: "@eve", testimonial: "Best in class tools.", imageSrc: "http://img.b2bpic.net/free-photo/manufacturing-analyst-reviewing-solar-panel-production-workflow_482257-125954.jpg", imageAlt: "engineer professional portrait tech" }, ]} title="Loved by builders" description="See why teams choose NovaFlow." @@ -171,18 +158,9 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={false} plans={[ - { - id: "p1", badge: "Entry", price: "$29/mo", subtitle: "For individuals", features: [ - "Feature A", "Feature B", "Support"], - }, - { - id: "p2", badge: "Pro", price: "$79/mo", subtitle: "Best for teams", features: [ - "All Entry features", "Advanced API", "Priority"], - }, - { - id: "p3", badge: "Enterprise", price: "$199/mo", subtitle: "For scaleups", features: [ - "Dedicated support", "Custom Integrations", "SLA"], - }, + { id: "p1", badge: "Entry", price: "$29/mo", subtitle: "For individuals", features: ["Feature A", "Feature B", "Support"] }, + { id: "p2", badge: "Pro", price: "$79/mo", subtitle: "Best for teams", features: ["All Entry features", "Advanced API", "Priority"] }, + { id: "p3", badge: "Enterprise", price: "$199/mo", subtitle: "For scaleups", features: ["Dedicated support", "Custom Integrations", "SLA"] }, ]} title="Simple Pricing" description="Transparent plans for your scaling startup." @@ -193,68 +171,28 @@ export default function LandingPage() {
-
- -
- ); -} +} \ No newline at end of file -- 2.49.1 From 0796fe9ad37a4586cd33b0bc9f79d3c5cb8b26f8 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 12 May 2026 09:42:15 +0000 Subject: [PATCH 2/2] Update src/app/styles/variables.css --- src/app/styles/variables.css | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index 018e8e2..b884ea1 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #000000; - --card: #0c0c0c; - --foreground: #ffffff; - --primary-cta: #106EFB; + --background: #f6f0e9; + --card: #efe7dd; + --foreground: #2b180a; + --primary-cta: #2b180a; --primary-cta-text: #ffffff; - --secondary-cta: #000000; + --secondary-cta: #efe7dd; --secondary-cta-text: #ffffff; - --accent: #535353; - --background-accent: #106EFB; + --accent: #94877c; + --background-accent: #afa094; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1