About Us Studies Contact
Shopping Cart (0)

Our mission 

Our mission is to inspire and guide individuals to build a lasting legacy of faith, cultivating strong, resilient believers ready to impact their world. Join us in shaping a future grounded in God’s truth.

Join us

Encouraging a return to discipleship and purposeful faith

Welcome to NextGenFaithBook.com – a platform dedicated to empowering the next generation through faith, wisdom, and action. Discover Bible reading plans, tools for spiritual growth, and resources crafted to support Christian families, church leaders, and young believers. Begin your journey with our 21-Day Bible Plan for Spiritual Leadership, or explore other topical studies, like Faith & Family, Healing and Restoration, and Strength in Faith.

// JavaScript for NextGen Faith Book Homepage document.addEventListener("DOMContentLoaded", function () { // Smooth Scrolling for Anchor Links document.querySelectorAll('a[href^="#"]').forEach(anchor => { anchor.addEventListener("click", function (e) { e.preventDefault(); const target = document.querySelector(this.getAttribute("href")); target.scrollIntoView({ behavior: "smooth", block: "start" }); }); }); // Responsive Mobile Navigation const menuToggle = document.querySelector(".menu-toggle"); const navMenu = document.querySelector("nav ul"); menuToggle.addEventListener("click", function () { navMenu.classList.toggle("active"); menuToggle.classList.toggle("open"); }); // Close Navigation Menu on Link Click (for Mobile) document.querySelectorAll("nav ul li a").forEach(link => { link.addEventListener("click", function () { if (navMenu.classList.contains("active")) { navMenu.classList.remov