diff --git a/assets/images/shop-cap.jpg b/assets/images/shop-cap.jpg new file mode 100644 index 0000000..e10b35d Binary files /dev/null and b/assets/images/shop-cap.jpg differ diff --git a/assets/images/shop-koozie.jpg b/assets/images/shop-koozie.jpg new file mode 100644 index 0000000..a0a6b85 Binary files /dev/null and b/assets/images/shop-koozie.jpg differ diff --git a/assets/images/shop-t-shirt.jpg b/assets/images/shop-t-shirt.jpg new file mode 100644 index 0000000..1ff85b4 Binary files /dev/null and b/assets/images/shop-t-shirt.jpg differ diff --git a/homepage_content.txt b/homepage_content.txt deleted file mode 100644 index 9f2a1a0..0000000 --- a/homepage_content.txt +++ /dev/null @@ -1,134 +0,0 @@ - -
-

REAL BRO BLOG

- - - -

Beer, Parties, and the Lifestyle.

-
- - - - - - - -
- -

THE MANIFESTO

- - - -

Welcome to Real Bro Blog — where cold ones are sacred, beats are curated, and good times are engineered, not wasted. This is about beer, parties, and the lifestyle that keeps the crew tight: throw epic hangs, master the pour, laugh loud, leave the place better than you found it. Be bold, be chill, be responsible — hydrate, watch out for your people, know your limits (and only drink if you’re of legal age). Live loud, host legendary, drink smart, and always have each other’s backs.

- -
- - - - - - - -

BRO TIPS OF THE WEEK

- - - -
- -
-
- - -

Cooler engineering, bro: pre-chill your beer, freeze big water jugs so the ice won’t dilute the brew, rotate stock so the coldest cans are on top — and stash a water section so the squad stays hydrated between rounds.

-
- - - -
-
- - -

Playlist + pace: build 3-hour blocks that start chill and ramp up, queue up a backup speaker/phone, and read the room — keep late-night volume neighbor-friendly so the party doesn’t get cut off.

-
- - - -
-
- - -

Host like a legend: set out trash & recycle, have solid non-alc options, lock in rides or a designated-driver plan, and be the bro who checks on people — party hard, but keep your crew safe.

-
- -
- - - - - - - -

LATEST BRO STORIES

- - - -
- - - - -
- - - - - - - -

MIGHTY BEER REVIEWS

- - - -
- - - - -
- - - - - - - -
- -

BRO OF THE MONTH

- - - -
- -
-
Legendary Bro
-
- - - -
-

Meet "Big Dave" Miller.

- - - -

Big Dave isn't just a bro; he's a legend. Last weekend, Dave managed to grill 50 burgers while simultaneously fixing a neighbor's lawnmower and maintaining a 3-0 winning streak in cornhole. His philosophy? "Keep the coals hot and the beer cold, and the rest will figure itself out."

- - - -

Dave, we salute you. Enjoy the golden spatula, king.

-
- -
- -
- diff --git a/wp-content/mu-plugins/bro-styles.php b/wp-content/mu-plugins/bro-styles.php index 7226929..95d84cf 100644 --- a/wp-content/mu-plugins/bro-styles.php +++ b/wp-content/mu-plugins/bro-styles.php @@ -9,9 +9,20 @@ add_action('wp_head', function() { } body { background-color: var(--bro-dark) !important; color: #FFFFFF !important; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; } .wp-block-post-title a, h1, h2, h3 { color: var(--bro-amber) !important; font-weight: 900 !important; text-transform: uppercase; letter-spacing: -0.02em; } - .wp-block-navigation a { color: #FFFFFF !important; font-weight: bold; text-transform: uppercase; font-size: 0.9rem; } + .wp-block-navigation a { color: #FFFFFF !important; font-weight: bold; text-transform: uppercase; font-size: 0.9rem; transition: color 0.3s ease; } .wp-block-navigation a:hover { color: var(--bro-amber) !important; } - .wp-block-button__link { background-color: var(--bro-amber) !important; color: #000 !important; border-radius: 8px !important; font-weight: 800 !important; text-transform: uppercase; border: none !important; } + .wp-block-navigation .wp-block-navigation-item.has-child { position: relative; } + .wp-block-navigation .wp-block-navigation__submenu-container { + background-color: #111 !important; + border: 1px solid var(--bro-amber); + padding: 10px !important; + border-radius: 8px; + } + .wp-block-navigation .wp-block-navigation__submenu-container a { + font-size: 0.8rem !important; + } + .wp-block-button__link { background-color: var(--bro-amber) !important; color: #000 !important; border-radius: 8px !important; font-weight: 800 !important; text-transform: uppercase; border: none !important; transition: transform 0.2s ease, box-shadow 0.2s ease; } + .wp-block-button__link:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(255, 191, 0, 0.4); } /* Glassmorphism effect for groups */ .has-background.has-black-background-color { diff --git a/wp-content/plugins/bro-beer-reviews/bro-beer-reviews.php b/wp-content/plugins/bro-beer-reviews/bro-beer-reviews.php index 4f6277f..bd46b27 100644 --- a/wp-content/plugins/bro-beer-reviews/bro-beer-reviews.php +++ b/wp-content/plugins/bro-beer-reviews/bro-beer-reviews.php @@ -29,7 +29,7 @@ function bro_register_beer_review_cpt() { 'has_archive' => true, 'menu_icon' => 'dashicons-beer', 'supports' => array( 'title', 'editor', 'thumbnail', 'excerpt' ), - 'rewrite' => array( 'slug' => 'beer-reviews' ), + 'rewrite' => array( 'slug' => 'beer-review' ), 'show_in_rest' => true, // Enable Gutenberg ); @@ -97,7 +97,8 @@ function bro_display_beer_rating( $content ) { $rating_html = '
'; $rating_html .= 'Bro Rating:
' . $stars; $rating_html .= '
'; - return $rating_html . $content; + $footer_link = '
← Back to All Reviews
'; + return $rating_html . $content . $footer_link; } } return $content; diff --git a/wp-content/plugins/bro-hangs/bro-hangs.php b/wp-content/plugins/bro-hangs/bro-hangs.php index bc17923..7006b9f 100644 --- a/wp-content/plugins/bro-hangs/bro-hangs.php +++ b/wp-content/plugins/bro-hangs/bro-hangs.php @@ -149,3 +149,14 @@ function bro_display_map() { '; + $footer_link .= '← Back to Party Map'; + $footer_link .= ''; + return $content . $footer_link; + } + return $content; +}); diff --git a/wp-content/plugins/bro-quiz/bro-quiz.php b/wp-content/plugins/bro-quiz/bro-quiz.php index 8d64d68..5ade02f 100644 --- a/wp-content/plugins/bro-quiz/bro-quiz.php +++ b/wp-content/plugins/bro-quiz/bro-quiz.php @@ -26,7 +26,10 @@ function bro_render_quiz() {

Your Result:

- +
+ + Back to Home +