Spaces:
Build error
Build error
File size: 745 Bytes
6b69a66 f19a619 6b69a66 f19a619 6b69a66 f19a619 6b69a66 f19a619 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | import type { Metadata } from 'next'
import './globals.css'
import { AppProvider } from '@/lib/app-context'
import Header from '@/components/Header'
import Footer from '@/components/Footer'
export const metadata: Metadata = {
title: 'Evermore — Plan Your Perfect Wedding',
description: 'Discover curated wedding vendors, manage your budget, sign contracts, and bring your dream wedding to life.',
}
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="en">
<body className="font-body antialiased">
<AppProvider>
<Header />
<main className="min-h-screen">{children}</main>
<Footer />
</AppProvider>
</body>
</html>
)
} |