improved literary analysis pgae and added compare works sub page

This commit is contained in:
Harivansh Rathi 2024-12-04 12:38:18 -05:00
parent 0134c81526
commit 5ca37d03f2
13 changed files with 3953 additions and 59 deletions

View file

@ -3,15 +3,19 @@ import Navbar from '../Navbar';
const MainLayout = ({ children }: { children: React.ReactNode }) => {
return (
<div className="min-h-screen bg-cream-50">
<div className="min-h-screen bg-cream-50 flex flex-col">
<Navbar />
<main className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-8">
{children}
<main className="flex-1 flex flex-col">
<div className="flex-1 container mx-auto px-4 sm:px-6 lg:px-8 py-8 flex flex-col">
<div className="flex-1 flex flex-col">
{children}
</div>
</div>
</main>
<footer className="bg-sage-100 border-t border-sage-200 mt-12">
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-8">
<footer className="bg-sage-100 border-t border-sage-200">
<div className="container mx-auto px-4 sm:px-6 lg:px-8 py-8">
<div className="text-center font-cormorant text-sage-900">
<p className="text-lg">"It is a truth universally acknowledged..."</p>
<p className="mt-2">© {new Date().getFullYear()} Austen's Wedding Guide</p>