From 7ab80f323ab05571188db0a2e7e1c53f3b577f54 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 3 Apr 2026 19:57:45 +0000 Subject: [PATCH 1/3] Update src/app/page.tsx --- src/app/page.tsx | 114 +++++++++++++++++++---------------------------- 1 file changed, 47 insertions(+), 67 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 62e692f..778630c 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,8 +9,10 @@ import FeatureCardSix from '@/components/sections/feature/FeatureCardSix'; import FooterCard from '@/components/sections/footer/FooterCard'; import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; -import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive'; -import { Coffee, Heart, Instagram, Linkedin, Twitter, Users } from "lucide-react"; +import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; +import TimelinePhoneView from '@/components/cardStack/layouts/timelines/TimelinePhoneView'; +import ContactText from '@/components/sections/contact/ContactText'; +import { Coffee, Heart, Instagram, Linkedin, MessageCircle, Twitter, Users } from "lucide-react"; export default function LandingPage() { return ( @@ -30,14 +32,11 @@ export default function LandingPage() { +
+ +
+
-
@@ -127,12 +117,9 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={true} faqs={[ - { - id: "1", title: "Is membership free?", content: "Basic membership is free, with premium event access."}, - { - id: "2", title: "How do you ensure safety?", content: "All profiles are verified and moderators oversee meetings."}, - { - id: "3", title: "Can I host events?", content: "Yes! We encourage members to suggest and host activities."}, + { id: "1", title: "Is membership free?", content: "Basic membership is free, with premium event access." }, + { id: "2", title: "How do you ensure safety?", content: "All profiles are verified and moderators oversee meetings." }, + { id: "3", title: "Can I host events?", content: "Yes! We encourage members to suggest and host activities." }, ]} title="Frequently Asked Questions" description="Common questions about how our community works." @@ -143,8 +130,7 @@ export default function LandingPage() {
); -} +} \ No newline at end of file -- 2.49.1 From 1e1a5e0c17175d4c7374abd2cf1ff90bdbe2f731 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 3 Apr 2026 19:57:45 +0000 Subject: [PATCH 2/3] Update src/app/styles/base.css --- src/app/styles/base.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/styles/base.css b/src/app/styles/base.css index efe6053..8422b04 100644 --- a/src/app/styles/base.css +++ b/src/app/styles/base.css @@ -11,7 +11,7 @@ html { body { background-color: var(--background); color: var(--foreground); - font-family: var(--font-inter), sans-serif; + font-family: var(--font-montserrat), sans-serif; position: relative; min-height: 100vh; overscroll-behavior: none; @@ -24,5 +24,5 @@ h3, h4, h5, h6 { - font-family: var(--font-libre-baskerville), serif; + font-family: var(--font-montserrat), serif; } -- 2.49.1 From 3d017e6ca07c1152578924a9ebfeb1372ba4c4fa Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 3 Apr 2026 19:57:45 +0000 Subject: [PATCH 3/3] 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 b7afc67..942f6ac 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #f5f4ef; - --card: #dad6cd; - --foreground: #2a2928; - --primary-cta: #2a2928; + --background: #fdfaf6; + --card: #f7f2ed; + --foreground: #1a2c3d; + --primary-cta: #4b77be; --primary-cta-text: #f5f4ef; - --secondary-cta: #ecebea; + --secondary-cta: #fdfaf6; --secondary-cta-text: #2a2928; - --accent: #ffffff; - --background-accent: #c6b180; + --accent: #e6c7a8; + --background-accent: #f3e5d7; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1