import { Inter } from 'next/font/google' import type { Metadata } from 'next' import { Header } from '@/components/header' import { Footer } from '@/components/footer' import './globals.css' const inter = Inter({ subsets: ['latin'] }) export const metadata: Metadata = { title: 'ZinTools', description: 'ZinTools Web app by Aftab Rehan', } export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode }>) { return (
{children}