diff --git a/public/figma-about/healthcare-ai.png b/public/figma-about/healthcare-ai.png deleted file mode 100644 index 3089e65..0000000 Binary files a/public/figma-about/healthcare-ai.png and /dev/null differ diff --git a/public/figma-home/get-assistance.png b/public/figma-home/get-assistance.png deleted file mode 100644 index 54870e4..0000000 Binary files a/public/figma-home/get-assistance.png and /dev/null differ diff --git a/public/figma-home/support.png b/public/figma-home/support.png deleted file mode 100644 index 9780bda..0000000 Binary files a/public/figma-home/support.png and /dev/null differ diff --git a/src/features/marketing/components/about-ai-healthcare-section.tsx b/src/features/marketing/components/about-ai-healthcare-section.tsx deleted file mode 100644 index 80b888c..0000000 --- a/src/features/marketing/components/about-ai-healthcare-section.tsx +++ /dev/null @@ -1,60 +0,0 @@ -import Image from "next/image" - -const ecosystemItems = [ - "A platform that supports real-world health navigation", - "Training programs that teach people how to use AI safely and effectively", - "A feedback system that continuously improves outcomes", -] - -export function AboutAiHealthcareSection() { - return ( -
-
-
- A gloved hand operating medical equipment -
- -
-

- ModernAdvocates is redefining how AI is used in Healthcare -

- -
- A gloved hand operating medical equipment -
- -
-

- Most organizations operate in silos-technology, education, or care - delivery. ModernAdvocates brings these elements together into one - ecosystem: -

- -
    - {ecosystemItems.map((item) => ( -
  • {item}
  • - ))} -
- -

- This integration allows us to move beyond theory and deliver - practical, scalable impact. -

-
-
-
-
- ) -} diff --git a/src/features/marketing/components/about-our-values-section.tsx b/src/features/marketing/components/about-our-values-section.tsx deleted file mode 100644 index 532f02b..0000000 --- a/src/features/marketing/components/about-our-values-section.tsx +++ /dev/null @@ -1,80 +0,0 @@ -import { Card, CardDescription, CardTitle } from "@/shared/ui/card" -import { cn } from "@/shared/utils" -import { Gift } from "lucide-react" - -const AboutOurValuesSection = () => { - return ( -
-
-

- OUR VALUES{" "} -

-
-

- How can we support your healthcare journey?{" "} -

-
- -
-

- ModernAdvocates creates a continuous learning system that improves - outcomes while expanding access to support. -

-
- -
-
- - {" "} -
-
- - - -
-
-
-
- ) -} - -function SupportCard({ - title, - description, - className, -}: { - title: string - description: string - className?: string -}) { - return ( - -
- -
- -
- - {title} - - {description} -
-
- ) -} -export default AboutOurValuesSection diff --git a/src/features/marketing/components/gallery-section.tsx b/src/features/marketing/components/gallery-section.tsx deleted file mode 100644 index a8ba866..0000000 --- a/src/features/marketing/components/gallery-section.tsx +++ /dev/null @@ -1,32 +0,0 @@ -import { Handshake, HeartPlus, Laptop } from "lucide-react" -import React from "react" - -const cardsData = [ - { - id: 1, - title: "Healthcare Navigation", - icon: HeartPlus, - description: - "Helping individuals navigate healthcare, organize medical information, and make informed decisions.", - }, - { - id: 2, - icon: Laptop, - title: "Practical AI Skills", - description: - "Learn how to use AI to simplify daily life, strengthen career opportunities, navigate healthcare, and increase productivity.", - }, - { - id: 3, - icon: Handshake, - title: "Community Support", - description: - "Connecting people with resources, encouragement, and practical guidance so no one faces life’s challenges alone.", - }, -] - -const GallerySection = () => { - return
-} - -export default GallerySection diff --git a/src/features/marketing/components/hero-content.tsx b/src/features/marketing/components/hero-content.tsx deleted file mode 100644 index 3fc712f..0000000 --- a/src/features/marketing/components/hero-content.tsx +++ /dev/null @@ -1,25 +0,0 @@ -export function HeroContent() { - return ( -
-
- - New — Online courses now available - - -

- Master In-Demand Skills That Move Your Career Forward -

- -

- Practical, expert-led courses designed to help professionals gain - real-world skills, accelerate growth, and achieve measurable results. -

- -

- Learn from industry experts. Study at your own pace. Apply what you - learn immediately. -

-
-
- ) -} diff --git a/src/features/marketing/components/hero-cta.tsx b/src/features/marketing/components/hero-cta.tsx deleted file mode 100644 index 2a9fc8d..0000000 --- a/src/features/marketing/components/hero-cta.tsx +++ /dev/null @@ -1,29 +0,0 @@ -import { ArrowRight } from "lucide-react" - -import { Button } from "@/shared/ui/button" - -export function HeroCta() { - return ( -
- - -
- ) -} diff --git a/src/features/marketing/components/hero-header.tsx b/src/features/marketing/components/hero-header.tsx deleted file mode 100644 index a75ccca..0000000 --- a/src/features/marketing/components/hero-header.tsx +++ /dev/null @@ -1,25 +0,0 @@ -import { Button } from "@/shared/ui/button" - -export function HeroHeader() { - return ( -
-
- - ModernAdvocates - -
- - Login - - -
-
-
-
- ) -} diff --git a/src/features/marketing/components/hero-trusted-by.tsx b/src/features/marketing/components/hero-trusted-by.tsx deleted file mode 100644 index ddcb8d6..0000000 --- a/src/features/marketing/components/hero-trusted-by.tsx +++ /dev/null @@ -1,8 +0,0 @@ -export function HeroTrustedBy() { - return ( -

- Trusted by ambitious professionals, teams, and organizations committed to - continuous growth. -

- ) -} diff --git a/src/features/marketing/components/mission-sections.tsx b/src/features/marketing/components/mission-sections.tsx deleted file mode 100644 index 5140d3a..0000000 --- a/src/features/marketing/components/mission-sections.tsx +++ /dev/null @@ -1,281 +0,0 @@ -"use client" - -import { Gift } from "lucide-react" -import Image from "next/image" -import { useEffect, useState } from "react" - -export function MissionBridgeSection() { - const [hovered, setHovered] = useState<"first" | "second" | null>(null) - const [isLargeScreen, setIsLargeScreen] = useState(false) - - useEffect(() => { - const mq = window.matchMedia("(min-width: 1024px)") - setIsLargeScreen(mq.matches) - const handler = (e: MediaQueryListEvent) => setIsLargeScreen(e.matches) - mq.addEventListener("change", handler) - return () => mq.removeEventListener("change", handler) - }, []) - - function onHover(card: "first" | "second") { - if (!isLargeScreen) return - setHovered(card) - } - - function onLeave() { - if (!isLargeScreen) return - setHovered(null) - } - - return ( -
-
-
-

- Bridging the Gap between Technology and Care -

-
- -
-

We know what it feels like when life changes overnight.

-

- Our journey with endometriosis taught us that chronic illness - affects far more than your health. -

-

- It can impact your education, career, finances, relationships, and - sense of security. -

-

- One unexpected diagnosis can begin a chain of events that leaves - families overwhelmed by lost income, mounting medical expenses, and - an uncertain future. -

-

We have lived that reality.

-

We also experienced something extraordinary.

-

- Along our journey, compassionate people stepped in to help us when - we could not help ourselves. -

-

Their generosity changed the direction of our lives.

-

- Modern Advocates Inc. was created because we believe every person - deserves that same opportunity. -

-

- Our mission is to help people facing disability, chronic illness, - and financial hardship regain a sense of control through education, - technology, community, and practical support. -

-

We believe that knowledge reduces fear.

-

Technology creates opportunity.

-

Community multiplies hope.

-

- Artificial intelligence is more than a new technology—it is a - powerful equalizer. -

-

- Used responsibly, AI can help people organize their healthcare, - prepare for medical appointments, learn valuable income-producing - skills, build digital assets, and create new opportunities for - financial independence. -

-

- For women living with endometriosis, AI can also help organize - symptoms, prepare medical histories, identify qualified specialists, - and navigate an often overwhelming healthcare system. -

-

But no one should have to face these challenges alone.

-

- Our vision is to build a nationwide community where individuals - support one another through education, shared knowledge, and - innovative funding solutions that make specialized care more - accessible. -

-

We cannot always choose the challenges life brings.

-

We can choose how we respond.

-

Our goal is simple:

-

To replace fear with knowledge.

-

To replace isolation with community.

-

To replace uncertainty with opportunity.

-

- Together, we can build healthier lives, stronger futures, and - greater independence. -

-
- -
-
onHover("first")} - onMouseLeave={onLeave} - className="flex max-w-full shrink-0 flex-col gap-5 rounded-2xl bg-white p-5 sm:flex-row lg:max-w-none" - > -
-
- -
- -
-

- Get Assistance -

-

- Get access to AI workforce training, healthcare guidance, and - personalized support designed to help you move forward with - confidence.{" "} -

-
-
- -
- -
-
- -
onHover("second")} - onMouseLeave={onLeave} - className="flex max-w-full shrink-0 flex-col gap-5 rounded-2xl bg-white p-5 sm:flex-row lg:max-w-none" - > -
-
- -
- -
-

