import Head from 'next/head'; import React, { ReactNode } from 'react'; import Footer from './Footer'; import Header from './Header'; import { Analytics } from "@vercel/analytics/react" import { SpeedInsights } from "@vercel/speed-insights/next" interface LayoutProps { children: ReactNode; title?: string; description?: string; } const Layout: React.FC = ({ children, title = 'Confessions of Grace', description = 'A blog dedicated to exploring the doctrines of grace and Reformed theology.' }) => { return ( <> {title}
{children}
); }; export default Layout;