This commit is contained in:
2026-06-09 15:15:40 +03:00
parent f6b4acb760
commit d908d83ca5
58 changed files with 4320 additions and 419 deletions
+17
View File
@@ -0,0 +1,17 @@
import prisma from "@/lib/prisma";
import FeaturesClient from "./FeaturesClient";
export default async function FeaturesPage() {
const features = await prisma.feature.findMany({
orderBy: [
{ lang: 'asc' },
{ order: 'asc' }
]
});
return (
<div className="max-w-5xl mx-auto w-full">
<FeaturesClient features={features} />
</div>
);
}