All checks were successful
Deploy to Test Environment / deploy-to-test (push) Successful in 13m3s
33 lines
1.1 KiB
TypeScript
33 lines
1.1 KiB
TypeScript
import React from 'react';
|
|
import { RecipeSuggester } from '../components/RecipeSuggester';
|
|
import { FlyerCountDisplay } from '../components/FlyerCountDisplay';
|
|
import { Leaderboard } from '../components/Leaderboard';
|
|
|
|
export const Dashboard: React.FC = () => {
|
|
return (
|
|
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-8">
|
|
<h1 className="text-2xl font-bold text-gray-900 dark:text-white mb-6">Dashboard</h1>
|
|
|
|
<div className="grid grid-cols-1 lg:grid-cols-3 gap-6">
|
|
{/* Main Content Area */}
|
|
<div className="lg:col-span-2 space-y-6">
|
|
{/* Recipe Suggester Section */}
|
|
<RecipeSuggester />
|
|
|
|
{/* Other Dashboard Widgets */}
|
|
<div className="bg-white dark:bg-gray-800 shadow rounded-lg p-6">
|
|
<h2 className="text-lg font-medium text-gray-900 dark:text-white mb-4">Your Flyers</h2>
|
|
<FlyerCountDisplay />
|
|
</div>
|
|
</div>
|
|
|
|
{/* Sidebar Area */}
|
|
<div className="space-y-6">
|
|
<Leaderboard />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Dashboard; |