Update src/app/dashboard/page.tsx

This commit is contained in:
2026-04-26 22:50:05 +00:00
parent 5e19471dcf
commit ffc4eda294

View File

@@ -42,6 +42,7 @@ export default function DashboardPage() {
animationType="slide-up"
textboxLayout="split"
gridVariant="bento-grid"
useInvertedBackground={false}
metrics={[
{ id: "1", value: "84%", title: "Stock Efficiency", description: "Optimized inventory turnover", icon: BarChart3 },
{ id: "2", value: "12", title: "Low Stock Alerts", description: "Items needing restock", icon: Package },
@@ -58,6 +59,7 @@ export default function DashboardPage() {
animationType="slide-up"
textboxLayout="split"
gridVariant="uniform-all-items-equal"
useInvertedBackground={false}
features={[
{ title: "Bulk Inbound", description: "Record large shipments from farms.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=cr8juk&_wi=1" },
{ title: "Stock Adjustment", description: "Update quantities for sales and waste.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=gvhq9y&_wi=1" },
@@ -70,9 +72,10 @@ export default function DashboardPage() {
<FooterSimple
columns={[{ title: "System", items: [{ label: "Back to Home", href: "/" }] }]}
bottomLeftText="© 2024 Afya Fresh Fruits. Internal Dashboard."
bottomRightText=""
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}