3 Commits

Author SHA1 Message Date
655afad517 Remove watermark 2026-05-12 09:46:27 +00:00
17ea8b1b3a Update theme fonts 2026-04-09 14:55:08 +00:00
985ed2dfc3 Update theme fonts 2026-04-09 14:55:08 +00:00
2 changed files with 15 additions and 16 deletions

View File

@@ -4,25 +4,26 @@ import { Inter } from "next/font/google";
import "./globals.css";
import "@/lib/gsap-setup";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Libre_Baskerville } from "next/font/google";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: 'Pawsitive | Animal Rescue & Adoption Shelter',
description: 'Find your perfect companion at Pawsitive. We connect rescue pets with loving homes through dedicated care, medical support, and community engagement.',
};
const libreBaskerville = Libre_Baskerville({
variable: "--font-libre-baskerville",
subsets: ["latin"],
weight: ["400", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
export default function RootLayout({
children,
}: Readonly<{
@@ -31,10 +32,8 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
<body className={`${libreBaskerville.variable} ${inter.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{

View File

@@ -11,7 +11,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-inter-tight), sans-serif;
font-family: var(--font-inter), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-inter-tight), sans-serif;
font-family: var(--font-libre-baskerville), serif;
}