- Support mission -

-

- Get access to AI workforce training, healthcare guidance, and - personalized support designed to help you move forward with - confidence. -

-
-
- -
- -
-
-
-
-
- ) -} - -export function FounderStorySection() { - return ( -
-
- {/* Large screens */} -
- -
-

- I built ModernAdvocates Inc. out of something I lived... -

- -
-

- I built ModernAdvocates Inc. out of something I lived - not - something I studied. -

-

- Navigating Endometriosis in a healthcare system that kept - dismissing me taught me that the gap between the help that - exists and the people who need it most is not a coincidence. - It's a design flaw. And as AI began reshaping how we work, - how we access care, and how we navigate every major system in - our lives, I saw that same gap widening. So, I built the bridge. -

-

- If any part of this resonates - if you've felt unseen by a - system that was supposed to serve you - there's a place - here for you. -

-
- -
-

Melanie Reyes

-

Founder, ModernAdvocates Inc.

-
-
-
- - {/* Small screens */} -
-

- I built ModernAdvocates Inc. out of something I lived... -

- - - -
-

- I built ModernAdvocates Inc. out of something I lived - not - something I studied. -

-

- Navigating Endometriosis in a healthcare system that kept - dismissing me taught me that the gap between the help that exists - and the people who need it most is not a coincidence. It's a - design flaw. And as AI began reshaping how we work, how we access - care, and how we navigate every major system in our lives, I saw - that same gap widening. So, I built the bridge. -

-

- If any part of this resonates - if you've felt unseen by a - system that was supposed to serve you - there's a place here - for you. -

-
-
-

Melanie Reyes

-

Founder, ModernAdvocates Inc.

-
-
-
-
- ) -} diff --git a/src/features/marketing/components/social-proof.tsx b/src/features/marketing/components/social-proof.tsx deleted file mode 100644 index abf96c5..0000000 --- a/src/features/marketing/components/social-proof.tsx +++ /dev/null @@ -1,48 +0,0 @@ -import { Check } from "lucide-react" - -const features = [ - "Expert-led curriculum", - "Practical projects and exercises", - "Flexible learning experience", - "Certificates of completion", - "Ongoing support and resources", -] - -export function SocialProof() { - return ( -
-
-
-
-

- Thousands of Learners. Real Results. -

-

- Our courses are built to bridge the gap between theory and - real-world application. Whether you're advancing your - career, growing a business, or developing new expertise, we - provide the knowledge and guidance to help you succeed. -

-
-
-
    - {features.map((feature) => ( -
  • - - - - - {feature} - -
  • - ))} -
-
-
-
-
- ) -} diff --git a/src/features/marketing/components/why-choose-us.tsx b/src/features/marketing/components/why-choose-us.tsx deleted file mode 100644 index 98d4d7b..0000000 --- a/src/features/marketing/components/why-choose-us.tsx +++ /dev/null @@ -1,75 +0,0 @@ -const cards = [ - { - title: "Learn From Experts", - description: - "Gain insights from experienced professionals who have achieved success in their fields.", - image: - "https://images.unsplash.com/photo-1524178232363-1fb2b075b655?w=800&q=80", - span: "lg:col-span-2 lg:row-span-2", - height: "lg:h-full", - }, - { - title: "Practical & Actionable", - description: - "Every lesson focuses on skills and strategies you can apply immediately.", - image: - "https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?w=800&q=80", - span: "lg:col-span-1 lg:row-span-1", - height: "lg:h-full", - }, - { - title: "Learn at Your Own Pace", - description: - "Access courses anytime, anywhere, and progress on your schedule.", - image: - "https://images.unsplash.com/photo-1434030216411-0b793f4b4173?w=800&q=80", - span: "lg:col-span-1 lg:row-span-1", - height: "lg:h-full", - }, - { - title: "Results-Focused Education", - description: - "We prioritize outcomes, helping you build confidence and achieve measurable growth.", - image: - "https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=800&q=80", - span: "lg:col-span-3 lg:row-span-1", - height: "lg:h-72", - }, -] - -export function WhyChooseUs() { - return ( -
-
-

- Learning Designed for Real-World Success -

- -
- {cards.map((card) => ( -
- -
-
-

- {card.title} -

-

- {card.description} -

-
-
- ))} -
-
-
- ) -}