feat: Add themes marketplace page and components

This commit is contained in:
Mauro Balades
2024-08-14 23:12:22 +02:00
parent ca1540a6c5
commit f16a46a290
8 changed files with 268 additions and 2 deletions

14
src/app/themes/page.tsx Normal file
View File

@@ -0,0 +1,14 @@
import Footer from "@/components/footer";
import MarketplacePage from "@/components/marketplace";
import { Navigation } from "@/components/navigation";
export default function ThemesMarketplace() {
return (
<main className="flex min-h-screen flex-col items-center justify-start">
<MarketplacePage />
<Footer />
<Navigation /> {/* At the bottom of the page */}
</main>
);
}