Here’s a structured outline for a homepage for tm.org (assuming it’s for Transcendental Meditation). This design balances clarity, user engagement, and key information: TM.org – Homepage Outline 1. Header (Sticky Navigation Bar) Logo: TM.org or Transcendental Meditation® logo (links back to homepage) Main Menu: Home Learn TM (dropdown: What is TM?, Benefits, How to Learn) Research & Science About Us (dropdown: History, Teachers, FAQs) Events & Courses Blog/Resources Contact CTA Button: "Find a Teacher" / "Free Intro Webinar" 2. Hero Section (Full-Width Banner) Headline: "Reduce Stress. Improve Life. Learn Transcendental Meditation®." Subheadline: "A simple, evidence-based technique for clarity, resilience, and inner peace." Background: High-quality image/video of serene meditation or brain activity graphics. Primary CTA: "Watch the Free Intro Video" (button) Secondary CTA: "Find a Local Teacher" (button) 3. Benefits Section (Icon Grid or Cards) Title: "Why Practice TM?" Bullet Points (with icons): Reduces stress & anxiety Improves focus & creativity Backed by 600+ scientific studies Easy to learn (20 minutes/day) No apps or gimmicks—just natural relaxation 4. Science & Research (Stats/Testimonials) Title: "Proven by Science, Trusted Worldwide" Key Stats: "40% reduction in anxiety" (linked to study) "Used by 10+ million people" Testimonial Carousel: Short quotes from celebrities (e.g., Oprah, Hugh Jackman) or researchers. 5. How It Works (3-Step Process) Title: "Learn TM in 3 Simple Steps" Steps: Intro Talk: Free 60-minute webinar. Personal Instruction: 1-on-1 session with a certified teacher. Follow-Up: Support for lifelong practice. CTA: "See Course Details" 6. Teacher/Event Locator (Interactive Tool) Title: "Find a TM Teacher Near You" Search Bar: By ZIP/country + "Upcoming Events" filter. Map: Interactive pins or list view. 7. Media/Recognition Logos "Featured in:" [CNN, Harvard Research, TIME, etc.] (logo carousel) 8. Blog/Resources Preview Title: "Explore TM Resources" 3 Featured Articles: e.g., "TM for Veterans," "TM vs. Mindfulness," "CEO’s Secret to Productivity." 9. Footer Quick Links: Repeat key nav items. Social Media: Icons + newsletter signup ("Get Tips & Updates"). Legal: Copyright, Privacy Policy, Terms. Affiliate Info: "A non-profit organization" (if applicable). Notes for UX/UI: Mobile-Friendly: Collapsible menu, stacked sections. Trust Signals: Certifications (e.g., "IAYT-approved"), secure checkout for courses. Accessibility: Alt text, readable fonts, contrast. Would you like to emphasize any specific aspect (e.g., celebrity endorsements, global reach)? endorsements Here’s an expanded Endorsements Section for the TM.org homepage, designed to build credibility and social proof by highlighting high-profile advocates, research institutions, and media coverage. Enhanced Endorsements Section 1. Celebrity & Influencer Testimonials (Carousel or Grid) Title: "Trusted by Leaders Worldwide" Format: Rotating quotes with photos/videos. Examples: Oprah Winfrey: "TM gives me an inner stillness I’ve never experienced before." Hugh Jackman: "It’s the single most effective tool for focus and creativity in my life." Jerry Seinfeld: "Twice a day, every day—no exceptions." Katrina Kaif (or other regional icons for localization). CTA: "See More Stories" (links to testimonials page). 2. Institutional Credibility (Logos + Stats) Title: "Backed by Science" Research Partners: Logos of institutions linked to TM studies (e.g., Harvard, NIH, Stanford). Key Stat: *"600+ peer-reviewed studies on TM’s benefits for stress, PTSD, and heart health."* CTA: "Explore Research" (links to studies). 3. Media Features (Press Highlights) Title: "As Seen In" Logo Grid: TIME, CNN, BBC, The New York Times, Forbes, etc. Pull Quote: "TM is the gold standard of meditation techniques." — The Wall Street Journal 4. Corporate & Wellness Partnerships Title: "Transforming Workplaces & Communities" Examples: "Google, Salesforce, and the NFL offer TM to employees." *"Taught in 500+ schools and veterans’ programs globally."* CTA: "Bring TM to Your Organization" (links to corporate programs). 5. User Testimonials (Diverse Voices) Video Clips: Short clips of everyday users (e.g., students, veterans, parents). Text Quotes: "After 3 months of TM, my anxiety dropped by 50%." — Sarah, Teacher "No other technique gave me such deep rest." — Miguel, Army Veteran Placement Suggestions Below Hero Section: Prioritize celebrity/institutional endorsements for immediate trust. Near Footer: User testimonials to reinforce credibility before CTAs. Optional Add-Ons Live Counter: "Over 10 million people learned TM!" Social Proof Pop-Up: "Join [X] people who signed up today!" - Follow Up Deployment
8b3b89b
verified
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>TM.org - Transcendental Meditation®</title> | |
<script src="https://cdn.tailwindcss.com"></script> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> | |
<style> | |
.hero-bg { | |
background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1545205597-3d9d02c29597?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80'); | |
background-size: cover; | |
background-position: center; | |
} | |
.testimonial-card { | |
transition: transform 0.3s ease; | |
} | |
.testimonial-card:hover { | |
transform: translateY(-5px); | |
} | |
.endorsement-logo { | |
filter: grayscale(100%); | |
opacity: 0.7; | |
transition: all 0.3s ease; | |
} | |
.endorsement-logo:hover { | |
filter: grayscale(0); | |
opacity: 1; | |
} | |
/* Custom animation for the floating meditation icon */ | |
@keyframes float { | |
0% { transform: translateY(0px); } | |
50% { transform: translateY(-10px); } | |
100% { transform: translateY(0px); } | |
} | |
.floating-icon { | |
animation: float 3s ease-in-out infinite; | |
} | |
</style> | |
</head> | |
<body class="font-sans bg-gray-50"> | |
<!-- Header/Navigation --> | |
<header class="sticky top-0 z-50 bg-white shadow-md"> | |
<div class="container mx-auto px-4 py-3 flex justify-between items-center"> | |
<div class="flex items-center"> | |
<div class="text-2xl font-bold text-indigo-700 mr-10">TM.org</div> | |
<nav class="hidden md:flex space-x-8"> | |
<a href="#" class="text-gray-700 hover:text-indigo-600 font-medium">Home</a> | |
<div class="relative group"> | |
<button class="text-gray-700 hover:text-indigo-600 font-medium flex items-center"> | |
Learn TM <i class="fas fa-chevron-down ml-1 text-xs"></i> | |
</button> | |
<div class="absolute hidden group-hover:block bg-white shadow-lg rounded-md mt-2 py-2 w-48"> | |
<a href="#" class="block px-4 py-2 text-gray-700 hover:bg-indigo-50 hover:text-indigo-600">What is TM?</a> | |
<a href="#" class="block px-4 py-2 text-gray-700 hover:bg-indigo-50 hover:text-indigo-600">Benefits</a> | |
<a href="#" class="block px-4 py-2 text-gray-700 hover:bg-indigo-50 hover:text-indigo-600">How to Learn</a> | |
</div> | |
</div> | |
<a href="#" class="text-gray-700 hover:text-indigo-600 font-medium">Research & Science</a> | |
<div class="relative group"> | |
<button class="text-gray-700 hover:text-indigo-600 font-medium flex items-center"> | |
About Us <i class="fas fa-chevron-down ml-1 text-xs"></i> | |
</button> | |
<div class="absolute hidden group-hover:block bg-white shadow-lg rounded-md mt-2 py-2 w-48"> | |
<a href="#" class="block px-4 py-2 text-gray-700 hover:bg-indigo-50 hover:text-indigo-600">History</a> | |
<a href="#" class="block px-4 py-2 text-gray-700 hover:bg-indigo-50 hover:text-indigo-600">Teachers</a> | |
<a href="#" class="block px-4 py-2 text-gray-700 hover:bg-indigo-50 hover:text-indigo-600">FAQs</a> | |
</div> | |
</div> | |
<a href="#" class="text-gray-700 hover:text-indigo-600 font-medium">Events & Courses</a> | |
<a href="#" class="text-gray-700 hover:text-indigo-600 font-medium">Blog</a> | |
</nav> | |
</div> | |
<div class="flex items-center"> | |
<a href="#" class="hidden md:block bg-indigo-600 hover:bg-indigo-700 text-white px-4 py-2 rounded-md font-medium transition duration-300">Find a Teacher</a> | |
<button class="md:hidden text-gray-700" id="mobile-menu-button"> | |
<i class="fas fa-bars text-2xl"></i> | |
</button> | |
</div> | |
</div> | |
<!-- Mobile menu --> | |
<div class="md:hidden hidden bg-white shadow-lg" id="mobile-menu"> | |
<div class="px-4 py-3 space-y-3"> | |
<a href="#" class="block text-gray-700 hover:text-indigo-600">Home</a> | |
<div> | |
<button class="flex items-center justify-between w-full text-gray-700 hover:text-indigo-600" id="learn-tm-toggle"> | |
Learn TM <i class="fas fa-chevron-down ml-1 text-xs"></i> | |
</button> | |
<div class="hidden mt-2 pl-4 space-y-2" id="learn-tm-dropdown"> | |
<a href="#" class="block text-gray-700 hover:text-indigo-600">What is TM?</a> | |
<a href="#" class="block text-gray-700 hover:text-indigo-600">Benefits</a> | |
<a href="#" class="block text-gray-700 hover:text-indigo-600">How to Learn</a> | |
</div> | |
</div> | |
<a href="#" class="block text-gray-700 hover:text-indigo-600">Research & Science</a> | |
<div> | |
<button class="flex items-center justify-between w-full text-gray-700 hover:text-indigo-600" id="about-us-toggle"> | |
About Us <i class="fas fa-chevron-down ml-1 text-xs"></i> | |
</button> | |
<div class="hidden mt-2 pl-4 space-y-2" id="about-us-dropdown"> | |
<a href="#" class="block text-gray-700 hover:text-indigo-600">History</a> | |
<a href="#" class="block text-gray-700 hover:text-indigo-600">Teachers</a> | |
<a href="#" class="block text-gray-700 hover:text-indigo-600">FAQs</a> | |
</div> | |
</div> | |
<a href="#" class="block text-gray-700 hover:text-indigo-600">Events & Courses</a> | |
<a href="#" class="block text-gray-700 hover:text-indigo-600">Blog</a> | |
<a href="#" class="block bg-indigo-600 hover:bg-indigo-700 text-white px-4 py-2 rounded-md font-medium text-center">Find a Teacher</a> | |
</div> | |
</div> | |
</header> | |
<!-- Hero Section --> | |
<section class="hero-bg text-white py-20 md:py-32"> | |
<div class="container mx-auto px-4 text-center"> | |
<h1 class="text-4xl md:text-5xl font-bold mb-4">Reduce Stress. Improve Life.</h1> | |
<h2 class="text-2xl md:text-3xl mb-8">Learn Transcendental Meditation®</h2> | |
<p class="text-xl mb-10 max-w-2xl mx-auto">A simple, evidence-based technique for clarity, resilience, and inner peace.</p> | |
<div class="flex flex-col sm:flex-row justify-center gap-4"> | |
<a href="#" class="bg-indigo-600 hover:bg-indigo-700 text-white px-8 py-3 rounded-md font-medium text-lg transition duration-300">Watch the Free Intro Video</a> | |
<a href="#" class="bg-white hover:bg-gray-100 text-indigo-600 px-8 py-3 rounded-md font-medium text-lg transition duration-300">Find a Local Teacher</a> | |
</div> | |
<!-- Floating meditation icon --> | |
<div class="mt-16 floating-icon"> | |
<i class="fas fa-spa text-4xl text-white opacity-70"></i> | |
</div> | |
</div> | |
</section> | |
<!-- Benefits Section --> | |
<section class="py-16 bg-white"> | |
<div class="container mx-auto px-4"> | |
<h2 class="text-3xl font-bold text-center mb-12">Why Practice TM?</h2> | |
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8"> | |
<div class="bg-gray-50 p-6 rounded-lg text-center hover:shadow-lg transition duration-300"> | |
<div class="text-indigo-600 mb-4"> | |
<i class="fas fa-heart text-4xl"></i> | |
</div> | |
<h3 class="text-xl font-semibold mb-2">Reduces Stress & Anxiety</h3> | |
<p class="text-gray-600">Experience deep relaxation that dissolves stress and promotes calmness.</p> | |
</div> | |
<div class="bg-gray-50 p-6 rounded-lg text-center hover:shadow-lg transition duration-300"> | |
<div class="text-indigo-600 mb-4"> | |
<i class="fas fa-brain text-4xl"></i> | |
</div> | |
<h3 class="text-xl font-semibold mb-2">Improves Focus & Creativity</h3> | |
<p class="text-gray-600">Enhance cognitive function and unlock your creative potential.</p> | |
</div> | |
<div class="bg-gray-50 p-6 rounded-lg text-center hover:shadow-lg transition duration-300"> | |
<div class="text-indigo-600 mb-4"> | |
<i class="fas fa-flask text-4xl"></i> | |
</div> | |
<h3 class="text-xl font-semibold mb-2">Backed by Science</h3> | |
<p class="text-gray-600">Supported by 600+ scientific studies validating its effectiveness.</p> | |
</div> | |
<div class="bg-gray-50 p-6 rounded-lg text-center hover:shadow-lg transition duration-300"> | |
<div class="text-indigo-600 mb-4"> | |
<i class="fas fa-clock text-4xl"></i> | |
</div> | |
<h3 class="text-xl font-semibold mb-2">Easy to Learn</h3> | |
<p class="text-gray-600">Just 20 minutes a day with no apps or gimmicks—just natural relaxation.</p> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Science & Research Section --> | |
<section class="py-16 bg-indigo-50"> | |
<div class="container mx-auto px-4"> | |
<h2 class="text-3xl font-bold text-center mb-12">Proven by Science, Trusted Worldwide</h2> | |
<div class="flex flex-col lg:flex-row items-center gap-12 mb-16"> | |
<div class="lg:w-1/2"> | |
<div class="bg-white p-8 rounded-lg shadow-md"> | |
<div class="flex items-center mb-4"> | |
<div class="text-indigo-600 mr-4"> | |
<i class="fas fa-chart-line text-3xl"></i> | |
</div> | |
<h3 class="text-xl font-semibold">40% Reduction in Anxiety</h3> | |
</div> | |
<p class="text-gray-600 mb-4">A study published in the Journal of Clinical Psychology found that TM practitioners experienced a 40% reduction in anxiety symptoms compared to control groups.</p> | |
<a href="#" class="text-indigo-600 hover:text-indigo-800 font-medium">Read the Study →</a> | |
</div> | |
</div> | |
<div class="lg:w-1/2"> | |
<div class="bg-white p-8 rounded-lg shadow-md"> | |
<div class="flex items-center mb-4"> | |
<div class="text-indigo-600 mr-4"> | |
<i class="fas fa-globe text-3xl"></i> | |
</div> | |
<h3 class="text-xl font-semibold">Used by 10+ Million People</h3> | |
</div> | |
<p class="text-gray-600 mb-4">Transcendental Meditation has been learned by over 10 million people worldwide, across all cultures and walks of life.</p> | |
<a href="#" class="text-indigo-600 hover:text-indigo-800 font-medium">See Global Impact →</a> | |
</div> | |
</div> | |
</div> | |
<!-- Testimonial Carousel --> | |
<div class="max-w-4xl mx-auto"> | |
<h3 class="text-xl font-semibold text-center mb-8">What People Are Saying</h3> | |
<div class="bg-white p-8 rounded-lg shadow-md relative"> | |
<div class="text-center"> | |
<div class="text-yellow-400 mb-4"> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
</div> | |
<p class="text-xl italic mb-6">"TM gives me an inner stillness I've never experienced before. It's the single most important thing I do for myself."</p> | |
<div class="flex items-center justify-center"> | |
<img src="https://randomuser.me/api/portraits/women/44.jpg" alt="Oprah Winfrey" class="w-12 h-12 rounded-full mr-4"> | |
<div> | |
<p class="font-semibold">Oprah Winfrey</p> | |
<p class="text-gray-600 text-sm">Media Executive</p> | |
</div> | |
</div> | |
</div> | |
<button class="absolute top-1/2 left-4 transform -translate-y-1/2 text-gray-400 hover:text-indigo-600"> | |
<i class="fas fa-chevron-left text-2xl"></i> | |
</button> | |
<button class="absolute top-1/2 right-4 transform -translate-y-1/2 text-gray-400 hover:text-indigo-600"> | |
<i class="fas fa-chevron-right text-2xl"></i> | |
</button> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- How It Works Section --> | |
<section class="py-16 bg-white"> | |
<div class="container mx-auto px-4"> | |
<h2 class="text-3xl font-bold text-center mb-12">Learn TM in 3 Simple Steps</h2> | |
<div class="flex flex-col md:flex-row gap-8 mb-12"> | |
<div class="md:w-1/3 bg-indigo-50 p-8 rounded-lg text-center"> | |
<div class="text-indigo-600 mb-4"> | |
<div class="inline-flex items-center justify-center w-16 h-16 bg-indigo-100 rounded-full"> | |
<span class="text-2xl font-bold">1</span> | |
</div> | |
</div> | |
<h3 class="text-xl font-semibold mb-4">Intro Talk</h3> | |
<p class="text-gray-600 mb-4">Start with a free 60-minute introductory webinar to understand the principles and benefits of TM.</p> | |
<a href="#" class="text-indigo-600 hover:text-indigo-800 font-medium">Sign Up for Free →</a> | |
</div> | |
<div class="md:w-1/3 bg-indigo-50 p-8 rounded-lg text-center"> | |
<div class="text-indigo-600 mb-4"> | |
<div class="inline-flex items-center justify-center w-16 h-16 bg-indigo-100 rounded-full"> | |
<span class="text-2xl font-bold">2</span> | |
</div> | |
</div> | |
<h3 class="text-xl font-semibold mb-4">Personal Instruction</h3> | |
<p class="text-gray-600 mb-4">Receive one-on-one training from a certified TM teacher, tailored to your individual needs.</p> | |
<a href="#" class="text-indigo-600 hover:text-indigo-800 font-medium">Find a Teacher →</a> | |
</div> | |
<div class="md:w-1/3 bg-indigo-50 p-8 rounded-lg text-center"> | |
<div class="text-indigo-600 mb-4"> | |
<div class="inline-flex items-center justify-center w-16 h-16 bg-indigo-100 rounded-full"> | |
<span class="text-2xl font-bold">3</span> | |
</div> | |
</div> | |
<h3 class="text-xl font-semibold mb-4">Follow-Up Support</h3> | |
<p class="text-gray-600 mb-4">Get ongoing guidance and support to ensure you're getting the most from your practice.</p> | |
<a href="#" class="text-indigo-600 hover:text-indigo-800 font-medium">Learn More →</a> | |
</div> | |
</div> | |
<div class="text-center"> | |
<a href="#" class="bg-indigo-600 hover:bg-indigo-700 text-white px-8 py-3 rounded-md font-medium text-lg inline-block transition duration-300">See Course Details</a> | |
</div> | |
</div> | |
</section> | |
<!-- Teacher/Event Locator --> | |
<section class="py-16 bg-indigo-600 text-white"> | |
<div class="container mx-auto px-4"> | |
<h2 class="text-3xl font-bold text-center mb-8">Find a TM Teacher Near You</h2> | |
<div class="max-w-2xl mx-auto bg-white rounded-lg shadow-lg overflow-hidden"> | |
<div class="p-6"> | |
<div class="flex flex-col sm:flex-row gap-4 mb-6"> | |
<input type="text" placeholder="Enter your ZIP or City" class="flex-grow px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-indigo-500 text-gray-800"> | |
<select class="px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-indigo-500 text-gray-800"> | |
<option>Select Country</option> | |
<option>United States</option> | |
<option>Canada</option> | |
<option>United Kingdom</option> | |
<option>Australia</option> | |
<option>Other</option> | |
</select> | |
</div> | |
<div class="flex justify-between items-center"> | |
<div class="flex items-center"> | |
<input type="checkbox" id="events" class="mr-2"> | |
<label for="events" class="text-gray-800">Show upcoming events</label> | |
</div> | |
<button class="bg-indigo-600 hover:bg-indigo-700 text-white px-6 py-2 rounded-md font-medium">Search</button> | |
</div> | |
</div> | |
<div class="bg-gray-100 p-6"> | |
<div class="h-64 flex items-center justify-center text-gray-500"> | |
<p>Map or list of teachers/events will appear here</p> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Endorsements Section --> | |
<section class="py-16 bg-white"> | |
<div class="container mx-auto px-4"> | |
<h2 class="text-3xl font-bold text-center mb-12">Trusted by Leaders Worldwide</h2> | |
<!-- Celebrity Testimonials --> | |
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8 mb-16"> | |
<div class="testimonial-card bg-gray-50 p-6 rounded-lg hover:shadow-md"> | |
<div class="flex items-center mb-4"> | |
<img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Hugh Jackman" class="w-16 h-16 rounded-full mr-4"> | |
<div> | |
<h3 class="text-xl font-semibold">Hugh Jackman</h3> | |
<p class="text-gray-600">Actor</p> | |
</div> | |
</div> | |
<p class="text-gray-700 italic mb-4">"TM is the single most effective tool for focus and creativity in my life. I've been practicing for over 20 years."</p> | |
<div class="text-yellow-400"> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
</div> | |
</div> | |
<div class="testimonial-card bg-gray-50 p-6 rounded-lg hover:shadow-md"> | |
<div class="flex items-center mb-4"> | |
<img src="https://randomuser.me/api/portraits/men/75.jpg" alt="Jerry Seinfeld" class="w-16 h-16 rounded-full mr-4"> | |
<div> | |
<h3 class="text-xl font-semibold">Jerry Seinfeld</h3> | |
<p class="text-gray-600">Comedian</p> | |
</div> | |
</div> | |
<p class="text-gray-700 italic mb-4">"Twice a day, every day—no exceptions. It's like a reset button for your mind and body."</p> | |
<div class="text-yellow-400"> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
</div> | |
</div> | |
<div class="testimonial-card bg-gray-50 p-6 rounded-lg hover:shadow-md"> | |
<div class="flex items-center mb-4"> | |
<img src="https://randomuser.me/api/portraits/women/68.jpg" alt="Katrina Kaif" class="w-16 h-16 rounded-full mr-4"> | |
<div> | |
<h3 class="text-xl font-semibold">Katrina Kaif</h3> | |
<p class="text-gray-600">Actress</p> | |
</div> | |
</div> | |
<p class="text-gray-700 italic mb-4">"TM helps me stay centered amidst the chaos of film shoots and travel. It's my daily anchor."</p> | |
<div class="text-yellow-400"> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
</div> | |
</div> | |
</div> | |
<div class="text-center mb-12"> | |
<a href="#" class="text-indigo-600 hover:text-indigo-800 font-medium inline-flex items-center"> | |
See More Celebrity Stories <i class="fas fa-chevron-right ml-2"></i> | |
</a> | |
</div> | |
<!-- Institutional Credibility --> | |
<div class="mb-16"> | |
<h3 class="text-2xl font-semibold text-center mb-8">Backed by Science</h3> | |
<div class="bg-indigo-50 p-8 rounded-lg mb-8"> | |
<div class="flex flex-col md:flex-row items-center"> | |
<div class="md:w-1/2 mb-6 md:mb-0"> | |
<h4 class="text-xl font-semibold mb-4">600+ peer-reviewed studies on TM's benefits</h4> | |
<p class="text-gray-700 mb-4">Research has shown TM's effectiveness for stress reduction, PTSD treatment, heart health, and cognitive performance.</p> | |
<a href="#" class="text-indigo-600 hover:text-indigo-800 font-medium">Explore Research →</a> | |
</div> | |
<div class="md:w-1/2 grid grid-cols-3 gap-4"> | |
<div class="endorsement-logo flex items-center justify-center p-4"> | |
<i class="fas fa-university text-4xl text-gray-600"></i> | |
</div> | |
<div class="endorsement-logo flex items-center justify-center p-4"> | |
<i class="fas fa-hospital text-4xl text-gray-600"></i> | |
</div> | |
<div class="endorsement-logo flex items-center justify-center p-4"> | |
<i class="fas fa-flask text-4xl text-gray-600"></i> | |
</div> | |
<div class="endorsement-logo flex items-center justify-center p-4"> | |
<i class="fas fa-heartbeat text-4xl text-gray-600"></i> | |
</div> | |
<div class="endorsement-logo flex items-center justify-center p-4"> | |
<i class="fas fa-graduation-cap text-4xl text-gray-600"></i> | |
</div> | |
<div class="endorsement-logo flex items-center justify-center p-4"> | |
<i class="fas fa-brain text-4xl text-gray-600"></i> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
<!-- Media Features --> | |
<div class="mb-16"> | |
<h3 class="text-2xl font-semibold text-center mb-8">As Seen In</h3> | |
<div class="grid grid-cols-2 md:grid-cols-4 lg:grid-cols-6 gap-6"> | |
<div class="endorsement-logo flex items-center justify-center p-4 bg-white rounded-lg shadow-sm"> | |
<span class="text-xl font-bold text-gray-700">TIME</span> | |
</div> | |
<div class="endorsement-logo flex items-center justify-center p-4 bg-white rounded-lg shadow-sm"> | |
<span class="text-xl font-bold text-gray-700">CNN</span> | |
</div> | |
<div class="endorsement-logo flex items-center justify-center p-4 bg-white rounded-lg shadow-sm"> | |
<span class="text-xl font-bold text-gray-700">BBC</span> | |
</div> | |
<div class="endorsement-logo flex items-center justify-center p-4 bg-white rounded-lg shadow-sm"> | |
<span class="text-xl font-bold text-gray-700">NYT</span> | |
</div> | |
<div class="endorsement-logo flex items-center justify-center p-4 bg-white rounded-lg shadow-sm"> | |
<span class="text-xl font-bold text-gray-700">Forbes</span> | |
</div> | |
<div class="endorsement-logo flex items-center justify-center p-4 bg-white rounded-lg shadow-sm"> | |
<span class="text-xl font-bold text-gray-700">WSJ</span> | |
</div> | |
</div> | |
<div class="mt-8 text-center"> | |
<p class="text-lg italic text-gray-700 max-w-2xl mx-auto">"TM is the gold standard of meditation techniques." — The Wall Street Journal</p> | |
</div> | |
</div> | |
<!-- Corporate Partnerships --> | |
<div> | |
<h3 class="text-2xl font-semibold text-center mb-8">Transforming Workplaces & Communities</h3> | |
<div class="bg-white p-8 rounded-lg shadow-md mb-8"> | |
<div class="flex flex-col md:flex-row items-center"> | |
<div class="md:w-1/2 mb-6 md:mb-0"> | |
<h4 class="text-xl font-semibold mb-4">Bringing TM to Organizations</h4> | |
<p class="text-gray-700 mb-4">Google, Salesforce, and the NFL offer TM to employees. Taught in 500+ schools and veterans' programs globally.</p> | |
<a href="#" class="bg-indigo-600 hover:bg-indigo-700 text-white px-6 py-2 rounded-md font-medium inline-block">Bring TM to Your Organization</a> | |
</div> | |
<div class="md:w-1/2 grid grid-cols-3 gap-4"> | |
<div class="endorsement-logo flex items-center justify-center p-4 bg-gray-100 rounded-lg"> | |
<i class="fab fa-google text-3xl text-gray-600"></i> | |
</div> | |
<div class="endorsement-logo flex items-center justify-center p-4 bg-gray-100 rounded-lg"> | |
<i class="fas fa-cloud text-3xl text-gray-600"></i> | |
</div> | |
<div class="endorsement-logo flex items-center justify-center p-4 bg-gray-100 rounded-lg"> | |
<i class="fas fa-football-ball text-3xl text-gray-600"></i> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- User Testimonials --> | |
<section class="py-16 bg-indigo-50"> | |
<div class="container mx-auto px-4"> | |
<h2 class="text-3xl font-bold text-center mb-12">Real People, Real Results</h2> | |
<div class="grid grid-cols-1 md:grid-cols-3 gap-8 mb-12"> | |
<div class="bg-white p-6 rounded-lg shadow-sm"> | |
<div class="flex items-center mb-4"> | |
<img src="https://randomuser.me/api/portraits/women/32.jpg" alt="Sarah" class="w-12 h-12 rounded-full mr-4"> | |
<div> | |
<h3 class="font-semibold">Sarah, Teacher</h3> | |
<p class="text-gray-600 text-sm">Practicing TM for 3 months</p> | |
</div> | |
</div> | |
<p class="text-gray-700 italic mb-4">"After 3 months of TM, my anxiety dropped by 50%. I'm more patient with my students and sleep better at night."</p> | |
<div class="flex justify-between items-center"> | |
<div class="text-yellow-400"> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
</div> | |
<span class="text-xs text-gray-500">Posted 2 weeks ago</span> | |
</div> | |
</div> | |
<div class="bg-white p-6 rounded-lg shadow-sm"> | |
<div class="flex items-center mb-4"> | |
<img src="https://randomuser.me/api/portraits/men/45.jpg" alt="Miguel" class="w-12 h-12 rounded-full mr-4"> | |
<div> | |
<h3 class="font-semibold">Miguel, Army Veteran</h3> | |
<p class="text-gray-600 text-sm">Practicing TM for 1 year</p> | |
</div> | |
</div> | |
<p class="text-gray-700 italic mb-4">"No other technique gave me such deep rest. TM has been crucial in managing my PTSD symptoms."</p> | |
<div class="flex justify-between items-center"> | |
<div class="text-yellow-400"> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star-half-alt"></i> | |
</div> | |
<span class="text-xs text-gray-500">Posted 1 month ago</span> | |
</div> | |
</div> | |
<div class="bg-white p-6 rounded-lg shadow-sm"> | |
<div class="flex items-center mb-4"> | |
<img src="https://randomuser.me/api/portraits/women/68.jpg" alt="Priya" class="w-12 h-12 rounded-full mr-4"> | |
<div> | |
<h3 class="font-semibold">Priya, CEO</h3> | |
<p class="text-gray-600 text-sm">Practicing TM for 5 years</p> | |
</div> | |
</div> | |
<p class="text-gray-700 italic mb-4">"Twice-daily TM gives me the clarity to make better decisions and the resilience to handle business challenges."</p> | |
<div class="flex justify-between items-center"> | |
<div class="text-yellow-400"> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
</div> | |
<span class="text-xs text-gray-500">Posted 3 days ago</span> | |
</div> | |
</div> | |
</div> | |
<div class="text-center"> | |
<a href="#" class="inline-flex items-center text-indigo-600 hover:text-indigo-800 font-medium"> | |
Read More Testimonials <i class="fas fa-chevron-right ml-2"></i> | |
</a> | |
</div> | |
</div> | |
</section> | |
<!-- Blog/Resources Preview --> | |
<section class="py-16 bg-white"> | |
<div class="container mx-auto px-4"> | |
<h2 class="text-3xl font-bold text-center mb-12">Explore TM Resources</h2> | |
<div class="grid grid-cols-1 md:grid-cols-3 gap-8 mb-12"> | |
<div class="border border-gray-200 rounded-lg overflow-hidden hover:shadow-md transition duration-300"> | |
<img src="https://images.unsplash.com/photo-1541185934-01b600ea069c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1471&q=80" alt="TM for Veterans" class="w-full h-48 object-cover"> | |
<div class="p-6"> | |
<h3 class="text-xl font-semibold mb-2">TM for Veterans: Healing Trauma Naturally</h3> | |
<p class="text-gray-600 mb-4">Discover how veterans are finding relief from PTSD through Transcendental Meditation.</p> | |
<a href="#" class="text-indigo-600 hover:text-indigo-800 font-medium">Read Article →</a> | |
</div> | |
</div> | |
<div class="border border-gray-200 rounded-lg overflow-hidden hover:shadow-md transition duration-300"> | |
<img src="https://images.unsplash.com/photo-1499750310107-5fef28a66643?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="TM vs Mindfulness" class="w-full h-48 object-cover"> | |
<div class="p-6"> | |
<h3 class="text-xl font-semibold mb-2">TM vs. Mindfulness: Key Differences</h3> | |
<p class="text-gray-600 mb-4">Understand how TM compares to other meditation practices and why it's uniquely effective.</p> | |
<a href="#" class="text-indigo-600 hover:text-indigo-800 font-medium">Read Article →</a> | |
</div> | |
</div> | |
<div class="border border-gray-200 rounded-lg overflow-hidden hover:shadow-md transition duration-300"> | |
<img src="https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="CEO's Secret" class="w-full h-48 object-cover"> | |
<div class="p-6"> | |
<h3 class="text-xl font-semibold mb-2">A CEO's Secret to Peak Productivity</h3> | |
<p class="text-gray-600 mb-4">How top executives use TM to enhance decision-making and reduce burnout.</p> | |
<a href="#" class="text-indigo-600 hover:text-indigo-800 font-medium">Read Article →</a> | |
</div> | |
</div> | |
</div> | |
<div class="text-center"> | |
<a href="#" class="bg-indigo-600 hover:bg-indigo-700 text-white px-8 py-3 rounded-md font-medium text-lg inline-block transition duration-300">View All Resources</a> | |
</div> | |
</div> | |
</section> | |
<!-- Counter Section --> | |
<section class="py-12 bg-indigo-600 text-white"> | |
<div class="container mx-auto px-4 text-center"> | |
<div class="text-4xl font-bold mb-2">10,000,000+</div> | |
<p class="text-xl">People worldwide have learned Transcendental Meditation</p> | |
</div> | |
</section> | |
<!-- Final CTA --> | |
<section class="py-16 bg-white"> | |
<div class="container mx-auto px-4 text-center"> | |
<h2 class="text-3xl font-bold mb-6">Ready to Transform Your Life?</h2> | |
<p class="text-xl text-gray-600 max-w-2xl mx-auto mb-8">Start your journey with Transcendental Meditation today and experience the benefits for yourself.</p> | |
<div class="flex flex-col sm:flex-row justify-center gap-4"> | |
<a href="#" class="bg-indigo-600 hover:bg-indigo-700 text-white px-8 py-3 rounded-md font-medium text-lg transition duration-300">Find a Teacher Near You</a> | |
<a href="#" class="bg-white hover:bg-gray-100 text-indigo-600 border border-indigo-600 px-8 py-3 rounded-md font-medium text-lg transition duration-300">Watch Free Intro Video</a> | |
</div> | |
</div> | |
</section> | |
<!-- Footer --> | |
<footer class="bg-gray-900 text-white pt-16 pb-8"> | |
<div class="container mx-auto px-4"> | |
<div class="grid grid-cols-1 md:grid-cols-4 gap-12 mb-12"> | |
<div> | |
<h3 class="text-xl font-bold mb-4">TM.org</h3> | |
<p class="text-gray-400 mb-4">Transcendental Meditation® is a simple, natural technique practiced 20 minutes twice each day while sitting comfortably with the eyes closed.</p> | |
<div class="flex space-x-4"> | |
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-facebook-f"></i></a> | |
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-twitter"></i></a> | |
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-instagram"></i></a> | |
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-youtube"></i></a> | |
</div> | |
</div> | |
<div> | |
<h3 class="text-lg font-semibold mb-4">Quick Links</h3> | |
<ul class="space-y-2"> | |
<li><a href="#" class="text-gray-400 hover:text-white">Home</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white">What is TM?</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white">Benefits</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white">Research</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white">Find a Teacher</a></li> | |
</ul> | |
</div> | |
<div> | |
<h3 class="text-lg font-semibold mb-4">Resources</h3> | |
<ul class="space-y-2"> | |
<li><a href="#" class="text-gray-400 hover:text-white">Blog</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white">FAQs</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white">Events</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white">Corporate Programs</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white">School Programs</a></li> | |
</ul> | |
</div> | |
<div> | |
<h3 class="text-lg font-semibold mb-4">Newsletter</h3> | |
<p class="text-gray-400 mb-4">Subscribe to get tips and updates about TM.</p> | |
<form class="flex"> | |
<input type="email" placeholder="Your email" class="px-4 py-2 rounded-l-md w-full text-gray-800 focus:outline-none"> | |
<button type="submit" class="bg-indigo-600 hover:bg-indigo-700 px-4 py-2 rounded-r-md"> | |
<i class="fas fa-paper-plane"></i> | |
</button> | |
</form> | |
</div> | |
</div> | |
<div class="border-t border-gray-800 pt-8"> | |
<div class="flex flex-col md:flex-row justify-between items-center"> | |
<p class="text-gray-400 mb-4 md:mb-0">© 2023 TM.org. All rights reserved.</p> | |
<div class="flex space-x-6"> | |
<a href="#" class="text-gray-400 hover:text-white">Privacy Policy</a> | |
<a href="#" class="text-gray-400 hover:text-white">Terms of Service</a> | |
<a href="#" class="text-gray-400 hover:text-white">Contact Us</a> | |
</div> | |
</div> | |
<p class="text-gray-500 text-sm mt-4">Transcendental Meditation® and TM® are registered trademarks licensed to Maharishi Foundation USA, a 501(c)(3) non-profit organization.</p> | |
</div> | |
</div> | |
</footer> | |
<!-- Social Proof Popup --> | |
<div class="fixed bottom-4 right-4 bg-white shadow-xl rounded-lg p-4 max-w-xs hidden" id="social-proof"> | |
<div class="flex items-start"> | |
<img src="https://randomuser.me/api/portraits/women/33.jpg" alt="User" class="w-10 h-10 rounded-full mr-3"> | |
<div> | |
<p class="text-sm font-medium">Sarah from Chicago just signed up for a free intro webinar!</p> | |
<p class="text-xs text-gray-500 mt-1">2 minutes ago</p> | |
</div> | |
<button class="ml-2 text-gray-400 hover:text-gray-600" id="close-popup"> | |
<i class="fas fa-times"></i> | |
</button> | |
</div> | |
</div> | |
<script> | |
// Mobile menu toggle | |
document.getElementById('mobile-menu-button').addEventListener('click', function() { | |
const menu = document.getElementById('mobile-menu'); | |
menu.classList.toggle('hidden'); | |
}); | |
// Mobile dropdown toggles | |
document.getElementById('learn-tm-toggle').addEventListener('click', function() { | |
document.getElementById('learn-tm-dropdown').classList.toggle('hidden'); | |
}); | |
document.getElementById('about-us-toggle').addEventListener('click', function() { | |
document.getElementById('about-us-dropdown').classList.toggle('hidden'); | |
}); | |
// Close popup | |
document.getElementById('close-popup').addEventListener('click', function() { | |
document.getElementById('social-proof').classList.add('hidden'); | |
}); | |
// Show social proof popup after delay | |
setTimeout(function() { | |
document.getElementById('social-proof').classList.remove('hidden'); | |
}, 5000); | |
// Simple testimonial carousel functionality | |
let currentTestimonial = 0; | |
const testimonials = [ | |
{ | |
quote: "TM gives me an inner stillness I've never experienced before. It's the single most important thing I do for myself.", | |
name: "Oprah Winfrey", | |
role: "Media Executive" | |
}, | |
{ | |
quote: "It's the single most effective tool for focus and creativity in my life. I've been practicing for over 20 years.", | |
name: "Hugh Jackman", | |
role: "Actor" | |
}, | |
{ | |
quote: "Twice a day, every day—no exceptions. It's like a reset button for your mind and body.", | |
name: "Jerry Seinfeld", | |
role: "Comedian" | |
} | |
]; | |
function updateTestimonial() { | |
const testimonial = testimonials[currentTestimonial]; | |
document.querySelector('.testimonial-carousel .quote').textContent = testimonial.quote; | |
document.querySelector('.testimonial-carousel .name').textContent = testimonial.name; | |
document.querySelector('.testimonial-carousel .role').textContent = testimonial.role; | |
} | |
// This would be connected to actual carousel buttons in a real implementation | |
</script> | |
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=simondev1/tm" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
</html> |