From ee59d0088e025b5e5683e297faecbdbfc47cb54b Mon Sep 17 00:00:00 2001 From: Avery Felts Date: Tue, 27 Jan 2026 09:16:03 -0700 Subject: [PATCH] fix: SmokingAidsPage missing header and navigation --- src/app/smoking-aids/page.tsx | 187 ++------------------------ src/components/SmokingAidsContent.tsx | 182 +++++++++++++++++++++++++ 2 files changed, 194 insertions(+), 175 deletions(-) create mode 100644 src/components/SmokingAidsContent.tsx diff --git a/src/app/smoking-aids/page.tsx b/src/app/smoking-aids/page.tsx index e32607b..538da0a 100644 --- a/src/app/smoking-aids/page.tsx +++ b/src/app/smoking-aids/page.tsx @@ -1,182 +1,19 @@ -'use client'; +import { getUser } from '@/lib/session'; +import { redirect } from 'next/navigation'; +import { UserHeader } from '@/components/UserHeader'; +import { SmokingAidsContent } from '@/components/SmokingAidsContent'; -import { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle } from '@/components/ui/card'; -import { Button } from '@/components/ui/button'; -import { ExternalLink, Sparkles, Wind, Pill, Coffee, Star, Quote } from 'lucide-react'; -import Image from 'next/image'; -import { useTheme } from '@/lib/theme-context'; -import { Badge } from '@/components/ui/badge'; +export default async function SmokingAidsPage() { + const user = await getUser(); -const smokingAids = [ - { - id: 'breathing-necklace', - title: '528Hz Anxiety Relief Breathing Necklace', - category: 'Mindfulness', - rating: 4.6, - description: 'A discreet mindfulness tool designed to help you manage cravings and anxiety through deep breathing exercises. The 528Hz frequency is associated with relaxation and healing.', - benefit: 'Helps replace the physical hand-to-mouth habit while promoting calming deep breaths during stressful moments or cravings.', - image: 'https://m.media-amazon.com/images/I/51VJ5HANaRL._AC_SY695_.jpg', - url: 'https://amzn.to/3Z2BuCk', - icon: Wind, - color: 'text-sky-400', - bgColor: 'bg-sky-500/10', - borderColor: 'border-sky-500/20', - buttonColor: 'bg-sky-500 hover:bg-sky-600', - }, - { - id: 'nicotine-lozenge', - title: 'Nicotine Polacrilex Lozenge (2mg)', - category: 'NRT', - rating: 4.5, - description: 'Effective nicotine replacement therapy to help control withdrawal symptoms. These lozenges provide a controlled dose of nicotine to ease you off cigarettes.', - benefit: 'Reduces physical withdrawal symptoms like irritability and intense cravings, making the transition to being smoke-free smoother.', - image: 'https://m.media-amazon.com/images/I/61h+Z88Ev9S._AC_SX679_.jpg', - url: 'https://amzn.to/4rfQl8s', - icon: Pill, - color: 'text-red-400', - bgColor: 'bg-red-500/10', - borderColor: 'border-red-500/20', - buttonColor: 'bg-red-500 hover:bg-red-600', - }, - { - id: 'recovery-complex', - title: 'QuitK Recovery Complex', - category: 'Supplement', - rating: 4.4, - description: 'A comprehensive supplement blend containing Magnesium, Ashwagandha, and GABA designed specifically to support your body during the detox process.', - benefit: 'Supports mood stability and relaxation while your body clears out toxins, helping to minimize the mental strain of quitting.', - image: 'https://m.media-amazon.com/images/I/51HWgmCW1-L._AC_SX679_.jpg', - url: 'https://amzn.to/3NFU1Sx', - icon: Sparkles, - color: 'text-purple-400', - bgColor: 'bg-purple-500/10', - borderColor: 'border-purple-500/20', - buttonColor: 'bg-purple-500 hover:bg-purple-600', - }, - { - id: 'mullein-tea', - title: 'Tarbust Mullein Tea for Lung Detox', - category: 'Herbal', - rating: 4.7, - description: 'Organic herbal tea formulated with Mullein leaf, traditionally used to support respiratory health and clear congestion.', - benefit: 'Aids in clearing mucus and toxins from your lungs, supporting your body\'s natural healing process as you recover from smoking.', - image: 'https://m.media-amazon.com/images/I/81NU8bv72uL._SX679_PIbundle-20,TopRight,0,0_SX679SY693SH20_.jpg', - url: 'https://amzn.to/3LzNpEM', - icon: Coffee, - color: 'text-green-400', - bgColor: 'bg-green-500/10', - borderColor: 'border-green-500/20', - buttonColor: 'bg-green-500 hover:bg-green-600', - }, -]; - -export default function SmokingAidsPage() { - const { theme } = useTheme(); + if (!user) { + redirect('/login'); + } return ( -
- {/* Hero Section */} -
-
- -

- Tools for Your Freedom -

-

- Transform your journey with tools designed to support your physical recovery and mental resilience. You don't have to do this alone. -

-
- - {/* Grid Section */} -
- {smokingAids.map((item, index) => ( -
- - {/* Full card gradient overlay on hover */} -
- -
- {/* Image Section - Top on mobile, Left on desktop */} -
-
-
- {item.title} -
-
- - {item.category} - -
- - {/* Content Section */} -
-
-
-

- {item.title} -

-
- {[...Array(5)].map((_, i) => ( - - ))} - ({item.rating}) -
-
-
- -
-
- -

- {item.description} -

- -
-
- -

- {item.benefit} -

-
-
- - -
-
- -
- ))} -
- - {/* Trust/Disclaimer Section */} -
-

- Transparency Note - As an Amazon Associate, we earn from qualifying purchases. This helps support the development of QuitTraq at no extra cost to you. - Always consult with a healthcare professional before starting any new supplement or nicotine replacement therapy. -

-
+
+ +
); } diff --git a/src/components/SmokingAidsContent.tsx b/src/components/SmokingAidsContent.tsx new file mode 100644 index 0000000..3c50a88 --- /dev/null +++ b/src/components/SmokingAidsContent.tsx @@ -0,0 +1,182 @@ +'use client'; + +import { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle } from '@/components/ui/card'; +import { Button } from '@/components/ui/button'; +import { ExternalLink, Sparkles, Wind, Pill, Coffee, Star, Quote } from 'lucide-react'; +import Image from 'next/image'; +import { useTheme } from '@/lib/theme-context'; +import { Badge } from '@/components/ui/badge'; + +const smokingAids = [ + { + id: 'breathing-necklace', + title: '528Hz Anxiety Relief Breathing Necklace', + category: 'Mindfulness', + rating: 4.6, + description: 'A discreet mindfulness tool designed to help you manage cravings and anxiety through deep breathing exercises. The 528Hz frequency is associated with relaxation and healing.', + benefit: 'Helps replace the physical hand-to-mouth habit while promoting calming deep breaths during stressful moments or cravings.', + image: 'https://m.media-amazon.com/images/I/51VJ5HANaRL._AC_SY695_.jpg', + url: 'https://amzn.to/3Z2BuCk', + icon: Wind, + color: 'text-sky-400', + bgColor: 'bg-sky-500/10', + borderColor: 'border-sky-500/20', + buttonColor: 'bg-sky-500 hover:bg-sky-600', + }, + { + id: 'nicotine-lozenge', + title: 'Nicotine Polacrilex Lozenge (2mg)', + category: 'NRT', + rating: 4.5, + description: 'Effective nicotine replacement therapy to help control withdrawal symptoms. These lozenges provide a controlled dose of nicotine to ease you off cigarettes.', + benefit: 'Reduces physical withdrawal symptoms like irritability and intense cravings, making the transition to being smoke-free smoother.', + image: 'https://m.media-amazon.com/images/I/61h+Z88Ev9S._AC_SX679_.jpg', + url: 'https://amzn.to/4rfQl8s', + icon: Pill, + color: 'text-red-400', + bgColor: 'bg-red-500/10', + borderColor: 'border-red-500/20', + buttonColor: 'bg-red-500 hover:bg-red-600', + }, + { + id: 'recovery-complex', + title: 'QuitK Recovery Complex', + category: 'Supplement', + rating: 4.4, + description: 'A comprehensive supplement blend containing Magnesium, Ashwagandha, and GABA designed specifically to support your body during the detox process.', + benefit: 'Supports mood stability and relaxation while your body clears out toxins, helping to minimize the mental strain of quitting.', + image: 'https://m.media-amazon.com/images/I/51HWgmCW1-L._AC_SX679_.jpg', + url: 'https://amzn.to/3NFU1Sx', + icon: Sparkles, + color: 'text-purple-400', + bgColor: 'bg-purple-500/10', + borderColor: 'border-purple-500/20', + buttonColor: 'bg-purple-500 hover:bg-purple-600', + }, + { + id: 'mullein-tea', + title: 'Tarbust Mullein Tea for Lung Detox', + category: 'Herbal', + rating: 4.7, + description: 'Organic herbal tea formulated with Mullein leaf, traditionally used to support respiratory health and clear congestion.', + benefit: 'Aids in clearing mucus and toxins from your lungs, supporting your body\'s natural healing process as you recover from smoking.', + image: 'https://m.media-amazon.com/images/I/81NU8bv72uL._SX679_PIbundle-20,TopRight,0,0_SX679SY693SH20_.jpg', + url: 'https://amzn.to/3LzNpEM', + icon: Coffee, + color: 'text-green-400', + bgColor: 'bg-green-500/10', + borderColor: 'border-green-500/20', + buttonColor: 'bg-green-500 hover:bg-green-600', + }, +]; + +export function SmokingAidsContent() { + const { theme } = useTheme(); + + return ( +
+ {/* Hero Section */} +
+
+ +

+ Tools for Your Freedom +

+

+ Transform your journey with tools designed to support your physical recovery and mental resilience. You don't have to do this alone. +

+
+ + {/* Grid Section */} +
+ {smokingAids.map((item, index) => ( +
+ + {/* Full card gradient overlay on hover */} +
+ +
+ {/* Image Section - Top on mobile, Left on desktop */} +
+
+
+ {item.title} +
+
+ + {item.category} + +
+ + {/* Content Section */} +
+
+
+

+ {item.title} +

+
+ {[...Array(5)].map((_, i) => ( + + ))} + ({item.rating}) +
+
+
+ +
+
+ +

+ {item.description} +

+ +
+
+ +

+ {item.benefit} +

+
+
+ + +
+
+ +
+ ))} +
+ + {/* Trust/Disclaimer Section */} +
+

+ Transparency Note + As an Amazon Associate, we earn from qualifying purchases. This helps support the development of QuitTraq at no extra cost to you. + Always consult with a healthcare professional before starting any new supplement or nicotine replacement therapy. +

+
+
+ ); +}