From cd6ae7763949950fc5eaadc522aa61ed2c758e4d Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 07:48:34 +0000 Subject: [PATCH 1/4] Update src/app/layout.tsx --- src/app/layout.tsx | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9352b7b..3ddc99b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,25 +1,19 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; +import { Inter_Tight } from "next/font/google"; import { Inter } from "next/font/google"; -import { Roboto } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], +const interTight = Inter_Tight({ + variable: "--font-inter-tight", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); -const roboto = Roboto({ - variable: "--font-roboto", subsets: ["latin"], - weight: ["100", "300", "400", "500", "700", "900"], -}); - export const metadata: Metadata = { title: "CalmPup™ | Smart Anti-Bark Training Collar for Dogs", description: "Stop excessive barking humanely. CalmPup uses smart vibration technology—no shock, no punishment. 87% reduction in 2 weeks. 30-day guarantee. Order now.", keywords: "dog bark collar, anti-bark training, smart dog collar, stop dog barking, humane training collar, dog training device", metadataBase: new URL("https://calmpup.com"), alternates: { @@ -48,7 +42,7 @@ export default function RootLayout({ {children} From 13000e794d5331906f82ca7ea1179733c41fafae Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 07:48:35 +0000 Subject: [PATCH 2/4] Update src/app/page.tsx --- src/app/page.tsx | 152 +++++++++++++++++++++++------------------------ 1 file changed, 76 insertions(+), 76 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 702cdd8..fc9fb67 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -12,27 +12,27 @@ import PricingCardFive from "@/components/sections/pricing/PricingCardFive"; import FaqBase from "@/components/sections/faq/FaqBase"; import ContactCenter from "@/components/sections/contact/ContactCenter"; import FooterSimple from "@/components/sections/footer/FooterSimple"; -import { TrendingUp, Users, Clock, Zap, BarChart3, Brain, Sparkles, Star, Crown, HelpCircle, Heart } from "lucide-react"; +import { TrendingUp, Users, Clock, Zap, BarChart3, Brain, Sparkles, Star, Crown, HelpCircle, Heart, Shield, Smartphone, Target } from "lucide-react"; export default function LandingPage() { return ( @@ -103,13 +103,13 @@ export default function LandingPage() { @@ -260,24 +260,24 @@ export default function LandingPage() { columns={[ { title: "Product", items: [ - { label: "How It Works", href: "#how-it-works" }, - { label: "Pricing", href: "#pricing" }, - { label: "Features", href: "#features" }, - { label: "Reviews", href: "#reviews" }, + { label: "How It Works", href: "how-it-works" }, + { label: "Pricing", href: "pricing" }, + { label: "Features", href: "features" }, + { label: "Reviews", href: "reviews" }, ], }, { title: "Learn", items: [ { label: "Training Guide", href: "#" }, { label: "Dog Behavior Tips", href: "#" }, - { label: "FAQ", href: "#faq" }, + { label: "FAQ", href: "faq" }, { label: "Support", href: "#" }, ], }, { title: "Company", items: [ { label: "About Us", href: "#" }, - { label: "Contact", href: "#" }, + { label: "Contact", href: "contact" }, { label: "Blog", href: "#" }, { label: "Careers", href: "#" }, ], From 0abfa09a4d0fa4e6f3be149819f1c320f2d2cfc7 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 07:48:35 +0000 Subject: [PATCH 3/4] Update src/app/styles/base.css --- src/app/styles/base.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/styles/base.css b/src/app/styles/base.css index 3112a53..a25430f 100644 --- a/src/app/styles/base.css +++ b/src/app/styles/base.css @@ -11,7 +11,7 @@ html { body { background-color: var(--background); color: var(--foreground); - font-family: var(--font-roboto), sans-serif; + font-family: var(--font-inter-tight), sans-serif; position: relative; min-height: 100vh; overscroll-behavior: none; @@ -24,5 +24,5 @@ h3, h4, h5, h6 { - font-family: var(--font-roboto), sans-serif; + font-family: var(--font-inter-tight), sans-serif; } From 070dafbabdf3ab07f9c1a85bd12dd7038950de6b Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 07:48:36 +0000 Subject: [PATCH 4/4] Update src/app/styles/variables.css --- src/app/styles/variables.css | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index b7afc67..0b396cf 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #f5f4ef; - --card: #dad6cd; - --foreground: #2a2928; - --primary-cta: #2a2928; + --background: #ffffff; + --card: #f9f9f9; + --foreground: #000612e6; + --primary-cta: #15479c; --primary-cta-text: #f5f4ef; - --secondary-cta: #ecebea; + --secondary-cta: #f9f9f9; --secondary-cta-text: #2a2928; - --accent: #ffffff; - --background-accent: #c6b180; + --accent: #e2e2e2; + --background-accent: #c4c4c4; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);