diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 1163046..7f918d7 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -13,7 +13,7 @@ export default function AboutPage() { const navItems = [ { name: "Home", id: "/" }, { name: "Blog", id: "/blog" }, - { name: "Supplement Reviews", id: "/reviews" }, + { name: "Supplement Reviews", id: "/supplement-reviews" }, { name: "Gut Health", id: "/gut-health" }, { name: "About", id: "/about" }, { name: "Resources", id: "/resources" }, @@ -21,8 +21,7 @@ export default function AboutPage() { const footerColumns = [ { - title: "Quick Links", - items: [ + title: "Quick Links", items: [ { label: "Home", href: "/" }, { label: "Blog", href: "/blog" }, { label: "Supplement Reviews", href: "/supplement-reviews" }, @@ -30,8 +29,7 @@ export default function AboutPage() { ], }, { - title: "Categories", - items: [ + title: "Categories", items: [ { label: "Gut Health", href: "/gut-health" }, { label: "Supplements", href: "/supplement-reviews" }, { label: "Wellness Routines", href: "/blog" }, @@ -39,8 +37,7 @@ export default function AboutPage() { ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { label: "Affiliate Disclosure", href: "/affiliate-disclosure" }, { label: "Privacy Policy", href: "/privacy-policy" }, { label: "Terms of Service", href: "#" }, @@ -86,12 +83,7 @@ export default function AboutPage() { title="Our Core Values" description="Everything we do is guided by these principles" names={[ - "๐Ÿ”ฌ Scientific Rigor", - "๐Ÿ’ฏ Complete Honesty", - "๐Ÿงช Independent Testing", - "๐Ÿ“š Evidence-Based", - "๐Ÿค Community Trust", - ]} + "๐Ÿ”ฌ Scientific Rigor", "๐Ÿ’ฏ Complete Honesty", "๐Ÿงช Independent Testing", "๐Ÿ“š Evidence-Based", "๐Ÿค Community Trust"]} textboxLayout="default" useInvertedBackground={false} showCard={true} @@ -104,7 +96,7 @@ export default function AboutPage() { title="Have Questions? We'd Love to Hear From You" description="Whether you have research suggestions, product inquiries, or partnership opportunities, reach out to our team directly. We read every message." tagIcon={Mail} - background={{ variant: "circleGradient" }} + background={{ variant: "radial-gradient" }} useInvertedBackground={false} inputPlaceholder="Enter your email" buttonText="Send Message" diff --git a/src/app/blog/[slug]/page.tsx b/src/app/blog/[slug]/page.tsx index 07ed2d5..4229994 100644 --- a/src/app/blog/[slug]/page.tsx +++ b/src/app/blog/[slug]/page.tsx @@ -2,12 +2,11 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; -import HeroBillboardDashboard from "@/components/sections/hero/HeroBillboardDashboard"; -import FeatureCardTwentySix from "@/components/sections/feature/FeatureCardTwentySix"; import BlogCardThree from "@/components/sections/blog/BlogCardThree"; +import TextAbout from "@/components/sections/about/TextAbout"; import ContactCenter from "@/components/sections/contact/ContactCenter"; import FooterBaseCard from "@/components/sections/footer/FooterBaseCard"; -import { Sparkles, Leaf, Home, Book, Settings, CheckCircle, Award, ArrowRight, Mail } from "lucide-react"; +import { Mail } from "lucide-react"; export default function BlogPostPage() { const navItems = [ @@ -19,107 +18,6 @@ export default function BlogPostPage() { { name: "Resources", id: "/resources" }, ]; - const relatedBlogs = [ - { - id: "1", - category: "Gut Health", - title: "The Complete Guide to Probiotics: What Science Really Says", - excerpt: "A deep dive into probiotics, their mechanisms, and which strains actually work for your microbiome.", - imageSrc: "http://img.b2bpic.net/free-photo/high-angle-pregnant-woman-with-laptop-coffee-mug-working-from-home_23-2148765085.jpg?_wi=3", - imageAlt: "Probiotics guide", - authorName: "Dr. Sarah Mitchell", - authorAvatar: "http://img.b2bpic.net/free-photo/family-doctor-doctor-s-office_23-2148168436.jpg", - date: "Jan 15, 2025", - }, - { - id: "2", - category: "Supplements", - title: "Supplement Quality: How We Test & What We Found", - excerpt: "Behind the scenes look at how we evaluate supplement efficacy and purity through third-party testing.", - imageSrc: "http://img.b2bpic.net/free-vector/flat-design-science-research-instagram-posts_23-2150815071.jpg?_wi=3", - imageAlt: "Supplement testing", - authorName: "Dr. James Chen", - authorAvatar: "http://img.b2bpic.net/free-photo/family-doctor-doctor-s-office_23-2148168436.jpg", - date: "Jan 10, 2025", - }, - { - id: "3", - category: "Wellness", - title: "The Science-Backed Morning Routine for Digestive Health", - excerpt: "Evidence-based morning habits that support your gut microbiome and overall wellness throughout the day.", - imageSrc: "http://img.b2bpic.net/free-psd/olympics-sports-school-template-design_23-2151464488.jpg?_wi=3", - imageAlt: "Wellness routine", - authorName: "Emily Rodriguez", - authorAvatar: "http://img.b2bpic.net/free-photo/family-doctor-doctor-s-office_23-2148168436.jpg", - date: "Jan 8, 2025", - }, - ]; - - const categoryFeatures = [ - { - title: "Gut Health", - description: "Science-backed digestive wellness guides", - imageSrc: "http://img.b2bpic.net/free-vector/explanatory-diabetes-infographic-with-flat-design_23-2147879094.jpg?_wi=2", - imageAlt: "Gut Health Category", - buttonIcon: ArrowRight, - buttonHref: "/gut-health", - }, - { - title: "Supplements", - description: "Tested products and honest reviews", - imageSrc: "http://img.b2bpic.net/free-photo/high-angle-pills-container-arrangement_23-2149870459.jpg?_wi=2", - imageAlt: "Supplements Category", - buttonIcon: ArrowRight, - buttonHref: "/supplement-reviews", - }, - { - title: "Wellness Routines", - description: "Daily practices for optimal health", - imageSrc: "http://img.b2bpic.net/free-photo/happy-sportswoman-using-mobile-phone-while-eating-salad-break-home_637285-5770.jpg?_wi=2", - imageAlt: "Wellness Routines Category", - buttonIcon: ArrowRight, - buttonHref: "/blog", - }, - { - title: "Product Reviews", - description: "Detailed analysis and recommendations", - imageSrc: "http://img.b2bpic.net/free-photo/feedback-results-information-satisfeaction_53876-121339.jpg?_wi=2", - imageAlt: "Product Reviews Category", - buttonIcon: ArrowRight, - buttonHref: "/supplement-reviews", - }, - ]; - - const footerColumns = [ - { - title: "Quick Links", - items: [ - { label: "Home", href: "/" }, - { label: "Blog", href: "/blog" }, - { label: "Supplement Reviews", href: "/supplement-reviews" }, - { label: "About", href: "/about" }, - ], - }, - { - title: "Categories", - items: [ - { label: "Gut Health", href: "/gut-health" }, - { label: "Supplements", href: "/supplement-reviews" }, - { label: "Wellness Routines", href: "/blog" }, - { label: "Resources", href: "/resources" }, - ], - }, - { - title: "Legal", - items: [ - { label: "Affiliate Disclosure", href: "/affiliate-disclosure" }, - { label: "Privacy Policy", href: "/privacy-policy" }, - { label: "Terms of Service", href: "#" }, - { label: "Contact", href: "#email-signup" }, - ], - }, - ]; - return ( + {/* Navbar */} -
- -
- -
- -
- -
+ {/* Related Blog Posts */} + + {/* Email Signup Section */}
+ {/* Footer */} diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index e1a313f..df926ae 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -47,38 +47,11 @@ export default function BlogPage() { tag="Featured" blogs={[ { - id: "1", - category: "Gut Health", - title: "The Complete Guide to Probiotics: What Science Really Says", - excerpt: "A deep dive into probiotics, their mechanisms, and which strains actually work for your microbiome.", - imageSrc: "http://img.b2bpic.net/free-photo/high-angle-pregnant-woman-with-laptop-coffee-mug-working-from-home_23-2148765085.jpg?_wi=2", - imageAlt: "Probiotics guide", - authorName: "Dr. Sarah Mitchell", - authorAvatar: "http://img.b2bpic.net/free-photo/family-doctor-doctor-s-office_23-2148168436.jpg", - date: "Jan 15, 2025", - }, + id: "1", category: "Gut Health", title: "The Complete Guide to Probiotics: What Science Really Says", excerpt: "A deep dive into probiotics, their mechanisms, and which strains actually work for your microbiome.", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-pregnant-woman-with-laptop-coffee-mug-working-from-home_23-2148765085.jpg", imageAlt: "Probiotics guide", authorName: "Dr. Sarah Mitchell", authorAvatar: "http://img.b2bpic.net/free-photo/family-doctor-doctor-s-office_23-2148168436.jpg", date: "Jan 15, 2025"}, { - id: "2", - category: "Supplements", - title: "Supplement Quality: How We Test & What We Found", - excerpt: "Behind the scenes look at how we evaluate supplement efficacy and purity through third-party testing.", - imageSrc: "http://img.b2bpic.net/free-vector/flat-design-science-research-instagram-posts_23-2150815071.jpg?_wi=2", - imageAlt: "Supplement testing", - authorName: "Dr. James Chen", - authorAvatar: "http://img.b2bpic.net/free-photo/family-doctor-doctor-s-office_23-2148168436.jpg", - date: "Jan 10, 2025", - }, + id: "2", category: "Supplements", title: "Supplement Quality: How We Test & What We Found", excerpt: "Behind the scenes look at how we evaluate supplement efficacy and purity through third-party testing.", imageSrc: "http://img.b2bpic.net/free-vector/flat-design-science-research-instagram-posts_23-2150815071.jpg", imageAlt: "Supplement testing", authorName: "Dr. James Chen", authorAvatar: "http://img.b2bpic.net/free-photo/family-doctor-doctor-s-office_23-2148168436.jpg", date: "Jan 10, 2025"}, { - id: "3", - category: "Wellness", - title: "The Science-Backed Morning Routine for Digestive Health", - excerpt: "Evidence-based morning habits that support your gut microbiome and overall wellness throughout the day.", - imageSrc: "http://img.b2bpic.net/free-psd/olympics-sports-school-template-design_23-2151464488.jpg?_wi=2", - imageAlt: "Wellness routine", - authorName: "Emily Rodriguez", - authorAvatar: "http://img.b2bpic.net/free-photo/family-doctor-doctor-s-office_23-2148168436.jpg", - date: "Jan 8, 2025", - }, + id: "3", category: "Wellness", title: "The Science-Backed Morning Routine for Digestive Health", excerpt: "Evidence-based morning habits that support your gut microbiome and overall wellness throughout the day.", imageSrc: "http://img.b2bpic.net/free-psd/olympics-sports-school-template-design_23-2151464488.jpg", imageAlt: "Wellness routine", authorName: "Emily Rodriguez", authorAvatar: "http://img.b2bpic.net/free-photo/family-doctor-doctor-s-office_23-2148168436.jpg", date: "Jan 8, 2025"}, ]} textboxLayout="default" useInvertedBackground={false} @@ -93,9 +66,7 @@ export default function BlogPage() { title="Deep-Dive Research Into Evidence-Based Wellness" buttons={[ { - text: "Subscribe for Updates โ†’", - href: "#email-signup", - }, + text: "Subscribe for Updates โ†’", href: "#email-signup"}, ]} useInvertedBackground={false} /> @@ -108,7 +79,7 @@ export default function BlogPage() { title="Get Weekly Wellness Insights" description="Stay updated with our latest research, supplement reviews, and expert wellness tips delivered to your inbox every week." tagIcon={Mail} - background={{ variant: "circleGradient" }} + background={{ variant: "radial-gradient" }} useInvertedBackground={false} inputPlaceholder="Enter your email" buttonText="Subscribe Now" @@ -122,8 +93,7 @@ export default function BlogPage() { logoText="The Wellness Formula" columns={[ { - title: "Quick Links", - items: [ + title: "Quick Links", items: [ { label: "Home", href: "/" }, { label: "Blog", href: "/blog" }, { label: "Supplement Reviews", href: "/supplement-reviews" }, @@ -131,8 +101,7 @@ export default function BlogPage() { ], }, { - title: "Categories", - items: [ + title: "Categories", items: [ { label: "Gut Health", href: "/gut-health" }, { label: "Supplements", href: "/supplement-reviews" }, { label: "Wellness Routines", href: "/blog" }, @@ -140,8 +109,7 @@ export default function BlogPage() { ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { label: "Affiliate Disclosure", href: "/affiliate-disclosure" }, { label: "Privacy Policy", href: "/privacy-policy" }, { label: "Terms of Service", href: "/" }, diff --git a/src/app/gut-health/page.tsx b/src/app/gut-health/page.tsx index 1271851..b122b6d 100644 --- a/src/app/gut-health/page.tsx +++ b/src/app/gut-health/page.tsx @@ -13,7 +13,7 @@ export default function GutHealthPage() { const navItems = [ { name: "Home", id: "/" }, { name: "Blog", id: "/blog" }, - { name: "Supplement Reviews", id: "/reviews" }, + { name: "Supplement Reviews", id: "/supplement-reviews" }, { name: "Gut Health", id: "/gut-health" }, { name: "About", id: "/about" }, { name: "Resources", id: "/resources" }, @@ -21,8 +21,7 @@ export default function GutHealthPage() { const footerColumns = [ { - title: "Quick Links", - items: [ + title: "Quick Links", items: [ { label: "Home", href: "/" }, { label: "Blog", href: "/blog" }, { label: "Supplement Reviews", href: "/supplement-reviews" }, @@ -30,8 +29,7 @@ export default function GutHealthPage() { ], }, { - title: "Categories", - items: [ + title: "Categories", items: [ { label: "Gut Health", href: "/gut-health" }, { label: "Supplements", href: "/supplement-reviews" }, { label: "Wellness Routines", href: "/blog" }, @@ -39,8 +37,7 @@ export default function GutHealthPage() { ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { label: "Affiliate Disclosure", href: "/affiliate-disclosure" }, { label: "Privacy Policy", href: "/privacy-policy" }, { label: "Terms of Service", href: "#" }, @@ -88,50 +85,23 @@ export default function GutHealthPage() { tag="Deep Dives" blogs={[ { - id: "1", - category: "Gut Microbiome", - title: - "Understanding Your Microbiome: The Ultimate Bacterial Guide", - excerpt: - "Explore the trillions of bacteria living in your gut and how they influence your health, immunity, and mental well-being.", - imageSrc: - "http://img.b2bpic.net/free-photo/high-angle-pregnant-woman-with-laptop-coffee-mug-working-from-home_23-2148765085.jpg?_wi=5", - imageAlt: "Microbiome guide", - authorName: "Dr. Sarah Mitchell", - authorAvatar: - "http://img.b2bpic.net/free-photo/family-doctor-doctor-s-office_23-2148168436.jpg", - date: "Jan 20, 2025", - }, + id: "1", category: "Gut Microbiome", title: + "Understanding Your Microbiome: The Ultimate Bacterial Guide", excerpt: + "Explore the trillions of bacteria living in your gut and how they influence your health, immunity, and mental well-being.", imageSrc: + "http://img.b2bpic.net/free-photo/high-angle-pregnant-woman-with-laptop-coffee-mug-working-from-home_23-2148765085.jpg", imageAlt: "Microbiome guide", authorName: "Dr. Sarah Mitchell", authorAvatar: + "http://img.b2bpic.net/free-photo/family-doctor-doctor-s-office_23-2148168436.jpg", date: "Jan 20, 2025"}, { - id: "2", - category: "Probiotics", - title: - "Probiotics vs Prebiotics: Which One Does Your Gut Really Need?", - excerpt: - "Decode the science behind probiotics and prebiotics, and learn exactly which strains benefit your specific health goals.", - imageSrc: - "http://img.b2bpic.net/free-vector/flat-design-science-research-instagram-posts_23-2150815071.jpg?_wi=5", - imageAlt: "Probiotics research", - authorName: "Dr. James Chen", - authorAvatar: - "http://img.b2bpic.net/free-photo/family-doctor-doctor-s-office_23-2148168436.jpg", - date: "Jan 18, 2025", - }, + id: "2", category: "Probiotics", title: + "Probiotics vs Prebiotics: Which One Does Your Gut Really Need?", excerpt: + "Decode the science behind probiotics and prebiotics, and learn exactly which strains benefit your specific health goals.", imageSrc: + "http://img.b2bpic.net/free-vector/flat-design-science-research-instagram-posts_23-2150815071.jpg", imageAlt: "Probiotics research", authorName: "Dr. James Chen", authorAvatar: + "http://img.b2bpic.net/free-photo/family-doctor-doctor-s-office_23-2148168436.jpg", date: "Jan 18, 2025"}, { - id: "3", - category: "Digestive Health", - title: - "Leaky Gut Syndrome: What Research Actually Says (Not Marketing)", - excerpt: - "Separate fact from fiction about intestinal permeability and learn evidence-based strategies to support your digestive barrier.", - imageSrc: - "http://img.b2bpic.net/free-psd/olympics-sports-school-template-design_23-2151464488.jpg?_wi=5", - imageAlt: "Digestive health", - authorName: "Emily Rodriguez", - authorAvatar: - "http://img.b2bpic.net/free-photo/family-doctor-doctor-s-office_23-2148168436.jpg", - date: "Jan 16, 2025", - }, + id: "3", category: "Digestive Health", title: + "Leaky Gut Syndrome: What Research Actually Says (Not Marketing)", excerpt: + "Separate fact from fiction about intestinal permeability and learn evidence-based strategies to support your digestive barrier.", imageSrc: + "http://img.b2bpic.net/free-psd/olympics-sports-school-template-design_23-2151464488.jpg", imageAlt: "Digestive health", authorName: "Emily Rodriguez", authorAvatar: + "http://img.b2bpic.net/free-photo/family-doctor-doctor-s-office_23-2148168436.jpg", date: "Jan 16, 2025"}, ]} textboxLayout="default" useInvertedBackground={false} @@ -145,7 +115,7 @@ export default function GutHealthPage() { title="Get Gut Health Tips Delivered Weekly" description="Receive science-backed strategies, supplement recommendations, and lifestyle tips tailored to optimize your digestive health." tagIcon={Mail} - background={{ variant: "circleGradient" }} + background={{ variant: "radial-gradient" }} useInvertedBackground={false} inputPlaceholder="Enter your email" buttonText="Subscribe Now" diff --git a/src/app/page.tsx b/src/app/page.tsx index c9a85b3..df98470 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -27,7 +27,7 @@ export default function HomePage() { const navItems = [ { name: "Home", id: "/" }, { name: "Blog", id: "/blog" }, - { name: "Supplement Reviews", id: "/reviews" }, + { name: "Supplement Reviews", id: "/supplement-reviews" }, { name: "Gut Health", id: "/gut-health" }, { name: "About", id: "/about" }, { name: "Resources", id: "/resources" }, @@ -35,8 +35,7 @@ export default function HomePage() { const footerColumns = [ { - title: "Quick Links", - items: [ + title: "Quick Links", items: [ { label: "Home", href: "/" }, { label: "Blog", href: "/blog" }, { label: "Supplement Reviews", href: "/supplement-reviews" }, @@ -44,8 +43,7 @@ export default function HomePage() { ], }, { - title: "Categories", - items: [ + title: "Categories", items: [ { label: "Gut Health", href: "/gut-health" }, { label: "Supplements", href: "/supplement-reviews" }, { label: "Wellness Routines", href: "/blog" }, @@ -53,8 +51,7 @@ export default function HomePage() { ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { label: "Affiliate Disclosure", href: "/affiliate-disclosure" }, { label: "Privacy Policy", href: "/privacy-policy" }, { label: "Terms of Service", href: "#" }, @@ -95,11 +92,8 @@ export default function HomePage() { background={{ variant: "radial-gradient" }} buttons={[{ text: "Start Here โ†’", href: "#blog" }]} dashboard={{ - title: "Wellness Hub", - logoIcon: Leaf, - imageSrc: "http://img.b2bpic.net/free-vector/elegant-sweet-orange-candle-label_742173-12935.jpg?_wi=1", - searchPlaceholder: "Search wellness topics...", - buttons: [ + title: "Wellness Hub", logoIcon: Leaf, + imageSrc: "http://img.b2bpic.net/free-vector/elegant-sweet-orange-candle-label_742173-12935.jpg", searchPlaceholder: "Search wellness topics...", buttons: [ { text: "Explore", href: "#blog" }, { text: "Latest Posts", href: "#blog" }, ], @@ -110,46 +104,32 @@ export default function HomePage() { ], stats: [ { - title: "Articles", - values: [45, 52, 68], - description: "Research-backed guides published", - }, + title: "Articles", values: [45, 52, 68], + description: "Research-backed guides published"}, { - title: "Supplements Tested", - values: [120, 145, 180], - description: "Honest product reviews", - }, + title: "Supplements Tested", values: [120, 145, 180], + description: "Honest product reviews"}, { - title: "Community", - values: [2500, 3200, 4100], - description: "Health-conscious readers", - }, + title: "Community", values: [2500, 3200, 4100], + description: "Health-conscious readers"}, ], - chartTitle: "Monthly Readers", - chartData: [ + chartTitle: "Monthly Readers", chartData: [ { value: 45 }, { value: 62 }, { value: 58 }, { value: 71 }, { value: 85 }, ], - listTitle: "Latest Updates", - listItems: [ + listTitle: "Latest Updates", listItems: [ { icon: CheckCircle, - title: "Probiotic Guide Updated", - status: "New", - }, + title: "Probiotic Guide Updated", status: "New"}, { icon: Sparkles, - title: "Top 10 Supplements 2025", - status: "Featured", - }, + title: "Top 10 Supplements 2025", status: "Featured"}, { icon: Award, - title: "Gut Health Masterclass", - status: "Live", - }, + title: "Gut Health Masterclass", status: "Live"}, ], }} /> @@ -161,41 +141,21 @@ export default function HomePage() { description="Explore our most popular wellness topics" features={[ { - title: "Gut Health", - description: "Science-backed digestive wellness guides", - imageSrc: - "http://img.b2bpic.net/free-vector/explanatory-diabetes-infographic-with-flat-design_23-2147879094.jpg?_wi=1", - imageAlt: "Gut Health Category", - buttonIcon: ArrowRight, - buttonHref: "/gut-health", - }, + title: "Gut Health", description: "Science-backed digestive wellness guides", imageSrc: + "http://img.b2bpic.net/free-vector/explanatory-diabetes-infographic-with-flat-design_23-2147879094.jpg", imageAlt: "Gut Health Category", buttonIcon: ArrowRight, + buttonHref: "/gut-health"}, { - title: "Supplements", - description: "Tested products and honest reviews", - imageSrc: - "http://img.b2bpic.net/free-photo/high-angle-pills-container-arrangement_23-2149870459.jpg?_wi=1", - imageAlt: "Supplements Category", - buttonIcon: ArrowRight, - buttonHref: "/supplement-reviews", - }, + title: "Supplements", description: "Tested products and honest reviews", imageSrc: + "http://img.b2bpic.net/free-photo/high-angle-pills-container-arrangement_23-2149870459.jpg", imageAlt: "Supplements Category", buttonIcon: ArrowRight, + buttonHref: "/supplement-reviews"}, { - title: "Wellness Routines", - description: "Daily practices for optimal health", - imageSrc: - "http://img.b2bpic.net/free-photo/happy-sportswoman-using-mobile-phone-while-eating-salad-break-home_637285-5770.jpg?_wi=1", - imageAlt: "Wellness Routines Category", - buttonIcon: ArrowRight, - buttonHref: "/blog", - }, + title: "Wellness Routines", description: "Daily practices for optimal health", imageSrc: + "http://img.b2bpic.net/free-photo/happy-sportswoman-using-mobile-phone-while-eating-salad-break-home_637285-5770.jpg", imageAlt: "Wellness Routines Category", buttonIcon: ArrowRight, + buttonHref: "/blog"}, { - title: "Product Reviews", - description: "Detailed analysis and recommendations", - imageSrc: - "http://img.b2bpic.net/free-photo/feedback-results-information-satisfeaction_53876-121339.jpg?_wi=1", - imageAlt: "Product Reviews Category", - buttonIcon: ArrowRight, - buttonHref: "/supplement-reviews", - }, + title: "Product Reviews", description: "Detailed analysis and recommendations", imageSrc: + "http://img.b2bpic.net/free-photo/feedback-results-information-satisfeaction_53876-121339.jpg", imageAlt: "Product Reviews Category", buttonIcon: ArrowRight, + buttonHref: "/supplement-reviews"}, ]} textboxLayout="default" useInvertedBackground={false} @@ -209,48 +169,21 @@ export default function HomePage() { tag="Featured" blogs={[ { - id: "1", - category: "Gut Health", - title: - "The Complete Guide to Probiotics: What Science Really Says", - excerpt: - "A deep dive into probiotics, their mechanisms, and which strains actually work for your microbiome.", - imageSrc: - "http://img.b2bpic.net/free-photo/high-angle-pregnant-woman-with-laptop-coffee-mug-working-from-home_23-2148765085.jpg?_wi=1", - imageAlt: "Probiotics guide", - authorName: "Dr. Sarah Mitchell", - authorAvatar: - "http://img.b2bpic.net/free-photo/family-doctor-doctor-s-office_23-2148168436.jpg", - date: "Jan 15, 2025", - }, + id: "1", category: "Gut Health", title: + "The Complete Guide to Probiotics: What Science Really Says", excerpt: + "A deep dive into probiotics, their mechanisms, and which strains actually work for your microbiome.", imageSrc: + "http://img.b2bpic.net/free-photo/high-angle-pregnant-woman-with-laptop-coffee-mug-working-from-home_23-2148765085.jpg", imageAlt: "Probiotics guide", authorName: "Dr. Sarah Mitchell", authorAvatar: + "http://img.b2bpic.net/free-photo/family-doctor-doctor-s-office_23-2148168436.jpg", date: "Jan 15, 2025"}, { - id: "2", - category: "Supplements", - title: "Supplement Quality: How We Test & What We Found", - excerpt: - "Behind the scenes look at how we evaluate supplement efficacy and purity through third-party testing.", - imageSrc: - "http://img.b2bpic.net/free-vector/flat-design-science-research-instagram-posts_23-2150815071.jpg?_wi=1", - imageAlt: "Supplement testing", - authorName: "Dr. James Chen", - authorAvatar: - "http://img.b2bpic.net/free-photo/family-doctor-doctor-s-office_23-2148168436.jpg", - date: "Jan 10, 2025", - }, + id: "2", category: "Supplements", title: "Supplement Quality: How We Test & What We Found", excerpt: + "Behind the scenes look at how we evaluate supplement efficacy and purity through third-party testing.", imageSrc: + "http://img.b2bpic.net/free-vector/flat-design-science-research-instagram-posts_23-2150815071.jpg", imageAlt: "Supplement testing", authorName: "Dr. James Chen", authorAvatar: + "http://img.b2bpic.net/free-photo/family-doctor-doctor-s-office_23-2148168436.jpg", date: "Jan 10, 2025"}, { - id: "3", - category: "Wellness", - title: "The Science-Backed Morning Routine for Digestive Health", - excerpt: - "Evidence-based morning habits that support your gut microbiome and overall wellness throughout the day.", - imageSrc: - "http://img.b2bpic.net/free-psd/olympics-sports-school-template-design_23-2151464488.jpg?_wi=1", - imageAlt: "Wellness routine", - authorName: "Emily Rodriguez", - authorAvatar: - "http://img.b2bpic.net/free-photo/family-doctor-doctor-s-office_23-2148168436.jpg", - date: "Jan 8, 2025", - }, + id: "3", category: "Wellness", title: "The Science-Backed Morning Routine for Digestive Health", excerpt: + "Evidence-based morning habits that support your gut microbiome and overall wellness throughout the day.", imageSrc: + "http://img.b2bpic.net/free-psd/olympics-sports-school-template-design_23-2151464488.jpg", imageAlt: "Wellness routine", authorName: "Emily Rodriguez", authorAvatar: + "http://img.b2bpic.net/free-photo/family-doctor-doctor-s-office_23-2148168436.jpg", date: "Jan 8, 2025"}, ]} textboxLayout="default" useInvertedBackground={false} @@ -265,24 +198,11 @@ export default function HomePage() { tag="Expert Pick" plans={[ { - id: "premium-probiotic", - title: "Premium Gut Health Formula", - price: "$49.99", - period: "/bottle", - imageSrc: - "http://img.b2bpic.net/free-vector/elegant-sweet-orange-candle-label_742173-12935.jpg?_wi=2", - imageAlt: "Premium probiotic supplement", - features: [ - "50+ billion CFU potency verified", - "15 clinically-studied strains", - "Third-party tested for purity", - "Refrigeration-free stability", - "60-day satisfaction guarantee", - ], + id: "premium-probiotic", title: "Premium Gut Health Formula", price: "$49.99", period: "/bottle", imageSrc: + "http://img.b2bpic.net/free-vector/elegant-sweet-orange-candle-label_742173-12935.jpg", imageAlt: "Premium probiotic supplement", features: [ + "50+ billion CFU potency verified", "15 clinically-studied strains", "Third-party tested for purity", "Refrigeration-free stability", "60-day satisfaction guarantee"], button: { - text: "Check Price on Amazon โ†’", - href: "https://amazon.com", - }, + text: "Check Price on Amazon โ†’", href: "https://amazon.com"}, }, ]} textboxLayout="default" @@ -296,12 +216,7 @@ export default function HomePage() { title="Why You Can Trust The Wellness Formula" description="Built on scientific evidence, transparent testing, and honest recommendations" names={[ - "โœ… Research-Backed", - "๐Ÿ”ฌ Science-Based", - "๐Ÿ’Š Tested Products", - "๐Ÿ“‹ Honest Reviews", - "๐ŸŒฟ Natural Wellness", - ]} + "โœ… Research-Backed", "๐Ÿ”ฌ Science-Based", "๐Ÿ’Š Tested Products", "๐Ÿ“‹ Honest Reviews", "๐ŸŒฟ Natural Wellness"]} textboxLayout="default" useInvertedBackground={false} showCard={true} @@ -323,7 +238,7 @@ export default function HomePage() { title="Get Our Free Gut Health Starter Guide" description="Join thousands of health-conscious readers receiving weekly evidence-based wellness tips, supplement insights, and exclusive guides." tagIcon={Mail} - background={{ variant: "circleGradient" }} + background={{ variant: "radial-gradient" }} useInvertedBackground={false} inputPlaceholder="Enter your email" buttonText="Send Me the Guide" diff --git a/src/app/supplement-reviews/page.tsx b/src/app/supplement-reviews/page.tsx index 67bbf5c..94a38f2 100644 --- a/src/app/supplement-reviews/page.tsx +++ b/src/app/supplement-reviews/page.tsx @@ -21,66 +21,25 @@ export default function SupplementReviewsPage() { const supplementPlans = [ { - id: "premium-probiotic", - title: "Premium Gut Health Formula", - price: "$49.99", - period: "/bottle", - imageSrc: "http://img.b2bpic.net/free-vector/elegant-sweet-orange-candle-label_742173-12935.jpg?_wi=4", - imageAlt: "Premium probiotic supplement", - features: [ - "50+ billion CFU potency verified", - "15 clinically-studied strains", - "Third-party tested for purity", - "Refrigeration-free stability", - "60-day satisfaction guarantee", - ], + id: "premium-probiotic", title: "Premium Gut Health Formula", price: "$49.99", period: "/bottle", imageSrc: "http://img.b2bpic.net/free-vector/elegant-sweet-orange-candle-label_742173-12935.jpg", imageAlt: "Premium probiotic supplement", features: [ + "50+ billion CFU potency verified", "15 clinically-studied strains", "Third-party tested for purity", "Refrigeration-free stability", "60-day satisfaction guarantee"], button: { - text: "Check Price on Amazon โ†’", - href: "https://amazon.com", - }, + text: "Check Price on Amazon โ†’", href: "https://amazon.com"}, }, ]; const reviewBlogs = [ { - id: "1", - category: "Gut Health", - title: "The Complete Guide to Probiotics: What Science Really Says", - excerpt: "A deep dive into probiotics, their mechanisms, and which strains actually work for your microbiome.", - imageSrc: "http://img.b2bpic.net/free-photo/high-angle-pregnant-woman-with-laptop-coffee-mug-working-from-home_23-2148765085.jpg?_wi=4", - imageAlt: "Probiotics guide", - authorName: "Dr. Sarah Mitchell", - authorAvatar: "http://img.b2bpic.net/free-photo/family-doctor-doctor-s-office_23-2148168436.jpg", - date: "Jan 15, 2025", - }, + id: "1", category: "Gut Health", title: "The Complete Guide to Probiotics: What Science Really Says", excerpt: "A deep dive into probiotics, their mechanisms, and which strains actually work for your microbiome.", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-pregnant-woman-with-laptop-coffee-mug-working-from-home_23-2148765085.jpg", imageAlt: "Probiotics guide", authorName: "Dr. Sarah Mitchell", authorAvatar: "http://img.b2bpic.net/free-photo/family-doctor-doctor-s-office_23-2148168436.jpg", date: "Jan 15, 2025"}, { - id: "2", - category: "Supplements", - title: "Supplement Quality: How We Test & What We Found", - excerpt: "Behind the scenes look at how we evaluate supplement efficacy and purity through third-party testing.", - imageSrc: "http://img.b2bpic.net/free-vector/flat-design-science-research-instagram-posts_23-2150815071.jpg?_wi=4", - imageAlt: "Supplement testing", - authorName: "Dr. James Chen", - authorAvatar: "http://img.b2bpic.net/free-photo/family-doctor-doctor-s-office_23-2148168436.jpg", - date: "Jan 10, 2025", - }, + id: "2", category: "Supplements", title: "Supplement Quality: How We Test & What We Found", excerpt: "Behind the scenes look at how we evaluate supplement efficacy and purity through third-party testing.", imageSrc: "http://img.b2bpic.net/free-vector/flat-design-science-research-instagram-posts_23-2150815071.jpg", imageAlt: "Supplement testing", authorName: "Dr. James Chen", authorAvatar: "http://img.b2bpic.net/free-photo/family-doctor-doctor-s-office_23-2148168436.jpg", date: "Jan 10, 2025"}, { - id: "3", - category: "Wellness", - title: "The Science-Backed Morning Routine for Digestive Health", - excerpt: "Evidence-based morning habits that support your gut microbiome and overall wellness throughout the day.", - imageSrc: "http://img.b2bpic.net/free-psd/olympics-sports-school-template-design_23-2151464488.jpg?_wi=4", - imageAlt: "Wellness routine", - authorName: "Emily Rodriguez", - authorAvatar: "http://img.b2bpic.net/free-photo/family-doctor-doctor-s-office_23-2148168436.jpg", - date: "Jan 8, 2025", - }, + id: "3", category: "Wellness", title: "The Science-Backed Morning Routine for Digestive Health", excerpt: "Evidence-based morning habits that support your gut microbiome and overall wellness throughout the day.", imageSrc: "http://img.b2bpic.net/free-psd/olympics-sports-school-template-design_23-2151464488.jpg", imageAlt: "Wellness routine", authorName: "Emily Rodriguez", authorAvatar: "http://img.b2bpic.net/free-photo/family-doctor-doctor-s-office_23-2148168436.jpg", date: "Jan 8, 2025"}, ]; const footerColumns = [ { - title: "Quick Links", - items: [ + title: "Quick Links", items: [ { label: "Home", href: "/" }, { label: "Blog", href: "/blog" }, { label: "Supplement Reviews", href: "/supplement-reviews" }, @@ -88,8 +47,7 @@ export default function SupplementReviewsPage() { ], }, { - title: "Categories", - items: [ + title: "Categories", items: [ { label: "Gut Health", href: "/gut-health" }, { label: "Supplements", href: "/supplement-reviews" }, { label: "Wellness Routines", href: "/blog" }, @@ -97,8 +55,7 @@ export default function SupplementReviewsPage() { ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { label: "Affiliate Disclosure", href: "/affiliate-disclosure" }, { label: "Privacy Policy", href: "/privacy-policy" }, { label: "Terms of Service", href: "#" }, @@ -136,11 +93,8 @@ export default function SupplementReviewsPage() { background={{ variant: "radial-gradient" }} buttons={[{ text: "Start Here โ†’", href: "#featured-pick" }]} dashboard={{ - title: "Wellness Hub", - logoIcon: Leaf, - imageSrc: "http://img.b2bpic.net/free-vector/elegant-sweet-orange-candle-label_742173-12935.jpg?_wi=5", - searchPlaceholder: "Search wellness topics...", - buttons: [ + title: "Wellness Hub", logoIcon: Leaf, + imageSrc: "http://img.b2bpic.net/free-vector/elegant-sweet-orange-candle-label_742173-12935.jpg", searchPlaceholder: "Search wellness topics...", buttons: [ { text: "Explore", href: "#featured-pick" }, { text: "Latest Posts", href: "#blog" }, ], @@ -151,31 +105,23 @@ export default function SupplementReviewsPage() { ], stats: [ { - title: "Articles", - values: [45, 52, 68], - description: "Research-backed guides published", - }, + title: "Articles", values: [45, 52, 68], + description: "Research-backed guides published"}, { - title: "Supplements Tested", - values: [120, 145, 180], - description: "Honest product reviews", - }, + title: "Supplements Tested", values: [120, 145, 180], + description: "Honest product reviews"}, { - title: "Community", - values: [2500, 3200, 4100], - description: "Health-conscious readers", - }, + title: "Community", values: [2500, 3200, 4100], + description: "Health-conscious readers"}, ], - chartTitle: "Monthly Readers", - chartData: [ + chartTitle: "Monthly Readers", chartData: [ { value: 45 }, { value: 62 }, { value: 58 }, { value: 71 }, { value: 85 }, ], - listTitle: "Latest Updates", - listItems: [ + listTitle: "Latest Updates", listItems: [ { icon: CheckCircle, title: "Probiotic Guide Updated", status: "New" }, { icon: Sparkles, title: "Top 10 Supplements 2025", status: "Featured" }, { icon: Award, title: "Gut Health Masterclass", status: "Live" }, @@ -214,7 +160,7 @@ export default function SupplementReviewsPage() { title="Get Our Free Gut Health Starter Guide" description="Join thousands of health-conscious readers receiving weekly evidence-based wellness tips, supplement insights, and exclusive guides." tagIcon={Mail} - background={{ variant: "circleGradient" }} + background={{ variant: "radial-gradient" }} useInvertedBackground={false} inputPlaceholder="Enter your email" buttonText="Send Me the Guide"