diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 22c885f..d5fc264 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -5,7 +5,7 @@ import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatin import ContactCTA from "@/components/sections/contact/ContactCTA"; import ContactText from "@/components/sections/contact/ContactText"; import FooterSimple from "@/components/sections/footer/FooterSimple"; -import { Heart, Mail, MapPin, Phone } from "lucide-react"; +import { Heart } from "lucide-react"; export default function ContactPage() { return ( @@ -32,6 +32,8 @@ export default function ContactPage() { { name: "FAQ", id: "faq" }, { name: "Contact", id: "/contact" }, { name: "Our Pets", id: "/our-pets" }, + { name: "Privacy Policy", id: "/privacy-policy" }, + { name: "Terms", id: "/terms" }, ]} button={{ text: "Adopt Now", href: "#featured-pets" }} /> @@ -99,8 +101,8 @@ export default function ContactPage() { }, { title: "Legal", items: [ - { label: "Privacy Policy", href: "#" }, - { label: "Terms of Service", href: "#" }, + { label: "Privacy Policy", href: "/privacy-policy" }, + { label: "Terms of Service", href: "/terms" }, { label: "Adoption Policy", href: "#" }, ], }, diff --git a/src/app/layout.tsx b/src/app/layout.tsx index d666dcd..6f8e715 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,46 +1,34 @@ import type { Metadata } from "next"; -import { DM_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 dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], -}); +import "./styles/variables.css"; +import "./styles/base.css"; const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Pet Adoption & Shelter | Paws & Care", description: "Find your perfect pet companion at Paws & Care. Adopt rescue dogs, cats, and small animals. Learn about our adoption process, volunteer, and support our mission to save lives.", keywords: "pet adoption, animal shelter, rescue dogs, rescue cats, pet rescue, adopt a pet, animal welfare", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Pet Adoption & Shelter | Paws & Care", description: "Find your perfect pet companion. Browse adoptable pets and join our mission to save lives.", type: "website", siteName: "Paws & Care", images: [ - { - url: "http://img.b2bpic.net/free-photo/woman-interacting-with-rescue-dogs-shelter_23-2148682952.jpg", alt: "Paws & Care Pet Shelter"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Pet Adoption & Shelter | Paws & Care", description: "Find your perfect pet companion at Paws & Care Pet Shelter", images: ["http://img.b2bpic.net/free-photo/woman-interacting-with-rescue-dogs-shelter_23-2148682952.jpg"], - }, -}; + title: "Paws & Care", description: "Pet shelter and adoption services"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + + + + {children}