import Image from "next/image"; import { Stars } from "@/components/ui"; import { testimonials } from "@/lib/data"; export const metadata = { title: "Knowledge Hub — UP Parivaar Dallas" }; const categories = [ { img: "/img/knowledge_1_.jpg", title: "Living in Dallas", sub: "Schools, housing, transportation, healthcare" }, { img: "/img/knowledge_3_.jpg", title: "Career & Business", sub: "Professional growth, networking, entrepreneurship" }, { img: "/img/knowledge_5_.jpg", title: "Education & Students", sub: "Admissions, scholarships, mentoring" }, { img: "/img/knowledge_2_.jpg", title: "Legal & Immigration", sub: "Helpful guidance and community resources" }, { img: "/img/knowledge_4_.jpg", title: "Community & Volunteering", sub: "Events, service opportunities, participation" }, { img: "/img/knowledge_6_.jpg", title: "Culture & Traditions", sub: "Festivals, heritage, traditions, community stories" }, ]; const suggestions = [ "Which WhatsApp group should I join?", "Best school districts for mir kids?", "What events are coming up?", "Where can I volunteer for seva?", ]; export default function KnowledgePage() { return ( <> {/* HERO */}
UP Parivar Dallas · Est. 2010

Community Knowledge Hub

Explore resources, guides, community insights, member expertise, local opportunities, and helpful information curated by UP Parivar Dallas.

{/* CATEGORIES */}
Knowledge Categories

Explore Topics That Matter

Browse curated resources and community knowledge across the important areas of life, work, family, and culture.

{categories.map((c) => (
{c.title}

{c.title}

{c.sub}

))}
{/* AI MEMORY */}
Powered by Community AI

Years of community wisdom, one question away

No more scrolling through 4,000 WhatsApp messages. Just ask.

Insignia TOWER · Community Memory
🙋

Which WhatsApp group should I join?

AI

Start with your city's welcome circle — if you're in Frisco, that's "Frisco Families." From there most newcomers add the Youth, Seva and Marketplace circles. A volunteer will personally add you within a day.

{["▤ WhatsApp archive", "▦ Event calendar", "◈ Member directory"].map((t) => ( {t} ))}
{suggestions.map((s, i) => ( {s} ))}
{/* COMMUNITY VOICES */}
Community Voices

Loved by families across North Texas

{testimonials.map((t, i) => { const person = (
{t.name}

{t.name}

{t.role}

); const quote = (

{t.quote}

); return (
{i === 1 ? ( <> {person} {quote} ) : ( <> {quote} {person} )}
); })}
); }