export const FAQS = [ { question: "How much food and water should a family store first?", answer: "Start with a realistic two-week baseline: at least one gallon of water per person per day and shelf-stable food your family already eats. After that, expand toward a 90-day pantry and then longer-term storage.", }, { question: "What is the difference between a 72-hour bag and home preparedness?", answer: "A 72-hour bag is portable and built for evacuation. Home preparedness is for sheltering in place and includes deeper food, water, medical, lighting, and sanitation reserves.", }, { question: "What should I buy first on a limited budget?", answer: "Buy water storage, a simple filter, extra pantry staples, flashlights, batteries, first aid basics, and copies of key documents. The best first preps are inexpensive and solve common short-term emergencies.", }, { question: "How often should I rotate emergency supplies?", answer: "Review the kit every six to twelve months. Replace expired medications, rotate pantry food into normal use, test batteries and radios, and update family contact information.", }, ];
<div class="min-h-screen bg-gray-50 py-12">
<div class="max-w-4xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="bg-gradient-to-r from-green-800 to-emerald-900 rounded-2xl px-8 py-12 text-white mb-10 shadow-xl">
<div class="flex items-center gap-3 mb-4">
<span class="text-4xl" aria-hidden="true">🏕️</span>
<span class="text-green-300 text-sm font-semibold uppercase tracking-widest">Survival & Preparedness</span>
</div>
<h1 class="text-4xl font-bold mb-4 leading-tight">
Emergency Preparedness: The Complete Family Guide
</h1>
<p class="text-xl text-green-100 max-w-3xl">
72-hour kits, 1-year food storage, water filtration, and SHTF communication — written for real families, not doomsday fantasies.
</p>
</div>
<div class="bg-white dark:bg-card rounded-2xl shadow-xl overflow-hidden p-8">
<div class="prose prose-lg max-w-none">
<section class="mb-12">
<h2 class="text-3xl font-bold text-gray-900 dark:text-foreground mb-6">
The 4-Layer Preparedness Stack
</h2>
<p class="text-gray-700 dark:text-foreground mb-6">
Build preparedness in layers — each layer makes the next one more valuable. Don't skip to advanced prepping before the foundation is solid.
</p>
<div class="space-y-4">
</div>
</section>
<section class="mb-12">
<h2 class="text-3xl font-bold text-gray-900 dark:text-foreground mb-6">
The 72-Hour Bug-Out Bag: Complete Checklist
</h2>
<div class="grid md:grid-cols-2 gap-6">
</div>
</section>
<section class="mb-12">
<h2 class="text-3xl font-bold text-gray-900 dark:text-foreground mb-6">
Frequently Asked Questions
</h2>
<div class="space-y-4">
{FAQS.map((faq, i) => (
<details key={i} class="bg-gray-50 dark:bg-gray-900/40 rounded-xl p-5 cursor-pointer group">
<summary class="font-semibold text-gray-900 dark:text-foreground list-none flex items-center justify-between gap-2">
<span>{faq.question}</span>
<span class="text-gray-400 group-open:rotate-45 transition-transform duration-200 text-xl leading-none">+</span>
</summary>
<p class="mt-3 text-gray-700 dark:text-foreground text-sm leading-relaxed">{faq.answer}</p>
</details>
))}
</div>
</section>
<section class="mb-8 bg-gradient-to-r from-green-800 to-emerald-900 rounded-xl p-8 text-white text-center">
<h2 class="text-2xl font-bold mb-3">Get Prepared Today</h2>
<p class="text-green-200 mb-6 max-w-xl mx-auto">
Browse our curated preparedness products — vetted gear at fair prices.
</p>
<div class="flex flex-wrap gap-3 justify-center">
<a href="/store?category=preparedness">
Shop Preparedness Gear →
</a>
<a href="/survival">
All Survival Articles
</a>
</div>
</section>
<section class="mb-8">
<h2 class="text-xl font-bold text-gray-900 dark:text-foreground mb-4">Continue Learning</h2>
<div class="grid md:grid-cols-3 gap-4">
</div>
</section>
</div>
</div>
</div>
</div>