Merge version_3 into main #4
@@ -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({
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${poppins.variable} ${inter.variable} antialiased`}
|
||||
className={`${publicSans.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
@@ -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() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Home", id: "home" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Products", id: "products" },
|
||||
{ name: "Services", id: "services" },
|
||||
@@ -50,8 +50,8 @@ export default function LandingPage() {
|
||||
tagIcon={Paw}
|
||||
tagAnimation="slide-up"
|
||||
buttons={[
|
||||
{ text: "Shop Now", href: "products" },
|
||||
{ text: "Learn More", href: "about" }
|
||||
{ text: "Shop Now", href: "#products" },
|
||||
{ text: "Learn More", href: "#about" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
carouselItems={[
|
||||
@@ -86,7 +86,7 @@ export default function LandingPage() {
|
||||
description={[
|
||||
"Since 2015, Pet City has been dedicated to providing the highest quality pet care products and services to pet owners throughout the region.", "We believe every pet deserves the best. Our carefully curated selection of pet food, toys, grooming supplies, and accessories ensures your furry friends receive only the finest. Our expert team is passionate about helping you make informed choices for your pet's health and happiness."
|
||||
]}
|
||||
buttons={[{ text: "Explore Our Services", href: "services" }]}
|
||||
buttons={[{ text: "Explore Our Services", href: "#services" }]}
|
||||
showBorder={true}
|
||||
useInvertedBackground={false}
|
||||
ariaLabel="About Pet City section"
|
||||
@@ -185,7 +185,7 @@ export default function LandingPage() {
|
||||
<div id="social-proof" data-section="social-proof">
|
||||
<SocialProofOne
|
||||
title="Trusted Partnerships"
|
||||
description="We partner with leading pet care brands to bring you the best products and services."
|
||||
description="We partner with leading pet care brands to bring you the best products and services. Based in Plot No.30, 31, Kamaraj Street, Iyappaswamy Nagar, Mudaliarpet, Puducherry, 605004."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
names={["Purina", "Hill's Science Diet", "Royal Canin", "Friskies", "Chewy", "Petco", "PetSmart", "Petmart"]}
|
||||
@@ -197,7 +197,7 @@ export default function LandingPage() {
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactText
|
||||
text="Ready to give your pet the best care? Reach out to Pet City today and discover why thousands of pet owners trust us."
|
||||
text="Ready to give your pet the best care? Reach out to Pet City today and discover why thousands of pet owners trust us. Visit us at Plot No.30, 31, Kamaraj Street, Iyappaswamy Nagar, Mudaliarpet, Puducherry, 605004."
|
||||
animationType="entrance-slide"
|
||||
buttons={[
|
||||
{ text: "Get in Touch", href: "#" },
|
||||
@@ -216,27 +216,34 @@ export default function LandingPage() {
|
||||
columns={[
|
||||
{
|
||||
title: "Products", items: [
|
||||
{ label: "Dog Food", href: "products" },
|
||||
{ label: "Cat Supplies", href: "products" },
|
||||
{ label: "Toys & Accessories", href: "products" },
|
||||
{ label: "Pet Care", href: "products" }
|
||||
{ label: "Dog Food", href: "#products" },
|
||||
{ label: "Cat Supplies", href: "#products" },
|
||||
{ label: "Toys & Accessories", href: "#products" },
|
||||
{ label: "Pet Care", href: "#products" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Services", items: [
|
||||
{ label: "Grooming", href: "services" },
|
||||
{ label: "Training", href: "services" },
|
||||
{ label: "Grooming", href: "#services" },
|
||||
{ label: "Training", href: "#services" },
|
||||
{ label: "Boarding", href: "#" },
|
||||
{ label: "Veterinary", href: "#" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "about" },
|
||||
{ label: "Contact", href: "contact" },
|
||||
{ label: "About Us", href: "#about" },
|
||||
{ label: "Contact", href: "#contact" },
|
||||
{ label: "Careers", href: "#" },
|
||||
{ label: "Blog", href: "#" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Visit Us", items: [
|
||||
{ label: "Plot No.30, 31, Kamaraj Street", href: "#" },
|
||||
{ label: "Iyappaswamy Nagar, Mudaliarpet", href: "#" },
|
||||
{ label: "Puducherry, 605004", href: "#" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
logoText="Pet City"
|
||||
|
||||
Reference in New Issue
Block a user