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 QuickSettingsCard() {
return (
<Card className="w-[310px]">
<CardHeader>
<CardTitle>Quick Settings</CardTitle>
<CardDescription>Adjust your preferences</CardDescription>
</CardHeader>
<CardContent>
<div className="space-y-4">
<div className="flex items-center justify-between">
<Label htmlFor="airplane-mode">Airplane Mode</Label>
<Switch id="airplane-mode" />
</div>
<div className="flex items-center justify-between">
<Label htmlFor="wifi">Wi-Fi</Label>
<Switch id="wifi" />
</div>
<div className="flex items-center justify-between">
<Label htmlFor="bluetooth">Bluetooth</Label>
<Switch id="bluetooth" />
</div>
<div className="space-y-1">
<Label htmlFor="volume">Volume</Label>
<Slider id="volume" defaultValue={[50]} max={100} step={1} />
</div>
</div>
</CardContent>
</Card>
)
}