feat: Add themes marketplace page and components
This commit is contained in:
14
src/app/themes/page.tsx
Normal file
14
src/app/themes/page.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user