fix brand name and domain references: Big Breathe -> Big Breath, bigbreathe.com -> bigbreath.co

This commit is contained in:
2026-06-09 13:06:03 +02:00
parent 79c19fef2b
commit 18b9704be1
15 changed files with 83 additions and 83 deletions
+4 -4
View File
@@ -1,4 +1,4 @@
# bigbreathe.com
# bigbreath.co
Yoga company website — Arising Media standard stack.
@@ -40,9 +40,9 @@ infra/ — nginx, supervisord, php-fpm configs
## Env vars (set in Coolify)
```
SEND_FROM_EMAIL=noreply@bigbreathe.com
SEND_TO_EMAIL=hello@bigbreathe.com
SEND_FROM_DOMAIN=bigbreathe.com
SEND_FROM_EMAIL=noreply@bigbreath.co
SEND_TO_EMAIL=hello@bigbreath.co
SEND_FROM_DOMAIN=bigbreath.co
RESEND_API_KEY=re_...
RECAPTCHA_SECRET_KEY=...
```
+1 -1
View File
@@ -4,7 +4,7 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="robots" content="noindex, nofollow">
<title>Page Not Found | Big Breathe Yoga &amp; Wellness</title>
<title>Page Not Found | Big Breath Yoga &amp; Wellness</title>
<link rel="icon" type="image/svg+xml" href="/assets/svg/favicon.svg">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
+1 -1
View File
@@ -4,7 +4,7 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="robots" content="noindex, nofollow">
<title>Server Error | Big Breathe Yoga &amp; Wellness</title>
<title>Server Error | Big Breath Yoga &amp; Wellness</title>
<link rel="icon" type="image/svg+xml" href="/assets/svg/favicon.svg">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
+8 -8
View File
@@ -5,12 +5,12 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="<!-- DRAFT NEEDED: about page meta description -->">
<meta name="robots" content="index, follow">
<meta property="og:title" content="About | Big Breathe Yoga &amp; Wellness">
<meta property="og:title" content="About | Big Breath Yoga &amp; Wellness">
<meta property="og:description" content="<!-- DRAFT NEEDED -->">
<meta property="og:type" content="website">
<meta property="og:url" content="https://bigbreathe.com/about/">
<link rel="canonical" href="https://bigbreathe.com/about/">
<title>About | Big Breathe Yoga &amp; Wellness</title>
<meta property="og:url" content="https://bigbreath.co/about/">
<link rel="canonical" href="https://bigbreath.co/about/">
<title>About | Big Breath Yoga &amp; Wellness</title>
<link rel="icon" type="image/svg+xml" href="/assets/svg/favicon.svg">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
@@ -22,10 +22,10 @@
<header class="bb-header" role="banner">
<div class="header-inner">
<a href="/" class="bb-logo" aria-label="Big Breathe Yoga, Home">
<a href="/" class="bb-logo" aria-label="Big Breath Yoga, Home">
<span class="bb-logo-mark" aria-hidden="true">BB</span>
<span class="bb-logo-text">
<span class="bb-logo-name">Big Breathe</span>
<span class="bb-logo-name">Big Breath</span>
<span class="bb-logo-tagline">Yoga &amp; Wellness</span>
</span>
</a>
@@ -153,7 +153,7 @@
<div class="footer-top">
<div class="footer-brand">
<div class="bb-logo-text">
<span class="bb-logo-name">Big Breathe</span>
<span class="bb-logo-name">Big Breath</span>
<span class="bb-logo-tagline">Yoga &amp; Wellness</span>
</div>
<p class="footer-tagline"><!-- DRAFT NEEDED: footer tagline --></p>
@@ -185,7 +185,7 @@
</div>
</div>
<div class="footer-bottom">
<p class="footer-copy">&copy; 2025 Big Breathe. All rights reserved.</p>
<p class="footer-copy">&copy; 2025 Big Breath. All rights reserved.</p>
<nav class="footer-legal" aria-label="Legal links">
<a href="/privacy-policy/">Privacy</a>
<a href="/terms-of-service/">Terms</a>
+8 -8
View File
@@ -1,6 +1,6 @@
<?php
/**
* Big Breathe — contact form handler.
* Big Breath — contact form handler.
* POST JSON to /api/contact — rate-limited, honeypot-checked.
*/
@@ -9,16 +9,16 @@ declare(strict_types=1);
header('Content-Type: application/json; charset=utf-8');
header('X-Content-Type-Options: nosniff');
$SEND_FROM_EMAIL = getenv('SEND_FROM_EMAIL') ?: 'noreply@bigbreathe.com';
$SEND_FROM_EMAIL = getenv('SEND_FROM_EMAIL') ?: 'noreply@bigbreath.co';
$SEND_TO_EMAIL = getenv('SEND_TO_EMAIL') ?: '';
$SEND_FROM_DOMAIN = getenv('SEND_FROM_DOMAIN') ?: 'bigbreathe.com';
$SEND_FROM_DOMAIN = getenv('SEND_FROM_DOMAIN') ?: 'bigbreath.co';
$RESEND_API_KEY = getenv('RESEND_API_KEY') ?: '';
$RECAPTCHA_SECRET = getenv('RECAPTCHA_SECRET_KEY') ?: '';
$RATE_LIMIT = (int)(getenv('RATE_LIMIT_PER_IP_PER_10MIN') ?: 5);
$SCORE_PASS = (float)(getenv('SCORE_PASS') ?: 0.7);
$SCORE_REVIEW = (float)(getenv('SCORE_REVIEW') ?: 0.4);
$TIME_MIN_SECONDS = (int)(getenv('TIME_MIN_SECONDS') ?: 3);
$FROM_HEADER = sprintf('Big Breathe <%s>', $SEND_FROM_EMAIL);
$FROM_HEADER = sprintf('Big Breath <%s>', $SEND_FROM_EMAIL);
function send_json(array $data, int $status = 200): void {
http_response_code($status);
@@ -131,7 +131,7 @@ $subject_name = preg_replace('/[\x00-\x1F\x7F]/u', ' ', $name);
$subject_prefix = $flagged_review ? '[REVIEW] ' : '';
$subject = "{$subject_prefix}New inquiry from {$subject_name}";
$text_body =
"New inquiry from bigbreathe.com\n\n" .
"New inquiry from bigbreath.co\n\n" .
"Name: {$name}\nEmail: {$email}\nService: {$reason}\n\n" .
"Message:\n" . ($message ?: '(none)') . "\n\n" .
"reCAPTCHA score: {$score}\n" .
@@ -154,9 +154,9 @@ if ($RESEND_API_KEY !== '' && $SEND_TO_EMAIL !== '') {
http_post_json(
'https://api.resend.com/emails',
["Authorization: Bearer {$RESEND_API_KEY}"],
['from' => $FROM_HEADER, 'to' => [$email], 'subject' => 'Your message reached Big Breathe',
'text' => "Thank you for reaching out. We will be in touch within one to two business days.\n\nBig Breathe Yoga & Wellness\nbigbreathe.com",
'html' => "<p>Thank you for reaching out. We will be in touch within one to two business days.</p><p>Big Breathe Yoga &amp; Wellness<br>bigbreathe.com</p>"]
['from' => $FROM_HEADER, 'to' => [$email], 'subject' => 'Your message reached Big Breath',
'text' => "Thank you for reaching out. We will be in touch within one to two business days.\n\nBig Breath Yoga & Wellness\nbigbreath.co",
'html' => "<p>Thank you for reaching out. We will be in touch within one to two business days.</p><p>Big Breath Yoga &amp; Wellness<br>bigbreath.co</p>"]
);
} else {
error_log("[bb.form] no_key request_id=$request_id\nSubject: $subject\n$text_body");
+9 -9
View File
@@ -5,11 +5,11 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="<!-- DRAFT NEEDED: contact page meta description -->">
<meta name="robots" content="index, follow">
<meta property="og:title" content="Contact | Big Breathe Yoga &amp; Wellness">
<meta property="og:title" content="Contact | Big Breath Yoga &amp; Wellness">
<meta property="og:type" content="website">
<meta property="og:url" content="https://bigbreathe.com/contact/">
<link rel="canonical" href="https://bigbreathe.com/contact/">
<title>Contact | Big Breathe Yoga &amp; Wellness</title>
<meta property="og:url" content="https://bigbreath.co/contact/">
<link rel="canonical" href="https://bigbreath.co/contact/">
<title>Contact | Big Breath Yoga &amp; Wellness</title>
<link rel="icon" type="image/svg+xml" href="/assets/svg/favicon.svg">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
@@ -21,10 +21,10 @@
<header class="bb-header" role="banner">
<div class="header-inner">
<a href="/" class="bb-logo" aria-label="Big Breathe Yoga, Home">
<a href="/" class="bb-logo" aria-label="Big Breath Yoga, Home">
<span class="bb-logo-mark" aria-hidden="true">BB</span>
<span class="bb-logo-text">
<span class="bb-logo-name">Big Breathe</span>
<span class="bb-logo-name">Big Breath</span>
<span class="bb-logo-tagline">Yoga &amp; Wellness</span>
</span>
</a>
@@ -150,7 +150,7 @@
<!-- Contact info -->
<div data-animate data-delay="100">
<div class="about-credentials">
<div class="about-credentials-row"><strong>Email</strong><!-- DRAFT NEEDED: hello@bigbreathe.com --></div>
<div class="about-credentials-row"><strong>Email</strong><!-- DRAFT NEEDED: hello@bigbreath.co --></div>
<div class="about-credentials-row"><strong>Phone</strong><!-- DRAFT NEEDED --></div>
<div class="about-credentials-row"><strong>Location</strong><!-- DRAFT NEEDED --></div>
<div class="about-credentials-row"><strong>Hours</strong><!-- DRAFT NEEDED --></div>
@@ -168,7 +168,7 @@
<div class="footer-top">
<div class="footer-brand">
<div class="bb-logo-text">
<span class="bb-logo-name">Big Breathe</span>
<span class="bb-logo-name">Big Breath</span>
<span class="bb-logo-tagline">Yoga &amp; Wellness</span>
</div>
<p class="footer-tagline"><!-- DRAFT NEEDED --></p>
@@ -200,7 +200,7 @@
</div>
</div>
<div class="footer-bottom">
<p class="footer-copy">&copy; 2025 Big Breathe. All rights reserved.</p>
<p class="footer-copy">&copy; 2025 Big Breath. All rights reserved.</p>
<nav class="footer-legal" aria-label="Legal links">
<a href="/privacy-policy/">Privacy</a>
<a href="/terms-of-service/">Terms</a>
+1 -1
View File
@@ -1,4 +1,4 @@
# Big Breathe Yoga & Wellness
# Big Breath Yoga & Wellness
> <!-- DRAFT NEEDED: one-sentence site description -->
+5 -5
View File
@@ -4,8 +4,8 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="robots" content="noindex, follow">
<link rel="canonical" href="https://bigbreathe.com/privacy-policy/">
<title>Privacy Policy | Big Breathe Yoga &amp; Wellness</title>
<link rel="canonical" href="https://bigbreath.co/privacy-policy/">
<title>Privacy Policy | Big Breath Yoga &amp; Wellness</title>
<link rel="icon" type="image/svg+xml" href="/assets/svg/favicon.svg">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
@@ -15,10 +15,10 @@
<body>
<header class="bb-header" role="banner">
<div class="header-inner">
<a href="/" class="bb-logo" aria-label="Big Breathe Yoga, Home">
<a href="/" class="bb-logo" aria-label="Big Breath Yoga, Home">
<span class="bb-logo-mark" aria-hidden="true">BB</span>
<span class="bb-logo-text">
<span class="bb-logo-name">Big Breathe</span>
<span class="bb-logo-name">Big Breath</span>
<span class="bb-logo-tagline">Yoga &amp; Wellness</span>
</span>
</a>
@@ -42,7 +42,7 @@
<footer class="bb-footer" role="contentinfo">
<div class="container">
<div class="footer-bottom" style="padding-top:0;border-top:none;">
<p class="footer-copy">&copy; 2025 Big Breathe. All rights reserved.</p>
<p class="footer-copy">&copy; 2025 Big Breath. All rights reserved.</p>
<nav class="footer-legal" aria-label="Legal links">
<a href="/privacy-policy/">Privacy</a>
<a href="/terms-of-service/">Terms</a>
+1 -1
View File
@@ -1,4 +1,4 @@
User-agent: *
Allow: /
Sitemap: https://bigbreathe.co/sitemap.xml
Sitemap: https://bigbreath.co/sitemap.xml
+8 -8
View File
@@ -5,11 +5,11 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="<!-- DRAFT NEEDED: corporate wellness meta description -->">
<meta name="robots" content="index, follow">
<meta property="og:title" content="Corporate Wellness | Big Breathe Yoga &amp; Wellness">
<meta property="og:title" content="Corporate Wellness | Big Breath Yoga &amp; Wellness">
<meta property="og:type" content="website">
<meta property="og:url" content="https://bigbreathe.com/services/corporate-wellness/">
<link rel="canonical" href="https://bigbreathe.com/services/corporate-wellness/">
<title>Corporate Wellness | Big Breathe Yoga &amp; Wellness</title>
<meta property="og:url" content="https://bigbreath.co/services/corporate-wellness/">
<link rel="canonical" href="https://bigbreath.co/services/corporate-wellness/">
<title>Corporate Wellness | Big Breath Yoga &amp; Wellness</title>
<link rel="icon" type="image/svg+xml" href="/assets/svg/favicon.svg">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
@@ -21,10 +21,10 @@
<header class="bb-header" role="banner">
<div class="header-inner">
<a href="/" class="bb-logo" aria-label="Big Breathe Yoga, Home">
<a href="/" class="bb-logo" aria-label="Big Breath Yoga, Home">
<span class="bb-logo-mark" aria-hidden="true">BB</span>
<span class="bb-logo-text">
<span class="bb-logo-name">Big Breathe</span>
<span class="bb-logo-name">Big Breath</span>
<span class="bb-logo-tagline">Yoga &amp; Wellness</span>
</span>
</a>
@@ -120,7 +120,7 @@
<div class="footer-top">
<div class="footer-brand">
<div class="bb-logo-text">
<span class="bb-logo-name">Big Breathe</span>
<span class="bb-logo-name">Big Breath</span>
<span class="bb-logo-tagline">Yoga &amp; Wellness</span>
</div>
<p class="footer-tagline"><!-- DRAFT NEEDED --></p>
@@ -152,7 +152,7 @@
</div>
</div>
<div class="footer-bottom">
<p class="footer-copy">&copy; 2025 Big Breathe. All rights reserved.</p>
<p class="footer-copy">&copy; 2025 Big Breath. All rights reserved.</p>
<nav class="footer-legal" aria-label="Legal links">
<a href="/privacy-policy/">Privacy</a>
<a href="/terms-of-service/">Terms</a>
+8 -8
View File
@@ -5,11 +5,11 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="<!-- DRAFT NEEDED: group classes meta description -->">
<meta name="robots" content="index, follow">
<meta property="og:title" content="Group Classes | Big Breathe Yoga &amp; Wellness">
<meta property="og:title" content="Group Classes | Big Breath Yoga &amp; Wellness">
<meta property="og:type" content="website">
<meta property="og:url" content="https://bigbreathe.com/services/group-classes/">
<link rel="canonical" href="https://bigbreathe.com/services/group-classes/">
<title>Group Classes | Big Breathe Yoga &amp; Wellness</title>
<meta property="og:url" content="https://bigbreath.co/services/group-classes/">
<link rel="canonical" href="https://bigbreath.co/services/group-classes/">
<title>Group Classes | Big Breath Yoga &amp; Wellness</title>
<link rel="icon" type="image/svg+xml" href="/assets/svg/favicon.svg">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
@@ -21,10 +21,10 @@
<header class="bb-header" role="banner">
<div class="header-inner">
<a href="/" class="bb-logo" aria-label="Big Breathe Yoga, Home">
<a href="/" class="bb-logo" aria-label="Big Breath Yoga, Home">
<span class="bb-logo-mark" aria-hidden="true">BB</span>
<span class="bb-logo-text">
<span class="bb-logo-name">Big Breathe</span>
<span class="bb-logo-name">Big Breath</span>
<span class="bb-logo-tagline">Yoga &amp; Wellness</span>
</span>
</a>
@@ -119,7 +119,7 @@
<div class="footer-top">
<div class="footer-brand">
<div class="bb-logo-text">
<span class="bb-logo-name">Big Breathe</span>
<span class="bb-logo-name">Big Breath</span>
<span class="bb-logo-tagline">Yoga &amp; Wellness</span>
</div>
<p class="footer-tagline"><!-- DRAFT NEEDED --></p>
@@ -151,7 +151,7 @@
</div>
</div>
<div class="footer-bottom">
<p class="footer-copy">&copy; 2025 Big Breathe. All rights reserved.</p>
<p class="footer-copy">&copy; 2025 Big Breath. All rights reserved.</p>
<nav class="footer-legal" aria-label="Legal links">
<a href="/privacy-policy/">Privacy</a>
<a href="/terms-of-service/">Terms</a>
+8 -8
View File
@@ -5,11 +5,11 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="<!-- DRAFT NEEDED: services page meta description -->">
<meta name="robots" content="index, follow">
<meta property="og:title" content="Services | Big Breathe Yoga &amp; Wellness">
<meta property="og:title" content="Services | Big Breath Yoga &amp; Wellness">
<meta property="og:type" content="website">
<meta property="og:url" content="https://bigbreathe.com/services/">
<link rel="canonical" href="https://bigbreathe.com/services/">
<title>Services | Big Breathe Yoga &amp; Wellness</title>
<meta property="og:url" content="https://bigbreath.co/services/">
<link rel="canonical" href="https://bigbreath.co/services/">
<title>Services | Big Breath Yoga &amp; Wellness</title>
<link rel="icon" type="image/svg+xml" href="/assets/svg/favicon.svg">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
@@ -21,10 +21,10 @@
<header class="bb-header" role="banner">
<div class="header-inner">
<a href="/" class="bb-logo" aria-label="Big Breathe Yoga, Home">
<a href="/" class="bb-logo" aria-label="Big Breath Yoga, Home">
<span class="bb-logo-mark" aria-hidden="true">BB</span>
<span class="bb-logo-text">
<span class="bb-logo-name">Big Breathe</span>
<span class="bb-logo-name">Big Breath</span>
<span class="bb-logo-tagline">Yoga &amp; Wellness</span>
</span>
</a>
@@ -158,7 +158,7 @@
<div class="footer-top">
<div class="footer-brand">
<div class="bb-logo-text">
<span class="bb-logo-name">Big Breathe</span>
<span class="bb-logo-name">Big Breath</span>
<span class="bb-logo-tagline">Yoga &amp; Wellness</span>
</div>
<p class="footer-tagline"><!-- DRAFT NEEDED --></p>
@@ -190,7 +190,7 @@
</div>
</div>
<div class="footer-bottom">
<p class="footer-copy">&copy; 2025 Big Breathe. All rights reserved.</p>
<p class="footer-copy">&copy; 2025 Big Breath. All rights reserved.</p>
<nav class="footer-legal" aria-label="Legal links">
<a href="/privacy-policy/">Privacy</a>
<a href="/terms-of-service/">Terms</a>
@@ -5,11 +5,11 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="<!-- DRAFT NEEDED: meditation &amp; breathwork meta description -->">
<meta name="robots" content="index, follow">
<meta property="og:title" content="Meditation &amp; Breathwork | Big Breathe Yoga &amp; Wellness">
<meta property="og:title" content="Meditation &amp; Breathwork | Big Breath Yoga &amp; Wellness">
<meta property="og:type" content="website">
<meta property="og:url" content="https://bigbreathe.com/services/meditation-breathwork/">
<link rel="canonical" href="https://bigbreathe.com/services/meditation-breathwork/">
<title>Meditation &amp; Breathwork | Big Breathe Yoga &amp; Wellness</title>
<meta property="og:url" content="https://bigbreath.co/services/meditation-breathwork/">
<link rel="canonical" href="https://bigbreath.co/services/meditation-breathwork/">
<title>Meditation &amp; Breathwork | Big Breath Yoga &amp; Wellness</title>
<link rel="icon" type="image/svg+xml" href="/assets/svg/favicon.svg">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
@@ -21,10 +21,10 @@
<header class="bb-header" role="banner">
<div class="header-inner">
<a href="/" class="bb-logo" aria-label="Big Breathe Yoga, Home">
<a href="/" class="bb-logo" aria-label="Big Breath Yoga, Home">
<span class="bb-logo-mark" aria-hidden="true">BB</span>
<span class="bb-logo-text">
<span class="bb-logo-name">Big Breathe</span>
<span class="bb-logo-name">Big Breath</span>
<span class="bb-logo-tagline">Yoga &amp; Wellness</span>
</span>
</a>
@@ -118,7 +118,7 @@
<div class="footer-top">
<div class="footer-brand">
<div class="bb-logo-text">
<span class="bb-logo-name">Big Breathe</span>
<span class="bb-logo-name">Big Breath</span>
<span class="bb-logo-tagline">Yoga &amp; Wellness</span>
</div>
<p class="footer-tagline"><!-- DRAFT NEEDED --></p>
@@ -150,7 +150,7 @@
</div>
</div>
<div class="footer-bottom">
<p class="footer-copy">&copy; 2025 Big Breathe. All rights reserved.</p>
<p class="footer-copy">&copy; 2025 Big Breath. All rights reserved.</p>
<nav class="footer-legal" aria-label="Legal links">
<a href="/privacy-policy/">Privacy</a>
<a href="/terms-of-service/">Terms</a>
+8 -8
View File
@@ -5,11 +5,11 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="<!-- DRAFT NEEDED: private sessions meta description -->">
<meta name="robots" content="index, follow">
<meta property="og:title" content="Private Sessions | Big Breathe Yoga &amp; Wellness">
<meta property="og:title" content="Private Sessions | Big Breath Yoga &amp; Wellness">
<meta property="og:type" content="website">
<meta property="og:url" content="https://bigbreathe.com/services/private-sessions/">
<link rel="canonical" href="https://bigbreathe.com/services/private-sessions/">
<title>Private Sessions | Big Breathe Yoga &amp; Wellness</title>
<meta property="og:url" content="https://bigbreath.co/services/private-sessions/">
<link rel="canonical" href="https://bigbreath.co/services/private-sessions/">
<title>Private Sessions | Big Breath Yoga &amp; Wellness</title>
<link rel="icon" type="image/svg+xml" href="/assets/svg/favicon.svg">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
@@ -21,10 +21,10 @@
<header class="bb-header" role="banner">
<div class="header-inner">
<a href="/" class="bb-logo" aria-label="Big Breathe Yoga, Home">
<a href="/" class="bb-logo" aria-label="Big Breath Yoga, Home">
<span class="bb-logo-mark" aria-hidden="true">BB</span>
<span class="bb-logo-text">
<span class="bb-logo-name">Big Breathe</span>
<span class="bb-logo-name">Big Breath</span>
<span class="bb-logo-tagline">Yoga &amp; Wellness</span>
</span>
</a>
@@ -119,7 +119,7 @@
<div class="footer-top">
<div class="footer-brand">
<div class="bb-logo-text">
<span class="bb-logo-name">Big Breathe</span>
<span class="bb-logo-name">Big Breath</span>
<span class="bb-logo-tagline">Yoga &amp; Wellness</span>
</div>
<p class="footer-tagline"><!-- DRAFT NEEDED --></p>
@@ -151,7 +151,7 @@
</div>
</div>
<div class="footer-bottom">
<p class="footer-copy">&copy; 2025 Big Breathe. All rights reserved.</p>
<p class="footer-copy">&copy; 2025 Big Breath. All rights reserved.</p>
<nav class="footer-legal" aria-label="Legal links">
<a href="/privacy-policy/">Privacy</a>
<a href="/terms-of-service/">Terms</a>
+5 -5
View File
@@ -4,8 +4,8 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="robots" content="noindex, follow">
<link rel="canonical" href="https://bigbreathe.com/terms-of-service/">
<title>Terms of Service | Big Breathe Yoga &amp; Wellness</title>
<link rel="canonical" href="https://bigbreath.co/terms-of-service/">
<title>Terms of Service | Big Breath Yoga &amp; Wellness</title>
<link rel="icon" type="image/svg+xml" href="/assets/svg/favicon.svg">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
@@ -15,10 +15,10 @@
<body>
<header class="bb-header" role="banner">
<div class="header-inner">
<a href="/" class="bb-logo" aria-label="Big Breathe Yoga, Home">
<a href="/" class="bb-logo" aria-label="Big Breath Yoga, Home">
<span class="bb-logo-mark" aria-hidden="true">BB</span>
<span class="bb-logo-text">
<span class="bb-logo-name">Big Breathe</span>
<span class="bb-logo-name">Big Breath</span>
<span class="bb-logo-tagline">Yoga &amp; Wellness</span>
</span>
</a>
@@ -42,7 +42,7 @@
<footer class="bb-footer" role="contentinfo">
<div class="container">
<div class="footer-bottom" style="padding-top:0;border-top:none;">
<p class="footer-copy">&copy; 2025 Big Breathe. All rights reserved.</p>
<p class="footer-copy">&copy; 2025 Big Breath. All rights reserved.</p>
<nav class="footer-legal" aria-label="Legal links">
<a href="/privacy-policy/">Privacy</a>
<a href="/terms-of-service/">Terms</a>