Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Our Programs | TREY Trauma Recovery</title> | |
| <link rel="icon" type="image/x-icon" href="/static/favicon.ico"> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script> | |
| <script> | |
| tailwind.config = { | |
| theme: { | |
| extend: { | |
| colors: { | |
| treyblue: '#1e3a8a', | |
| treyyellow: '#fbbf24', | |
| } | |
| } | |
| } | |
| } | |
| </script> | |
| <style> | |
| .program-card:hover { | |
| transform: translateY(-5px); | |
| box-shadow: 0 10px 25px rgba(0,0,0,0.1); | |
| } | |
| .program-card { | |
| transition: all 0.3s ease; | |
| } | |
| </style> | |
| </head> | |
| <body class="font-sans bg-gray-50"> | |
| <!-- Quick Exit Button --> | |
| <div class="fixed top-4 right-4 z-50"> | |
| <a href="https://www.theweathernetwork.com/ca/weather/nova-scotia/halifax" target="_blank" class="bg-treyblue hover:bg-red-600 text-white px-4 py-2 rounded-full shadow-lg flex items-center gap-2 transition duration-300"> | |
| <i data-feather="alert-circle"></i> | |
| Quick Exit | |
| </a> | |
| </div> | |
| <!-- Navigation --> | |
| <nav class="bg-treyblue text-white shadow-lg sticky top-0 z-40"> | |
| <div class="container mx-auto px-4 py-3"> | |
| <div class="flex justify-between items-center"> | |
| <a href="index.html" class="flex items-center space-x-2"> | |
| <img src="/static/trey-logo.png" alt="TREY Logo" class="h-12"> | |
| <span class="text-xl font-bold">TREY Trauma Recovery</span> | |
| </a> | |
| <div class="hidden md:flex items-center space-x-8"> | |
| <a href="about.html" class="hover:text-treyyellow transition">About</a> | |
| <a href="programs.html" class="text-treyyellow font-medium">Programs</a> | |
| <a href="index.html#services" class="hover:text-treyyellow transition">Services</a> | |
| <a href="index.html#stats" class="hover:text-treyyellow transition">Impact</a> | |
| <a href="donate.html" class="hover:text-treyyellow transition">Donate</a> | |
| <a href="index.html#contact" class="hover:text-treyyellow transition">Contact</a> | |
| </div> | |
| <button class="md:hidden focus:outline-none"> | |
| <i data-feather="menu"></i> | |
| </button> | |
| </div> | |
| </div> | |
| </nav> | |
| <!-- Hero Section --> | |
| <header class="relative bg-gradient-to-r from-treyblue to-blue-800 text-white py-20"> | |
| <div class="absolute inset-0 bg-black opacity-30"></div> | |
| <div class="container mx-auto px-4 relative z-10 text-center"> | |
| <h1 class="text-4xl md:text-5xl font-bold mb-6">Our Programs</h1> | |
| <p class="text-xl mb-8 max-w-3xl mx-auto">Comprehensive, trauma-informed programs designed for healing and recovery at every stage</p> | |
| </div> | |
| </header> | |
| <!-- Programs Overview --> | |
| <section class="py-16 bg-white"> | |
| <div class="container mx-auto px-4"> | |
| <div class="text-center mb-12"> | |
| <h2 class="text-3xl font-bold text-treyblue mb-4">Program Overview</h2> | |
| <div class="w-24 h-1 bg-treyyellow mx-auto"></div> | |
| <p class="text-gray-600 max-w-2xl mx-auto mt-4">Each program is tailored to meet survivors where they are in their recovery journey</p> | |
| </div> | |
| <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8"> | |
| <!-- Program Card 1 --> | |
| <div class="program-card bg-gray-50 rounded-lg overflow-hidden shadow-md"> | |
| <div class="h-48 overflow-hidden"> | |
| <img src="http://static.photos/people/640x480/1" alt="Residential Program" class="w-full h-full object-cover"> | |
| </div> | |
| <div class="p-6"> | |
| <div class="flex items-center mb-4"> | |
| <div class="bg-treyblue text-white rounded-full w-12 h-12 flex items-center justify-center mr-4"> | |
| <i data-feather="home"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold text-treyblue">Residential Program</h3> | |
| </div> | |
| <p class="text-gray-700 mb-4">24/7 trauma-informed care in our safehouse with individualized recovery plans.</p> | |
| <ul class="space-y-2 text-sm text-gray-700"> | |
| <li class="flex items-start"> | |
| <i data-feather="check" class="text-treyyellow mr-2 mt-0.5 w-4 h-4"></i> | |
| <span>Therapeutic living environment</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i data-feather="check" class="text-treyyellow mr-2 mt-0.5 w-4 h-4"></i> | |
| <span>Average stay of 6-18 months</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i data-feather="check" class="text-treyyellow mr-2 mt-0.5 w-4 h-4"></i> | |
| <span>Capacity for 10 residents</span> | |
| </li> | |
| </ul> | |
| </div> | |
| </div> | |
| <!-- Program Card 2 --> | |
| <div class="program-card bg-gray-50 rounded-lg overflow-hidden shadow-md"> | |
| <div class="h-48 overflow-hidden"> | |
| <img src="http://static.photos/people/640x480/2" alt="Transitional Program" class="w-full h-full object-cover"> | |
| </div> | |
| <div class="p-6"> | |
| <div class="flex items-center mb-4"> | |
| <div class="bg-treyblue text-white rounded-full w-12 h-12 flex items-center justify-center mr-4"> | |
| <i data-feather="compass"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold text-treyblue">Transitional Program</h3> | |
| </div> | |
| <p class="text-gray-700 mb-4">Step-down support for survivors moving toward independent living.</p> | |
| <ul class="space-y-2 text-sm text-gray-700"> | |
| <li class="flex items-start"> | |
| <i data-feather="check" class="text-treyyellow mr-2 mt-0.5 w-4 h-4"></i> | |
| <span>Supported apartments</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i data-feather="check" class="text-treyyellow mr-2 mt-0.5 w-4 h-4"></i> | |
| <span>Life skills development</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i data-feather="check" class="text-treyyellow mr-2 mt-0.5 w-4 h-4"></i> | |
| <span>Education/employment support</span> | |
| </li> | |
| </ul> | |
| </div> | |
| </div> | |
| <!-- Program Card 3 --> | |
| <div class="program-card bg-gray-50 rounded-lg overflow-hidden shadow-md"> | |
| <div class="h-48 overflow-hidden"> | |
| <img src="http://static.photos/people/640x480/3" alt="Outreach Program" class="w-full h-full object-cover"> | |
| </div> | |
| <div class="p-6"> | |
| <div class="flex items-center mb-4"> | |
| <div class="bg-treyblue text-white rounded-full w-12 h-12 flex items-center justify-center mr-4"> | |
| <i data-feather="life-buoy"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold text-treyblue">Outreach Program</h3> | |
| </div> | |
| <p class="text-gray-700 mb-4">Mobile support for youth still in or recently exited from exploitation.</p> | |
| <ul class="space-y-2 text-sm text-gray-700"> | |
| <li class="flex items-start"> | |
| <i data-feather="check" class="text-treyyellow mr-2 mt-0.5 w-4 h-4"></i> | |
| <span>24/7 crisis response</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i data-feather="check" class="text-treyyellow mr-2 mt-0.5 w-4 h-4"></i> | |
| <span>Street outreach teams</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i data-feather="check" class="text-treyyellow mr-2 mt-0.5 w-4 h-4"></i> | |
| <span>Hospital accompaniment</span> | |
| </li> | |
| </ul> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Specialized Programs --> | |
| <section class="py-16 bg-gray-100"> | |
| <div class="container mx-auto px-4"> | |
| <div class="text-center mb-12"> | |
| <h2 class="text-3xl font-bold text-treyblue mb-4">Specialized Programs</h2> | |
| <div class="w-24 h-1 bg-treyyellow mx-auto"></div> | |
| <p class="text-gray-600 max-w-2xl mx-auto mt-4">Additional support for specific needs and communities</p> | |
| </div> | |
| <div class="grid md:grid-cols-2 gap-8 max-w-5xl mx-auto"> | |
| <div class="bg-white p-8 rounded-lg shadow-md"> | |
| <div class="flex items-center mb-6"> | |
| <div class="bg-treyblue text-white rounded-full w-16 h-16 flex items-center justify-center mr-6"> | |
| <i data-feather="sun" class="w-8 h-8"></i> | |
| </div> | |
| <h3 class="text-2xl font-semibold text-treyblue">Indigenous Healing Program</h3> | |
| </div> | |
| <p class="text-gray-700 mb-6">Cultural reconnection and traditional healing practices led by Indigenous elders and knowledge keepers.</p> | |
| <ul class="space-y-3 text-gray-700"> | |
| <li class="flex items-start"> | |
| <div class="bg-treyblue text-white rounded-full w-6 h-6 flex items-center justify-center text-xs mr-3 mt-1 flex-shrink-0">1</div> | |
| <span>Weekly talking circles and smudging ceremonies</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <div class="bg-treyblue text-white rounded-full w-6 h-6 flex items-center justify-center text-xs mr-3 mt-1 flex-shrink-0">2</div> | |
| <span>Land-based healing retreats</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <div class="bg-treyblue text-white rounded-full w-6 h-6 flex items-center justify-center text-xs mr-3 mt-1 flex-shrink-0">3</div> | |
| <span>Intergenerational mentorship</span> | |
| </li> | |
| </ul> | |
| </div> | |
| <div class="bg-white p-8 rounded-lg shadow-md"> | |
| <div class="flex items-center mb-6"> | |
| <div class="bg-treyblue text-white rounded-full w-16 h-16 flex items-center justify-center mr-6"> | |
| <i data-feather="heart" class="w-8 h-8"></i> | |
| </div> | |
| <h3 class="text-2xl font-semibold text-treyblue">Art & Expressive Therapies</h3> | |
| </div> | |
| <p class="text-gray-700 mb-6">Alternative therapies to process trauma and rebuild identity through creative expression.</p> | |
| <ul class="space-y-3 text-gray-700"> | |
| <li class="flex items-start"> | |
| <div class="bg-treyblue text-white rounded-full w-6 h-6 flex items-center justify-center text-xs mr-3 mt-1 flex-shrink-0">1</div> | |
| <span>Trauma-informed art therapy</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <div class="bg-treyblue text-white rounded-full w-6 h-6 flex items-center justify-center text-xs mr-3 mt-1 flex-shrink-0">2</div> | |
| <span>Music and movement therapy</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <div class="bg-treyblue text-white rounded-full w-6 h-6 flex items-center justify-center text-xs mr-3 mt-1 flex-shrink-0">3</div> | |
| <span>Journaling and creative writing</span> | |
| </li> | |
| </ul> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Program Outcomes --> | |
| <section class="py-16 bg-treyblue text-white"> | |
| <div class="container mx-auto px-4"> | |
| <div class="text-center mb-12"> | |
| <h2 class="text-3xl font-bold mb-4">Program Outcomes</h2> | |
| <div class="w-24 h-1 bg-treyyellow mx-auto"></div> | |
| <p class="max-w-2xl mx-auto mt-4">Measurable results from our participants</p> | |
| </div> | |
| <div class="grid md:grid-cols-4 gap-6 max-w-5xl mx-auto text-center"> | |
| <div class="bg-white bg-opacity-20 p-6 rounded-lg"> | |
| <div class="text-4xl font-bold mb-3">92%</div> | |
| <p>Feel safer after completing our programs</p> | |
| </div> | |
| <div class="bg-white bg-opacity-20 p-6 rounded-lg"> | |
| <div class="text-4xl font-bold mb-3">85%</div> | |
| <p>Maintain stable housing after 1 year</p> | |
| </div> | |
| <div class="bg-white bg-opacity-20 p-6 rounded-lg"> | |
| <div class="text-4xl font-bold mb-3">78%</div> | |
| <p>Enroll in education or employment</p> | |
| </div> | |
| <div class="bg-white bg-opacity-20 p-6 rounded-lg"> | |
| <div class="text-4xl font-bold mb-3">94%</div> | |
| <p>Report improved mental health</p> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- CTA Section --> | |
| <section class="py-16 bg-white"> | |
| <div class="container mx-auto px-4 text-center"> | |
| <h2 class="text-3xl font-bold text-treyblue mb-6">Ready to Begin Your Healing Journey?</h2> | |
| <p class="text-xl text-gray-700 max-w-2xl mx-auto mb-8">Our admissions team is available 24/7 to discuss program options and answer your questions.</p> | |
| <div class="flex flex-col sm:flex-row justify-center gap-4"> | |
| <a href="index.html#contact" class="bg-treyyellow hover:bg-yellow-500 text-treyblue font-bold py-3 px-6 rounded-full transition duration-300">Contact Us</a> | |
| <a href="tel:+19024444444" class="bg-treyblue hover:bg-blue-800 text-white font-bold py-3 px-6 rounded-full transition duration-300">Call Now: 902-444-4444</a> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Footer --> | |
| <footer class="bg-treyblue text-white py-12"> | |
| <div class="container mx-auto px-4"> | |
| <div class="grid md:grid-cols-4 gap-8 mb-8"> | |
| <div> | |
| <div class="flex items-center space-x-2 mb-4"> | |
| <img src="/static/trey-logo.png" alt="TREY Logo" class="h-10"> | |
| <span class="text-lg font-bold">TREY Recovery</span> | |
| </div> | |
| <p class="text-sm text-gray-300">Providing hope and healing for survivors of exploitation since 2015.</p> | |
| </div> | |
| <div> | |
| <h4 class="text-lg font-semibold mb-4">Programs</h4> | |
| <ul class="space-y-2 text-sm text-gray-300"> | |
| <li><a href="programs.html" class="text-treyyellow">Residential Program</a></li> | |
| <li><a href="programs.html" class="hover:text-treyyellow transition">Transitional Program</a></li> | |
| <li><a href="programs.html" class="hover:text-treyyellow transition">Outreach Program</a></li> | |
| <li><a href="programs.html" class="hover:text-treyyellow transition">Specialized Programs</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h4 class="text-lg font-semibold mb-4">Get Help</h4> | |
| <ul class="space-y-2 text-sm text-gray-300"> | |
| <li><a href="tel:+19024444444" class="hover:text-treyyellow transition">24/7 Crisis Line: 902-444-4444</a></li> | |
| <li><a href="mailto:info@trey-recovery.org" class="hover:text-treyyellow transition">info@trey-recovery.org</a></li> | |
| <li><a href="index.html#contact" class="hover:text-treyyellow transition">Contact Form</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h4 class="text-lg font-semibold mb-4">Connect</h4> | |
| <div class="flex space-x-4"> | |
| <a href="#" class="bg-blue-700 hover:bg-blue-600 w-8 h-8 rounded-full flex items-center justify-center"> | |
| <i data-feather="facebook"></i> | |
| </a> | |
| <a href="#" class="bg-blue-400 hover:bg-blue-500 w-8 h-8 rounded-full flex items-center justify-center"> | |
| <i data-feather="twitter"></i> | |
| </a> | |
| <a href="#" class="bg-pink-600 hover:bg-pink-700 w-8 h-8 rounded-full flex items-center justify-center"> | |
| <i data-feather="instagram"></i> | |
| </a> | |
| </div> | |
| <p class="text-sm text-gray-300 mt-4">Sign up for our newsletter to stay updated.</p> | |
| </div> | |
| </div> | |
| <div class="border-t border-gray-700 pt-8 text-sm text-gray-400 text-center"> | |
| <p>© 2023 TREY Trauma Recovery for Exploited Youth. All rights reserved.</p> | |
| <p class="mt-2">Registered Charity #: 12345-6789-RR0001</p> | |
| </div> | |
| </div> | |
| </footer> | |
| <script> | |
| feather.replace(); | |
| </script> | |
| </body> | |
| </html> |