From 14dc5a460ccd173d8b03a2438673534b2cc91235 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 13:40:07 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 50c8159..10d6f98 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,13 +1,12 @@ import type { Metadata } from "next"; -import { Poppins } from "next/font/google"; +import { Public_Sans } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const poppins = Poppins({ - variable: "--font-poppins", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], +const publicSans = Public_Sans({ + variable: "--font-public-sans", subsets: ["latin"], }); const inter = Inter({ @@ -15,7 +14,7 @@ const inter = Inter({ }); export const metadata: Metadata = { - title: "Pet City - Premium Pet Shop & Care Services", description: "Discover Pet City: your trusted pet shop for quality pet food, supplies, grooming, and training services. Expert care for your furry friends since 2015.", keywords: "pet shop, pet supplies, dog food, cat food, pet grooming, pet training, pet care", metadataBase: new URL("https://petcity.com"), + title: "Pet City - Premium Pet Shop & Care Services", description: "Discover Pet City: your trusted pet shop for quality pet food, supplies, grooming, and training services. Expert care for your furry friends since 2015. Located at Plot No.30, 31, Kamaraj Street, Iyappaswamy Nagar, Mudaliarpet, Puducherry, 605004.", keywords: "pet shop, pet supplies, dog food, cat food, pet grooming, pet training, pet care, Puducherry", metadataBase: new URL("https://petcity.com"), alternates: { canonical: "https://petcity.com" }, @@ -40,7 +39,7 @@ export default function RootLayout({ {children} -- 2.49.1 From 53146c648cc6275b0575e90355ac662e86a0ae19 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 13:40:08 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 37 ++++++++++++++++++++++--------------- 1 file changed, 22 insertions(+), 15 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 884e96f..2a55601 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -10,7 +10,7 @@ import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; import ContactText from '@/components/sections/contact/ContactText'; import FooterMedia from '@/components/sections/footer/FooterMedia'; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import { Paw, Sparkles } from "lucide-react"; +import { Paw } from "lucide-react"; export default function LandingPage() { return ( @@ -29,7 +29,7 @@ export default function LandingPage() {