Update src/app/layout.tsx

This commit is contained in:
2026-02-13 11:42:05 +00:00
parent a3b8a3d138
commit af43bd12c6

View File

@@ -4,19 +4,15 @@ import { Inter } from "next/font/google";
import "./globals.css";
const publicSans = Public_Sans({
variable: "--font-public-sans",
subsets: ["latin"],
variable: "--font-public-sans", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
variable: "--font-inter", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Hope Haven Animal Shelter",
description: "Every animal deserves a second chance. Discover your new best friend and join our mission to rescue, rehabilitate, and rehome pets in need.",
};
title: "Hope Haven Animal Shelter", description: "Every animal deserves a second chance. Discover your new best friend and join our mission to rescue, rehabilitate, and rehome pets in need."};
export default function RootLayout({
children,