53 lines
1.3 KiB
TypeScript
53 lines
1.3 KiB
TypeScript
import type { Metadata } from "next";
|
|
import { Playfair_Display, Gloock, Parkinsans } from "next/font/google";
|
|
import "../styles/style.css";
|
|
import Navbar from "@/components/Navbar";
|
|
import Footer from "@/components/Footer";
|
|
import WhatsAppFab from "@/components/WhatsAppFab";
|
|
import ScrollReveal from "@/components/ScrollReveal";
|
|
|
|
const display = Playfair_Display({
|
|
subsets: ["latin"],
|
|
variable: "--font-display",
|
|
display: "swap",
|
|
});
|
|
|
|
const serif = Gloock({
|
|
subsets: ["latin"],
|
|
weight: "400",
|
|
variable: "--font-serif",
|
|
display: "swap",
|
|
});
|
|
|
|
const sans = Parkinsans({
|
|
subsets: ["latin"],
|
|
variable: "--font-sans",
|
|
display: "swap",
|
|
adjustFontFallback: false,
|
|
fallback: ["system-ui", "Segoe UI", "Arial", "sans-serif"],
|
|
});
|
|
|
|
export const metadata: Metadata = {
|
|
title: "UP Parivaar Dallas — Bringing Uttar Pradesh Families Together",
|
|
description:
|
|
"UP Parivar Dallas connects families, culture, seva, events and trusted local help across North Texas.",
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<html lang="en" className={`${display.variable} ${serif.variable} ${sans.variable}`}>
|
|
<body>
|
|
<Navbar />
|
|
<main>{children}</main>
|
|
<Footer />
|
|
<WhatsAppFab />
|
|
<ScrollReveal />
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|