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} 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() {