Add common header and footer

Implement a common header and footer for all pages except interactive pages. The footer will initially contain placeholder text.
This commit is contained in:
gpt-engineer-app[bot] 2025-07-19 13:39:51 +00:00
parent 666de99364
commit 76e47c5b00
5 changed files with 79 additions and 37 deletions

View file

@ -8,7 +8,7 @@ import {
CreditCard,
Calculator
} from "lucide-react";
import Navigation from "@/components/Navigation";
import Layout from "@/components/Layout";
import ThemeCard from "@/components/ThemeCard";
const Themes = () => {
@ -58,8 +58,7 @@ const Themes = () => {
];
return (
<div className="min-h-screen bg-background">
<Navigation />
<Layout>
<div className="py-12 px-4">
<div className="max-w-6xl mx-auto">
@ -78,7 +77,7 @@ const Themes = () => {
</div>
</div>
</div>
</Layout>
);
};