// ColorPalette.js const ColorPalette = { primary: { passion: '#c800cc', trust: '#3372e3', inspiration: '#7426ef', professional: '#000000', }, gradients: { hero: 'bg-gradient-to-r from-[#c800cc] to-[#3372e3]', about: 'bg-gradient-to-b from-[#7426ef] to-black', ai: 'bg-gradient-to-r from-[#7426ef] to-[#3372e3]', } }; // Header.jsx import React from 'react'; import { Button } from "@/components/ui/button"; import { Card, CardHeader, CardTitle, CardContent } from "@/components/ui/card"; import { Navigation, Laptop, Download } from "lucide-react"; const Header = () => { return (

Empowering Moms to Honor Faith, Build Businesses, and Thrive at Home

Practical tools and community for Homeschoolpreneurs navigating faith, family, and entrepreneurship

{[ { icon: Navigation, title: "Start Here", content: "Introduction to MediaMommas" }, { icon: Laptop, title: "Explore AI Tools", content: "AI-focused solutions" }, { icon: Download, title: "Free Resources", content: "Download valuable content" } ].map(({ icon: Icon, title, content }) => ( {title} {content} ))}
); }; f // Body.jsx import React from 'react'; import { Button } from "@/components/ui/button"; import { Card, CardHeader, CardTitle, CardContent } from "@/components/ui/card"; import { BookOpen, Users, Heart, Calendar, MessageCircle } from "lucide-react"; const Body = () => { return ( <> {/* About Section */}

Our Mission

Meet the Founder

[Founder story and background here]

Why AI?

Discover how AI tools can simplify your tasks and empower your journey as a mom entrepreneur.

{/* Magazine Section */}

Faithful Insights Magazine

{['Faith', 'Homeschooling', 'Business Tips'].map((category) => ( {category} ))}
{/* Classes Section */}

Classes & Workshops

{[ { icon: Calendar, title: "Upcoming Workshops" }, { icon: BookOpen, title: "Course Library" } ].map(({ icon: Icon, title }) => ( {title} ))}
{/* AI Solutions Section */}

AI Business Solutions

{['JVZoo', 'Beautiful.ai', 'Systeme.io', 'AITribes'].map((tool) => ( {tool} ))}
{/* Community Section */}

Join Our Community

{[ { icon: Users, title: "Member Forum", content: "Connect with other moms" }, { icon: Heart, title: "Prayer Requests", content: "Share your prayer needs" }, { icon: MessageCircle, title: "Member Spotlights", content: "Read success stories" } ].map(({ icon: Icon, title, content }) => ( {title} {content} ))}
); };
top of page
  • Facebook
  • Twitter
  • Instagram

OUR NEW SITE IS

COMING
SOON

STAY TUNED!

ABOUT MERKABA INVESTMENTS

We are a group of private money brokers and real estate investors. Secure funding with us today!

Thanks for submitting!

  • Instagram
About & Subscribe

© 2020 Merkaba_Inv

bottom of page
// Footer.jsx import React from 'react'; import { Button } from "@/components/ui/button"; import { Mail } from "lucide-react"; const Footer = () => { return ( ); }; // App.jsx import React from 'react'; import Header from './components/Header'; import Body from './components/Body'; import Footer from './components/Footer'; const App = () => { return (
); };