feat: Add language switcher component to footer

This commit is contained in:
mauro-balades
2024-09-02 21:04:05 +02:00
parent 66cc854c2c
commit d787a95657
29 changed files with 53 additions and 867 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";
import { getAllThemes, ZenTheme } from "@/lib/themes";
import { GetStaticProps } from "next";
export default async function ThemesMarketplace() {
return (
<main className="flex min-h-screen flex-col items-center justify-start">
<MarketplacePage themes={await getAllThemes()} />
</main>
);
}