5 Commits

Author SHA1 Message Date
0e7c9c9720 Update src/app/page.tsx 2026-01-12 15:22:06 +00:00
da95056a70 Update src/app/page.tsx 2026-01-12 15:19:26 +00:00
d193b2f018 Update src/app/layout.tsx 2026-01-12 15:19:25 +00:00
72fc318172 Update src/app/page.tsx 2026-01-12 15:08:59 +00:00
7184ee5187 Update src/app/globals.css 2026-01-12 15:08:58 +00:00
3 changed files with 38 additions and 11 deletions

View File

@@ -4,13 +4,13 @@
/* Base units */ /* Base units */
/* --vw is set by ThemeProvider */ /* --vw is set by ThemeProvider */
--background: #ffffff;; --background: #f0fff8;;
--card: #fcfcfc;; --card: #f7fffa;;
--foreground: #00120ae6;; --foreground: #001a0a;;
--primary-cta: #15ad59;; --primary-cta: #0a7039;;
--secondary-cta: #f9f9f9;; --secondary-cta: #ffffff;;
--accent: #e2e2e2;; --accent: #a8d9be;;
--background-accent: #c4c4c4;; --background-accent: #6bbf8e;;
/* text sizing - set by ThemeProvider */ /* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);

View File

@@ -1,4 +1,4 @@
"use client" "use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
@@ -33,6 +33,7 @@ export default function DogHubPage() {
{ name: "About", id: "about" }, { name: "About", id: "about" },
{ name: "Breeds", id: "breeds" }, { name: "Breeds", id: "breeds" },
{ name: "Tips", id: "tips" }, { name: "Tips", id: "tips" },
{ name: "Care", id: "care" },
{ name: "Contact", id: "contact" } { name: "Contact", id: "contact" }
]} ]}
brandName="DogHub" brandName="DogHub"
@@ -85,6 +86,9 @@ export default function DogHubPage() {
}, },
{ {
title: "German Shepherd", description: "Intelligent, courageous, and confident. Highly trainable and known for their protective instincts.", imageSrc: "https://img.b2bpic.net/free-photo/retriver_658691-636.jpg", imageAlt: "German shepherd dog intelligent protective" title: "German Shepherd", description: "Intelligent, courageous, and confident. Highly trainable and known for their protective instincts.", imageSrc: "https://img.b2bpic.net/free-photo/retriver_658691-636.jpg", imageAlt: "German shepherd dog intelligent protective"
},
{
title: "French Bulldog", description: "Compact, muscular, and affectionate. Adaptable companions perfect for apartment living.", imageSrc: "https://img.b2bpic.net/free-photo/happy-pet-dogs-playing-park_1359-280.jpg", imageAlt: "French bulldog playful compact"
} }
]} ]}
gridVariant="uniform-all-items-equal" gridVariant="uniform-all-items-equal"
@@ -120,6 +124,29 @@ export default function DogHubPage() {
/> />
</div> </div>
<div id="care" data-section="care">
<ProductCardSeven
title="Complete Dog Care Guide"
description="Comprehensive resources for every aspect of dog health and wellbeing"
tag="Care & Wellness"
products={[
{
id: "1", name: "Nutrition & Diet", price: "Explore", imageSrc: "https://img.b2bpic.net/free-photo/cute-dog-grass_23-2149027322.jpg", imageAlt: "Dog nutrition and diet"
},
{
id: "2", name: "Preventive Healthcare", price: "Explore", imageSrc: "https://img.b2bpic.net/free-photo/close-up-man-with-dog-clinic_23-2149143853.jpg", imageAlt: "Dog preventive healthcare"
},
{
id: "3", name: "Behavioral Training", price: "Explore", imageSrc: "https://img.b2bpic.net/free-photo/man-training-his-two-dogs-outdoors_23-2149448219.jpg", imageAlt: "Dog behavioral training"
}
]}
gridVariant="uniform-all-items-equal"
textboxLayout="default"
animationType="slide-up"
useInvertedBackground="noInvert"
/>
</div>
<div id="testimonials" data-section="testimonials"> <div id="testimonials" data-section="testimonials">
<TestimonialCardEleven <TestimonialCardEleven
title="What Dog Lovers Say" title="What Dog Lovers Say"
@@ -195,7 +222,7 @@ export default function DogHubPage() {
title: "Resources", items: [ title: "Resources", items: [
{ label: "Breed Guide", href: "#breeds" }, { label: "Breed Guide", href: "#breeds" },
{ label: "Training Tips", href: "#tips" }, { label: "Training Tips", href: "#tips" },
{ label: "Health Care", href: "#health" } { label: "Health Care", href: "#care" }
] ]
}, },
{ {