Components
Loading preview...
Here is Login Card component
@arihantcodes_1f7b8c4d
npx shadcn@latest add https://21st.dev/r/arihantcodes_1f7b8c4d/login-card-1'use client';
import { useCallback, useLayoutEffect, useRef, useState } from 'react';
import Copy from '../copy';
import {
Card,
CardContent,
CardDescription,
CardFooter,
CardHeader,
CardTitle,
} from '@/components/ui/card';
import { Button } from '@/components/ui/button';
import { Input } from '@/components/ui/input';
import { Label } from '@/components/ui/label';
import { Switch } from '@/components/ui/switch';
import { Tabs, TabsContent, TabsList, TabsTrigger } from '@/components/ui/tabs';
import {
Select,
SelectContent,
SelectItem,
SelectTrigger,
SelectValue,
} from '@/components/ui/select';
import { Avatar, AvatarFallback, AvatarImage } from '@/components/ui/avatar';
import { Badge } from '@/components/ui/badge';
import { Progress } from '@/components/ui/progress';
import { Slider } from '@/components/ui/slider';
import {
Bell,
Calendar,
Check,
Cloud,
CreditCard,
Download,
LucideBarChart,
LucideLineChart,
LucidePieChart,
Map,
Mic,
Moon,
Music,
Phone,
Search,
Star,
Sun,
Zap,
} from 'lucide-react';
import { DollarSign, TrendingUp, Users } from 'lucide-react';
import { ChartContainer, ChartTooltip, ChartTooltipContent } from '@/components/ui/chart';
import { PolarAngleAxis, PolarGrid, Radar, RadarChart } from 'recharts';
import { Bar, BarChart, CartesianGrid, Line, LineChart, XAxis } from 'recharts';
import { GetDimensions, GridStyle, GridColumns, addGridStyle, addGridBorders } from '@/utils/GridStyle';
import { useTheme } from 'next-themes';
export default function QuickExpenseCard() {
return (
<Card className="w-[310px]">
<CardHeader>
<CardTitle>Quick Expense</CardTitle>
<CardDescription>Add a new expense quickly</CardDescription>
</CardHeader>
<CardContent>
<form className="space-y-4">
<div className="space-y-2">
<Label htmlFor="amount">Amount</Label>
<Input
id="amount"
placeholder="Enter amount"
type="number"
step="0.01"
/>
</div>
<div className="space-y-2">
<Label htmlFor="category">Category</Label>
<Select>
<SelectTrigger id="category">
<SelectValue placeholder="Select category" />
</SelectTrigger>
<SelectContent>
<SelectItem value="food">Food</SelectItem>
<SelectItem value="transport">Transport</SelectItem>
<SelectItem value="utilities">Utilities</SelectItem>
<SelectItem value="entertainment">Entertainment</SelectItem>
</SelectContent>
</Select>
</div>
<div className="space-y-2">
<Label htmlFor="date">Date</Label>
<Input id="date" type="date" />
</div>
</form>
</CardContent>
<CardFooter>
<Button className="w-full">Add Expense</Button>
</CardFooter>
</Card>
)
}