Initial Mission Control dashboard with all pages
This commit is contained in:
parent
3784714227
commit
6925881210
146
app/activity/page.tsx
Normal file
146
app/activity/page.tsx
Normal file
@ -0,0 +1,146 @@
|
|||||||
|
import { DashboardLayout } from "@/components/layout/sidebar";
|
||||||
|
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
|
||||||
|
import { ScrollArea } from "@/components/ui/scroll-area";
|
||||||
|
import { Badge } from "@/components/ui/badge";
|
||||||
|
import {
|
||||||
|
Activity,
|
||||||
|
FileText,
|
||||||
|
Wrench,
|
||||||
|
MessageSquare,
|
||||||
|
Calendar,
|
||||||
|
CheckCircle2,
|
||||||
|
} from "lucide-react";
|
||||||
|
|
||||||
|
const activities = [
|
||||||
|
{
|
||||||
|
id: 1,
|
||||||
|
type: "system",
|
||||||
|
action: "Morning briefing completed",
|
||||||
|
details: "Checked calendar, email, reminders, and disk usage",
|
||||||
|
time: "Today at 7:15 AM",
|
||||||
|
icon: CheckCircle2,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 2,
|
||||||
|
type: "file",
|
||||||
|
action: "Downloads organized",
|
||||||
|
details: "Sorted 81 files into Images (18), Documents (31), Archives (32)",
|
||||||
|
time: "Today at 9:30 AM",
|
||||||
|
icon: FileText,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 3,
|
||||||
|
type: "tool",
|
||||||
|
action: "Created 6 new skills",
|
||||||
|
details: "File System, Browser Automation, Calendar, Email, Knowledge Base, Daily Automation",
|
||||||
|
time: "Yesterday at 5:00 PM",
|
||||||
|
icon: Wrench,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 4,
|
||||||
|
type: "doc",
|
||||||
|
action: "Updated USER.md",
|
||||||
|
details: "Added family details, daily routine, and project status",
|
||||||
|
time: "Yesterday at 4:30 PM",
|
||||||
|
icon: FileText,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 5,
|
||||||
|
type: "communication",
|
||||||
|
action: "Brain dump completed",
|
||||||
|
details: "Captured interests, career, goals, family, and preferences",
|
||||||
|
time: "Yesterday at 3:00 PM",
|
||||||
|
icon: MessageSquare,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 6,
|
||||||
|
type: "system",
|
||||||
|
action: "Daily automation scheduled",
|
||||||
|
details: "Morning briefing cron job set for 7:15 AM daily",
|
||||||
|
time: "Yesterday at 2:45 PM",
|
||||||
|
icon: Calendar,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 7,
|
||||||
|
type: "file",
|
||||||
|
action: "Created DAILY_TOOLS_SETUP.md",
|
||||||
|
details: "Documented all skill integrations and setup instructions",
|
||||||
|
time: "Yesterday at 2:00 PM",
|
||||||
|
icon: FileText,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 8,
|
||||||
|
type: "tool",
|
||||||
|
action: "Installed icalBuddy",
|
||||||
|
details: "Calendar integration now working with Apple Calendar",
|
||||||
|
time: "Yesterday at 1:30 PM",
|
||||||
|
icon: Wrench,
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|
||||||
|
const typeColors: Record<string, string> = {
|
||||||
|
system: "bg-blue-500/10 text-blue-500",
|
||||||
|
file: "bg-green-500/10 text-green-500",
|
||||||
|
tool: "bg-purple-500/10 text-purple-500",
|
||||||
|
doc: "bg-yellow-500/10 text-yellow-500",
|
||||||
|
communication: "bg-pink-500/10 text-pink-500",
|
||||||
|
};
|
||||||
|
|
||||||
|
export default function ActivityPage() {
|
||||||
|
return (
|
||||||
|
<DashboardLayout>
|
||||||
|
<div className="space-y-6">
|
||||||
|
<div>
|
||||||
|
<h1 className="text-3xl font-bold tracking-tight">Activity Feed</h1>
|
||||||
|
<p className="text-muted-foreground mt-1">
|
||||||
|
Everything that's happening in your mission control.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<Card>
|
||||||
|
<CardHeader>
|
||||||
|
<CardTitle className="flex items-center gap-2">
|
||||||
|
<Activity className="w-5 h-5" />
|
||||||
|
Recent Activity
|
||||||
|
</CardTitle>
|
||||||
|
</CardHeader>
|
||||||
|
<CardContent>
|
||||||
|
<ScrollArea className="h-[600px] pr-4">
|
||||||
|
<div className="space-y-6">
|
||||||
|
{activities.map((activity) => {
|
||||||
|
const Icon = activity.icon;
|
||||||
|
return (
|
||||||
|
<div
|
||||||
|
key={activity.id}
|
||||||
|
className="flex gap-4 pb-6 border-b border-border last:border-0"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
className={`w-10 h-10 rounded-full flex items-center justify-center shrink-0 ${
|
||||||
|
typeColors[activity.type]
|
||||||
|
}`}
|
||||||
|
>
|
||||||
|
<Icon className="w-5 h-5" />
|
||||||
|
</div>
|
||||||
|
<div className="flex-1 space-y-1">
|
||||||
|
<div className="flex items-center gap-2">
|
||||||
|
<h4 className="font-medium">{activity.action}</h4>
|
||||||
|
<Badge variant="secondary" className="text-xs">
|
||||||
|
{activity.type}
|
||||||
|
</Badge>
|
||||||
|
</div>
|
||||||
|
<p className="text-sm text-muted-foreground">
|
||||||
|
{activity.details}
|
||||||
|
</p>
|
||||||
|
<p className="text-xs text-muted-foreground">{activity.time}</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
})}
|
||||||
|
</div>
|
||||||
|
</ScrollArea>
|
||||||
|
</CardContent>
|
||||||
|
</Card>
|
||||||
|
</div>
|
||||||
|
</DashboardLayout>
|
||||||
|
);
|
||||||
|
}
|
||||||
197
app/calendar/page.tsx
Normal file
197
app/calendar/page.tsx
Normal file
@ -0,0 +1,197 @@
|
|||||||
|
import { DashboardLayout } from "@/components/layout/sidebar";
|
||||||
|
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
|
||||||
|
import { Badge } from "@/components/ui/badge";
|
||||||
|
import { Calendar as CalendarIcon, Clock, MapPin } from "lucide-react";
|
||||||
|
|
||||||
|
const events = [
|
||||||
|
{
|
||||||
|
id: 1,
|
||||||
|
title: "Yearly Anniversary",
|
||||||
|
date: "February 23, 2026",
|
||||||
|
time: "All day",
|
||||||
|
type: "personal",
|
||||||
|
description: "Anniversary celebration",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 2,
|
||||||
|
title: "Grabbing Anderson's dogs",
|
||||||
|
date: "February 26, 2026",
|
||||||
|
time: "5:30 PM - 6:30 PM",
|
||||||
|
type: "task",
|
||||||
|
description: "Pet sitting duties",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 3,
|
||||||
|
title: "Daily Standup",
|
||||||
|
date: "Every weekday",
|
||||||
|
time: "8:30 AM",
|
||||||
|
type: "work",
|
||||||
|
description: "Toyota iOS team standup",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 4,
|
||||||
|
title: "Group Workout",
|
||||||
|
date: "Every weekday",
|
||||||
|
time: "10:00 AM - 11:00 AM",
|
||||||
|
type: "health",
|
||||||
|
description: "Gym session",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 5,
|
||||||
|
title: "NWW - Cowboy Club",
|
||||||
|
date: "Every Wednesday",
|
||||||
|
time: "Evening",
|
||||||
|
type: "social",
|
||||||
|
description: "No Wives Wednesday with cigars",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 6,
|
||||||
|
title: "Contract Renewal",
|
||||||
|
date: "March 2026",
|
||||||
|
time: "TBD",
|
||||||
|
type: "work",
|
||||||
|
description: "Toyota contract up for renewal",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 7,
|
||||||
|
title: "Mindy Turns 60",
|
||||||
|
date: "2026",
|
||||||
|
time: "TBD",
|
||||||
|
type: "family",
|
||||||
|
description: "Family milestone birthday",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 8,
|
||||||
|
title: "Bailey Turns 35",
|
||||||
|
date: "2026",
|
||||||
|
time: "TBD",
|
||||||
|
type: "family",
|
||||||
|
description: "Family milestone birthday",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 9,
|
||||||
|
title: "Taylor Turns 30",
|
||||||
|
date: "2026",
|
||||||
|
time: "TBD",
|
||||||
|
type: "family",
|
||||||
|
description: "Family milestone birthday",
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|
||||||
|
const typeColors: Record<string, string> = {
|
||||||
|
personal: "bg-pink-500/10 text-pink-500 border-pink-500/20",
|
||||||
|
work: "bg-blue-500/10 text-blue-500 border-blue-500/20",
|
||||||
|
health: "bg-green-500/10 text-green-500 border-green-500/20",
|
||||||
|
social: "bg-purple-500/10 text-purple-500 border-purple-500/20",
|
||||||
|
family: "bg-yellow-500/10 text-yellow-500 border-yellow-500/20",
|
||||||
|
task: "bg-orange-500/10 text-orange-500 border-orange-500/20",
|
||||||
|
};
|
||||||
|
|
||||||
|
export default function CalendarPage() {
|
||||||
|
const today = new Date().toLocaleDateString("en-US", {
|
||||||
|
weekday: "long",
|
||||||
|
year: "numeric",
|
||||||
|
month: "long",
|
||||||
|
day: "numeric",
|
||||||
|
});
|
||||||
|
|
||||||
|
return (
|
||||||
|
<DashboardLayout>
|
||||||
|
<div className="space-y-6">
|
||||||
|
<div className="flex flex-col sm:flex-row sm:items-center sm:justify-between gap-4">
|
||||||
|
<div>
|
||||||
|
<h1 className="text-3xl font-bold tracking-tight">Calendar</h1>
|
||||||
|
<p className="text-muted-foreground mt-1">{today}</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="grid grid-cols-1 lg:grid-cols-3 gap-6">
|
||||||
|
{/* Upcoming Events */}
|
||||||
|
<div className="lg:col-span-2 space-y-4">
|
||||||
|
<h2 className="text-lg font-semibold">Upcoming Events</h2>
|
||||||
|
{events.map((event) => (
|
||||||
|
<Card key={event.id}>
|
||||||
|
<CardContent className="p-4">
|
||||||
|
<div className="flex items-start gap-4">
|
||||||
|
<div className="w-14 h-14 rounded-lg bg-secondary flex flex-col items-center justify-center shrink-0">
|
||||||
|
<span className="text-xs text-muted-foreground uppercase">
|
||||||
|
{event.date.split(" ")[0].slice(0, 3)}
|
||||||
|
</span>
|
||||||
|
<span className="text-lg font-bold">
|
||||||
|
{event.date.match(/\d+/)?.[0] || "--"}
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<div className="flex-1 min-w-0">
|
||||||
|
<div className="flex items-center gap-2 flex-wrap">
|
||||||
|
<h3 className="font-semibold">{event.title}</h3>
|
||||||
|
<Badge
|
||||||
|
variant="outline"
|
||||||
|
className={typeColors[event.type]}
|
||||||
|
>
|
||||||
|
{event.type}
|
||||||
|
</Badge>
|
||||||
|
</div>
|
||||||
|
<p className="text-sm text-muted-foreground mt-1">
|
||||||
|
{event.description}
|
||||||
|
</p>
|
||||||
|
<div className="flex items-center gap-4 mt-2 text-xs text-muted-foreground">
|
||||||
|
<span className="flex items-center gap-1">
|
||||||
|
<Clock className="w-3 h-3" />
|
||||||
|
{event.time}
|
||||||
|
</span>
|
||||||
|
<span className="flex items-center gap-1">
|
||||||
|
<CalendarIcon className="w-3 h-3" />
|
||||||
|
{event.date}
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</CardContent>
|
||||||
|
</Card>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Sidebar */}
|
||||||
|
<div className="space-y-6">
|
||||||
|
<Card>
|
||||||
|
<CardHeader>
|
||||||
|
<CardTitle className="text-base">Today's Summary</CardTitle>
|
||||||
|
</CardHeader>
|
||||||
|
<CardContent className="space-y-4">
|
||||||
|
<div className="flex justify-between text-sm">
|
||||||
|
<span className="text-muted-foreground">Events</span>
|
||||||
|
<span className="font-medium">3</span>
|
||||||
|
</div>
|
||||||
|
<div className="flex justify-between text-sm">
|
||||||
|
<span className="text-muted-foreground">Tasks</span>
|
||||||
|
<span className="font-medium">4</span>
|
||||||
|
</div>
|
||||||
|
<div className="flex justify-between text-sm">
|
||||||
|
<span className="text-muted-foreground">Reminders</span>
|
||||||
|
<span className="font-medium">2</span>
|
||||||
|
</div>
|
||||||
|
</CardContent>
|
||||||
|
</Card>
|
||||||
|
|
||||||
|
<Card>
|
||||||
|
<CardHeader>
|
||||||
|
<CardTitle className="text-base">Quick Actions</CardTitle>
|
||||||
|
</CardHeader>
|
||||||
|
<CardContent className="space-y-2">
|
||||||
|
<button className="w-full text-left px-3 py-2 rounded-lg text-sm hover:bg-accent transition-colors">
|
||||||
|
+ Add Event
|
||||||
|
</button>
|
||||||
|
<button className="w-full text-left px-3 py-2 rounded-lg text-sm hover:bg-accent transition-colors">
|
||||||
|
+ Add Reminder
|
||||||
|
</button>
|
||||||
|
<button className="w-full text-left px-3 py-2 rounded-lg text-sm hover:bg-accent transition-colors">
|
||||||
|
View Full Calendar
|
||||||
|
</button>
|
||||||
|
</CardContent>
|
||||||
|
</Card>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</DashboardLayout>
|
||||||
|
);
|
||||||
|
}
|
||||||
225
app/documents/page.tsx
Normal file
225
app/documents/page.tsx
Normal file
@ -0,0 +1,225 @@
|
|||||||
|
import { DashboardLayout } from "@/components/layout/sidebar";
|
||||||
|
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
|
||||||
|
import { Button } from "@/components/ui/button";
|
||||||
|
import { Input } from "@/components/ui/input";
|
||||||
|
import { Badge } from "@/components/ui/badge";
|
||||||
|
import {
|
||||||
|
FileText,
|
||||||
|
Folder,
|
||||||
|
Search,
|
||||||
|
Plus,
|
||||||
|
MoreVertical,
|
||||||
|
FileCode,
|
||||||
|
FileType,
|
||||||
|
} from "lucide-react";
|
||||||
|
|
||||||
|
const documents = [
|
||||||
|
{
|
||||||
|
id: 1,
|
||||||
|
name: "USER.md",
|
||||||
|
type: "markdown",
|
||||||
|
size: "4.2 KB",
|
||||||
|
updated: "Today",
|
||||||
|
folder: "root",
|
||||||
|
description: "User profile and preferences",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 2,
|
||||||
|
name: "SOUL.md",
|
||||||
|
type: "markdown",
|
||||||
|
size: "2.1 KB",
|
||||||
|
updated: "Today",
|
||||||
|
folder: "root",
|
||||||
|
description: "Assistant personality configuration",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 3,
|
||||||
|
name: "DAILY_TOOLS_SETUP.md",
|
||||||
|
type: "markdown",
|
||||||
|
size: "6.8 KB",
|
||||||
|
updated: "Yesterday",
|
||||||
|
folder: "docs",
|
||||||
|
description: "Tool integration documentation",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 4,
|
||||||
|
name: "AGENTS.md",
|
||||||
|
type: "markdown",
|
||||||
|
size: "3.5 KB",
|
||||||
|
updated: "2 days ago",
|
||||||
|
folder: "root",
|
||||||
|
description: "Workspace guidelines",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 5,
|
||||||
|
name: "organize_downloads.sh",
|
||||||
|
type: "code",
|
||||||
|
size: "2.2 KB",
|
||||||
|
updated: "Yesterday",
|
||||||
|
folder: "scripts",
|
||||||
|
description: "File organization script",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 6,
|
||||||
|
name: "morning_brief.sh",
|
||||||
|
type: "code",
|
||||||
|
size: "3.1 KB",
|
||||||
|
updated: "Yesterday",
|
||||||
|
folder: "scripts",
|
||||||
|
description: "Daily automation script",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 7,
|
||||||
|
name: "file-system-assistant.skill",
|
||||||
|
type: "archive",
|
||||||
|
size: "12 KB",
|
||||||
|
updated: "Yesterday",
|
||||||
|
folder: "skills",
|
||||||
|
description: "Packaged skill file",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 8,
|
||||||
|
name: "email-assistant.skill",
|
||||||
|
type: "archive",
|
||||||
|
size: "15 KB",
|
||||||
|
updated: "Yesterday",
|
||||||
|
folder: "skills",
|
||||||
|
description: "Packaged skill file",
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|
||||||
|
const folders = [
|
||||||
|
{ name: "root", count: 4 },
|
||||||
|
{ name: "docs", count: 1 },
|
||||||
|
{ name: "scripts", count: 2 },
|
||||||
|
{ name: "skills", count: 6 },
|
||||||
|
];
|
||||||
|
|
||||||
|
const typeIcons: Record<string, typeof FileText> = {
|
||||||
|
markdown: FileType,
|
||||||
|
code: FileCode,
|
||||||
|
archive: FileText,
|
||||||
|
default: FileText,
|
||||||
|
};
|
||||||
|
|
||||||
|
const typeColors: Record<string, string> = {
|
||||||
|
markdown: "text-blue-500",
|
||||||
|
code: "text-green-500",
|
||||||
|
archive: "text-yellow-500",
|
||||||
|
default: "text-muted-foreground",
|
||||||
|
};
|
||||||
|
|
||||||
|
export default function DocumentsPage() {
|
||||||
|
return (
|
||||||
|
<DashboardLayout>
|
||||||
|
<div className="space-y-6">
|
||||||
|
<div className="flex flex-col sm:flex-row sm:items-center sm:justify-between gap-4">
|
||||||
|
<div>
|
||||||
|
<h1 className="text-3xl font-bold tracking-tight">Documents</h1>
|
||||||
|
<p className="text-muted-foreground mt-1">
|
||||||
|
All the files and docs created for your mission.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<Button>
|
||||||
|
<Plus className="w-4 h-4 mr-2" />
|
||||||
|
New Document
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="grid grid-cols-1 lg:grid-cols-4 gap-6">
|
||||||
|
{/* Sidebar - Folders */}
|
||||||
|
<div className="lg:col-span-1 space-y-4">
|
||||||
|
<Card>
|
||||||
|
<CardHeader>
|
||||||
|
<CardTitle className="text-base">Folders</CardTitle>
|
||||||
|
</CardHeader>
|
||||||
|
<CardContent className="space-y-1">
|
||||||
|
{folders.map((folder) => (
|
||||||
|
<button
|
||||||
|
key={folder.name}
|
||||||
|
className="w-full flex items-center justify-between px-3 py-2 rounded-lg text-sm hover:bg-accent transition-colors"
|
||||||
|
>
|
||||||
|
<span className="flex items-center gap-2">
|
||||||
|
<Folder className="w-4 h-4 text-muted-foreground" />
|
||||||
|
{folder.name}
|
||||||
|
</span>
|
||||||
|
<span className="text-xs text-muted-foreground">
|
||||||
|
{folder.count}
|
||||||
|
</span>
|
||||||
|
</button>
|
||||||
|
))}
|
||||||
|
</CardContent>
|
||||||
|
</Card>
|
||||||
|
|
||||||
|
<Card>
|
||||||
|
<CardHeader>
|
||||||
|
<CardTitle className="text-base">Storage</CardTitle>
|
||||||
|
</CardHeader>
|
||||||
|
<CardContent className="space-y-4">
|
||||||
|
<div className="space-y-2">
|
||||||
|
<div className="flex justify-between text-sm">
|
||||||
|
<span className="text-muted-foreground">Used</span>
|
||||||
|
<span>45.2 GB</span>
|
||||||
|
</div>
|
||||||
|
<div className="h-2 bg-secondary rounded-full overflow-hidden">
|
||||||
|
<div className="h-full w-[45%] bg-gradient-to-r from-blue-500 to-purple-500 rounded-full" />
|
||||||
|
</div>
|
||||||
|
<p className="text-xs text-muted-foreground">
|
||||||
|
54.8 GB free of 100 GB
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</CardContent>
|
||||||
|
</Card>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Document List */}
|
||||||
|
<div className="lg:col-span-3 space-y-4">
|
||||||
|
<div className="flex gap-2">
|
||||||
|
<div className="relative flex-1">
|
||||||
|
<Search className="absolute left-3 top-1/2 -translate-y-1/2 w-4 h-4 text-muted-foreground" />
|
||||||
|
<Input placeholder="Search documents..." className="pl-9" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<Card>
|
||||||
|
<CardContent className="p-0">
|
||||||
|
<div className="divide-y divide-border">
|
||||||
|
{documents.map((doc) => {
|
||||||
|
const Icon = typeIcons[doc.type] || typeIcons.default;
|
||||||
|
const colorClass = typeColors[doc.type] || typeColors.default;
|
||||||
|
return (
|
||||||
|
<div
|
||||||
|
key={doc.id}
|
||||||
|
className="flex items-center gap-4 p-4 hover:bg-accent/50 transition-colors cursor-pointer"
|
||||||
|
>
|
||||||
|
<Icon className={`w-8 h-8 ${colorClass}`} />
|
||||||
|
<div className="flex-1 min-w-0">
|
||||||
|
<div className="flex items-center gap-2">
|
||||||
|
<h4 className="font-medium truncate">{doc.name}</h4>
|
||||||
|
<Badge variant="secondary" className="text-xs shrink-0">
|
||||||
|
{doc.folder}
|
||||||
|
</Badge>
|
||||||
|
</div>
|
||||||
|
<p className="text-sm text-muted-foreground truncate">
|
||||||
|
{doc.description}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<div className="hidden sm:block text-right text-sm text-muted-foreground">
|
||||||
|
<p>{doc.size}</p>
|
||||||
|
<p className="text-xs">{doc.updated}</p>
|
||||||
|
</div>
|
||||||
|
<Button variant="ghost" size="icon">
|
||||||
|
<MoreVertical className="w-4 h-4" />
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
})}
|
||||||
|
</div>
|
||||||
|
</CardContent>
|
||||||
|
</Card>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</DashboardLayout>
|
||||||
|
);
|
||||||
|
}
|
||||||
128
app/globals.css
128
app/globals.css
@ -1,26 +1,126 @@
|
|||||||
@import "tailwindcss";
|
@import "tailwindcss";
|
||||||
|
@import "tw-animate-css";
|
||||||
|
@import "shadcn/tailwind.css";
|
||||||
|
|
||||||
:root {
|
@custom-variant dark (&:is(.dark *));
|
||||||
--background: #ffffff;
|
|
||||||
--foreground: #171717;
|
|
||||||
}
|
|
||||||
|
|
||||||
@theme inline {
|
@theme inline {
|
||||||
--color-background: var(--background);
|
--color-background: var(--background);
|
||||||
--color-foreground: var(--foreground);
|
--color-foreground: var(--foreground);
|
||||||
--font-sans: var(--font-geist-sans);
|
--font-sans: var(--font-geist-sans);
|
||||||
--font-mono: var(--font-geist-mono);
|
--font-mono: var(--font-geist-mono);
|
||||||
|
--color-sidebar-ring: var(--sidebar-ring);
|
||||||
|
--color-sidebar-border: var(--sidebar-border);
|
||||||
|
--color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
|
||||||
|
--color-sidebar-accent: var(--sidebar-accent);
|
||||||
|
--color-sidebar-primary-foreground: var(--sidebar-primary-foreground);
|
||||||
|
--color-sidebar-primary: var(--sidebar-primary);
|
||||||
|
--color-sidebar-foreground: var(--sidebar-foreground);
|
||||||
|
--color-sidebar: var(--sidebar);
|
||||||
|
--color-chart-5: var(--chart-5);
|
||||||
|
--color-chart-4: var(--chart-4);
|
||||||
|
--color-chart-3: var(--chart-3);
|
||||||
|
--color-chart-2: var(--chart-2);
|
||||||
|
--color-chart-1: var(--chart-1);
|
||||||
|
--color-ring: var(--ring);
|
||||||
|
--color-input: var(--input);
|
||||||
|
--color-border: var(--border);
|
||||||
|
--color-destructive: var(--destructive);
|
||||||
|
--color-accent-foreground: var(--accent-foreground);
|
||||||
|
--color-accent: var(--accent);
|
||||||
|
--color-muted-foreground: var(--muted-foreground);
|
||||||
|
--color-muted: var(--muted);
|
||||||
|
--color-secondary-foreground: var(--secondary-foreground);
|
||||||
|
--color-secondary: var(--secondary);
|
||||||
|
--color-primary-foreground: var(--primary-foreground);
|
||||||
|
--color-primary: var(--primary);
|
||||||
|
--color-popover-foreground: var(--popover-foreground);
|
||||||
|
--color-popover: var(--popover);
|
||||||
|
--color-card-foreground: var(--card-foreground);
|
||||||
|
--color-card: var(--card);
|
||||||
|
--radius-sm: calc(var(--radius) - 4px);
|
||||||
|
--radius-md: calc(var(--radius) - 2px);
|
||||||
|
--radius-lg: var(--radius);
|
||||||
|
--radius-xl: calc(var(--radius) + 4px);
|
||||||
|
--radius-2xl: calc(var(--radius) + 8px);
|
||||||
|
--radius-3xl: calc(var(--radius) + 12px);
|
||||||
|
--radius-4xl: calc(var(--radius) + 16px);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (prefers-color-scheme: dark) {
|
:root {
|
||||||
:root {
|
--radius: 0.625rem;
|
||||||
--background: #0a0a0a;
|
--background: oklch(1 0 0);
|
||||||
--foreground: #ededed;
|
--foreground: oklch(0.129 0.042 264.695);
|
||||||
|
--card: oklch(1 0 0);
|
||||||
|
--card-foreground: oklch(0.129 0.042 264.695);
|
||||||
|
--popover: oklch(1 0 0);
|
||||||
|
--popover-foreground: oklch(0.129 0.042 264.695);
|
||||||
|
--primary: oklch(0.208 0.042 265.755);
|
||||||
|
--primary-foreground: oklch(0.984 0.003 247.858);
|
||||||
|
--secondary: oklch(0.968 0.007 247.896);
|
||||||
|
--secondary-foreground: oklch(0.208 0.042 265.755);
|
||||||
|
--muted: oklch(0.968 0.007 247.896);
|
||||||
|
--muted-foreground: oklch(0.554 0.046 257.417);
|
||||||
|
--accent: oklch(0.968 0.007 247.896);
|
||||||
|
--accent-foreground: oklch(0.208 0.042 265.755);
|
||||||
|
--destructive: oklch(0.577 0.245 27.325);
|
||||||
|
--border: oklch(0.929 0.013 255.508);
|
||||||
|
--input: oklch(0.929 0.013 255.508);
|
||||||
|
--ring: oklch(0.704 0.04 256.788);
|
||||||
|
--chart-1: oklch(0.646 0.222 41.116);
|
||||||
|
--chart-2: oklch(0.6 0.118 184.704);
|
||||||
|
--chart-3: oklch(0.398 0.07 227.392);
|
||||||
|
--chart-4: oklch(0.828 0.189 84.429);
|
||||||
|
--chart-5: oklch(0.769 0.188 70.08);
|
||||||
|
--sidebar: oklch(0.984 0.003 247.858);
|
||||||
|
--sidebar-foreground: oklch(0.129 0.042 264.695);
|
||||||
|
--sidebar-primary: oklch(0.208 0.042 265.755);
|
||||||
|
--sidebar-primary-foreground: oklch(0.984 0.003 247.858);
|
||||||
|
--sidebar-accent: oklch(0.968 0.007 247.896);
|
||||||
|
--sidebar-accent-foreground: oklch(0.208 0.042 265.755);
|
||||||
|
--sidebar-border: oklch(0.929 0.013 255.508);
|
||||||
|
--sidebar-ring: oklch(0.704 0.04 256.788);
|
||||||
|
}
|
||||||
|
|
||||||
|
.dark {
|
||||||
|
--background: oklch(0.129 0.042 264.695);
|
||||||
|
--foreground: oklch(0.984 0.003 247.858);
|
||||||
|
--card: oklch(0.208 0.042 265.755);
|
||||||
|
--card-foreground: oklch(0.984 0.003 247.858);
|
||||||
|
--popover: oklch(0.208 0.042 265.755);
|
||||||
|
--popover-foreground: oklch(0.984 0.003 247.858);
|
||||||
|
--primary: oklch(0.929 0.013 255.508);
|
||||||
|
--primary-foreground: oklch(0.208 0.042 265.755);
|
||||||
|
--secondary: oklch(0.279 0.041 260.031);
|
||||||
|
--secondary-foreground: oklch(0.984 0.003 247.858);
|
||||||
|
--muted: oklch(0.279 0.041 260.031);
|
||||||
|
--muted-foreground: oklch(0.704 0.04 256.788);
|
||||||
|
--accent: oklch(0.279 0.041 260.031);
|
||||||
|
--accent-foreground: oklch(0.984 0.003 247.858);
|
||||||
|
--destructive: oklch(0.704 0.191 22.216);
|
||||||
|
--border: oklch(1 0 0 / 10%);
|
||||||
|
--input: oklch(1 0 0 / 15%);
|
||||||
|
--ring: oklch(0.551 0.027 264.364);
|
||||||
|
--chart-1: oklch(0.488 0.243 264.376);
|
||||||
|
--chart-2: oklch(0.696 0.17 162.48);
|
||||||
|
--chart-3: oklch(0.769 0.188 70.08);
|
||||||
|
--chart-4: oklch(0.627 0.265 303.9);
|
||||||
|
--chart-5: oklch(0.645 0.246 16.439);
|
||||||
|
--sidebar: oklch(0.208 0.042 265.755);
|
||||||
|
--sidebar-foreground: oklch(0.984 0.003 247.858);
|
||||||
|
--sidebar-primary: oklch(0.488 0.243 264.376);
|
||||||
|
--sidebar-primary-foreground: oklch(0.984 0.003 247.858);
|
||||||
|
--sidebar-accent: oklch(0.279 0.041 260.031);
|
||||||
|
--sidebar-accent-foreground: oklch(0.984 0.003 247.858);
|
||||||
|
--sidebar-border: oklch(1 0 0 / 10%);
|
||||||
|
--sidebar-ring: oklch(0.551 0.027 264.364);
|
||||||
|
}
|
||||||
|
|
||||||
|
@layer base {
|
||||||
|
* {
|
||||||
|
@apply border-border outline-ring/50;
|
||||||
|
}
|
||||||
|
body {
|
||||||
|
@apply bg-background text-foreground;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
|
||||||
background: var(--background);
|
|
||||||
color: var(--foreground);
|
|
||||||
font-family: Arial, Helvetica, sans-serif;
|
|
||||||
}
|
|
||||||
|
|||||||
@ -13,8 +13,8 @@ const geistMono = Geist_Mono({
|
|||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Create Next App",
|
title: "Mission Control | TopDogLabs",
|
||||||
description: "Generated by create next app",
|
description: "Central hub for activity, tasks, goals, and tools",
|
||||||
};
|
};
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
@ -23,9 +23,9 @@ export default function RootLayout({
|
|||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}>) {
|
||||||
return (
|
return (
|
||||||
<html lang="en">
|
<html lang="en" className="dark">
|
||||||
<body
|
<body
|
||||||
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
|
className={`${geistSans.variable} ${geistMono.variable} antialiased bg-background`}
|
||||||
>
|
>
|
||||||
{children}
|
{children}
|
||||||
</body>
|
</body>
|
||||||
|
|||||||
223
app/mission/page.tsx
Normal file
223
app/mission/page.tsx
Normal file
@ -0,0 +1,223 @@
|
|||||||
|
import { DashboardLayout } from "@/components/layout/sidebar";
|
||||||
|
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
|
||||||
|
import { Badge } from "@/components/ui/badge";
|
||||||
|
import { Target, TrendingUp, Heart, Plane, DollarSign, Briefcase } from "lucide-react";
|
||||||
|
|
||||||
|
const missionStatement = {
|
||||||
|
title: "The Mission",
|
||||||
|
description: "Build a sustainable side hustle through iOS apps to achieve financial independence, travel with Heidi, take care of family, and retire on my own terms — all while staying healthy and having fun.",
|
||||||
|
};
|
||||||
|
|
||||||
|
const coreValues = [
|
||||||
|
{ name: "Family", icon: Heart, description: "Priority #1 — take care of loved ones" },
|
||||||
|
{ name: "Health", icon: Target, description: "Stay fit, strong, and mobile" },
|
||||||
|
{ name: "Fun", icon: TrendingUp, description: "Enjoy the journey, not just the destination" },
|
||||||
|
{ name: "Adventure", icon: Plane, description: "Travel and experience new things" },
|
||||||
|
];
|
||||||
|
|
||||||
|
const goals = [
|
||||||
|
{
|
||||||
|
id: 1,
|
||||||
|
title: "Double Retirement Savings",
|
||||||
|
current: 50,
|
||||||
|
target: 100,
|
||||||
|
unit: "%",
|
||||||
|
category: "financial",
|
||||||
|
deadline: "Ongoing",
|
||||||
|
status: "in-progress",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 2,
|
||||||
|
title: "Build iOS App Empire",
|
||||||
|
current: 6,
|
||||||
|
target: 20,
|
||||||
|
unit: "apps",
|
||||||
|
category: "business",
|
||||||
|
deadline: "2027",
|
||||||
|
status: "in-progress",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 3,
|
||||||
|
title: "Replace Contract Income",
|
||||||
|
current: 5,
|
||||||
|
target: 100,
|
||||||
|
unit: "%",
|
||||||
|
category: "financial",
|
||||||
|
deadline: "2027",
|
||||||
|
status: "in-progress",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 4,
|
||||||
|
title: "Travel with Heidi",
|
||||||
|
current: 0,
|
||||||
|
target: 10,
|
||||||
|
unit: "countries",
|
||||||
|
category: "adventure",
|
||||||
|
deadline: "2028",
|
||||||
|
status: "not-started",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 5,
|
||||||
|
title: "Family Trip with Mom",
|
||||||
|
current: 0,
|
||||||
|
target: 1,
|
||||||
|
unit: "trip",
|
||||||
|
category: "family",
|
||||||
|
deadline: "2026",
|
||||||
|
status: "planning",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 6,
|
||||||
|
title: "Milestone Birthday Trip",
|
||||||
|
current: 0,
|
||||||
|
target: 1,
|
||||||
|
unit: "trip",
|
||||||
|
category: "family",
|
||||||
|
deadline: "2026",
|
||||||
|
status: "planning",
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|
||||||
|
const kpis = [
|
||||||
|
{ label: "Apps Built", value: "6", change: "+6 since Dec 2024", icon: Briefcase },
|
||||||
|
{ label: "Apps Live", value: "2", change: "2 pending LLC", icon: TrendingUp },
|
||||||
|
{ label: "Contract Months Left", value: "13", change: "Renews Mar 2026", icon: DollarSign },
|
||||||
|
{ label: "Morning Streak", value: "7", change: "days consistent", icon: Target },
|
||||||
|
];
|
||||||
|
|
||||||
|
const categoryColors: Record<string, string> = {
|
||||||
|
financial: "bg-green-500/10 text-green-500",
|
||||||
|
business: "bg-blue-500/10 text-blue-500",
|
||||||
|
adventure: "bg-purple-500/10 text-purple-500",
|
||||||
|
family: "bg-pink-500/10 text-pink-500",
|
||||||
|
};
|
||||||
|
|
||||||
|
const statusColors: Record<string, string> = {
|
||||||
|
"in-progress": "bg-yellow-500/10 text-yellow-500",
|
||||||
|
"not-started": "bg-gray-500/10 text-gray-500",
|
||||||
|
planning: "bg-blue-500/10 text-blue-500",
|
||||||
|
completed: "bg-green-500/10 text-green-500",
|
||||||
|
};
|
||||||
|
|
||||||
|
export default function MissionPage() {
|
||||||
|
return (
|
||||||
|
<DashboardLayout>
|
||||||
|
<div className="space-y-8">
|
||||||
|
{/* Header */}
|
||||||
|
<div>
|
||||||
|
<h1 className="text-3xl font-bold tracking-tight">The Mission</h1>
|
||||||
|
<p className="text-muted-foreground mt-1">
|
||||||
|
Your goals, values, and the path to freedom.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Mission Statement */}
|
||||||
|
<Card className="bg-gradient-to-br from-blue-500/5 via-purple-500/5 to-pink-500/5 border-blue-500/20">
|
||||||
|
<CardContent className="p-6">
|
||||||
|
<h2 className="text-xl font-bold mb-3">{missionStatement.title}</h2>
|
||||||
|
<p className="text-lg leading-relaxed text-muted-foreground">
|
||||||
|
{missionStatement.description}
|
||||||
|
</p>
|
||||||
|
</CardContent>
|
||||||
|
</Card>
|
||||||
|
|
||||||
|
{/* KPIs */}
|
||||||
|
<div className="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-4">
|
||||||
|
{kpis.map((kpi) => {
|
||||||
|
const Icon = kpi.icon;
|
||||||
|
return (
|
||||||
|
<Card key={kpi.label}>
|
||||||
|
<CardHeader className="flex flex-row items-center justify-between pb-2">
|
||||||
|
<CardTitle className="text-sm font-medium text-muted-foreground">
|
||||||
|
{kpi.label}
|
||||||
|
</CardTitle>
|
||||||
|
<Icon className="w-4 h-4 text-muted-foreground" />
|
||||||
|
</CardHeader>
|
||||||
|
<CardContent>
|
||||||
|
<div className="text-2xl font-bold">{kpi.value}</div>
|
||||||
|
<p className="text-xs text-muted-foreground mt-1">{kpi.change}</p>
|
||||||
|
</CardContent>
|
||||||
|
</Card>
|
||||||
|
);
|
||||||
|
})}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Core Values */}
|
||||||
|
<div>
|
||||||
|
<h2 className="text-xl font-bold mb-4">Core Values</h2>
|
||||||
|
<div className="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-4">
|
||||||
|
{coreValues.map((value) => {
|
||||||
|
const Icon = value.icon;
|
||||||
|
return (
|
||||||
|
<Card key={value.name}>
|
||||||
|
<CardContent className="p-4 text-center">
|
||||||
|
<div className="w-12 h-12 rounded-full bg-primary/10 flex items-center justify-center mx-auto mb-3">
|
||||||
|
<Icon className="w-6 h-6 text-primary" />
|
||||||
|
</div>
|
||||||
|
<h3 className="font-semibold">{value.name}</h3>
|
||||||
|
<p className="text-sm text-muted-foreground mt-1">
|
||||||
|
{value.description}
|
||||||
|
</p>
|
||||||
|
</CardContent>
|
||||||
|
</Card>
|
||||||
|
);
|
||||||
|
})}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Goals */}
|
||||||
|
<div>
|
||||||
|
<h2 className="text-xl font-bold mb-4">Goals</h2>
|
||||||
|
<div className="space-y-4">
|
||||||
|
{goals.map((goal) => (
|
||||||
|
<Card key={goal.id}>
|
||||||
|
<CardContent className="p-4">
|
||||||
|
<div className="flex flex-col sm:flex-row sm:items-center gap-4">
|
||||||
|
<div className="flex-1">
|
||||||
|
<div className="flex items-center gap-2 flex-wrap">
|
||||||
|
<h3 className="font-semibold">{goal.title}</h3>
|
||||||
|
<Badge className={categoryColors[goal.category]}>
|
||||||
|
{goal.category}
|
||||||
|
</Badge>
|
||||||
|
<Badge className={statusColors[goal.status]}>
|
||||||
|
{goal.status}
|
||||||
|
</Badge>
|
||||||
|
</div>
|
||||||
|
<p className="text-sm text-muted-foreground mt-1">
|
||||||
|
Deadline: {goal.deadline}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<div className="sm:w-48">
|
||||||
|
<div className="flex justify-between text-sm mb-1">
|
||||||
|
<span className="text-muted-foreground">Progress</span>
|
||||||
|
<span className="font-medium">
|
||||||
|
{goal.current}/{goal.target} {goal.unit}
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<div className="h-2 bg-secondary rounded-full overflow-hidden">
|
||||||
|
<div
|
||||||
|
className="h-full bg-gradient-to-r from-blue-500 to-purple-500 rounded-full transition-all"
|
||||||
|
style={{ width: `${(goal.current / goal.target) * 100}%` }}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</CardContent>
|
||||||
|
</Card>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Quote */}
|
||||||
|
<Card className="bg-gradient-to-r from-slate-800 to-slate-900 border-0">
|
||||||
|
<CardContent className="p-6 text-center">
|
||||||
|
<p className="text-lg italic text-slate-300">
|
||||||
|
"53 is just the start of the best chapter."
|
||||||
|
</p>
|
||||||
|
<p className="text-sm text-slate-500 mt-2">— The Mission</p>
|
||||||
|
</CardContent>
|
||||||
|
</Card>
|
||||||
|
</div>
|
||||||
|
</DashboardLayout>
|
||||||
|
);
|
||||||
|
}
|
||||||
223
app/page.tsx
223
app/page.tsx
@ -1,65 +1,174 @@
|
|||||||
import Image from "next/image";
|
import { DashboardLayout } from "@/components/layout/sidebar";
|
||||||
|
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
|
||||||
|
import { Activity, Calendar, CheckCircle2, Target, TrendingUp, Clock } from "lucide-react";
|
||||||
|
|
||||||
export default function Home() {
|
const kpiData = [
|
||||||
|
{
|
||||||
|
title: "Active Tasks",
|
||||||
|
value: "12",
|
||||||
|
change: "+3 today",
|
||||||
|
icon: CheckCircle2,
|
||||||
|
trend: "up",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Goals Progress",
|
||||||
|
value: "64%",
|
||||||
|
change: "+8% this week",
|
||||||
|
icon: Target,
|
||||||
|
trend: "up",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Apps Built",
|
||||||
|
value: "6",
|
||||||
|
change: "2 in App Store",
|
||||||
|
icon: TrendingUp,
|
||||||
|
trend: "up",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Year Progress",
|
||||||
|
value: "14%",
|
||||||
|
change: "Day 51 of 365",
|
||||||
|
icon: Clock,
|
||||||
|
trend: "neutral",
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|
||||||
|
const recentActivity = [
|
||||||
|
{ action: "Organized Downloads", time: "2 hours ago", type: "file" },
|
||||||
|
{ action: "Completed morning briefing", time: "5 hours ago", type: "system" },
|
||||||
|
{ action: "Created 5 new skills", time: "1 day ago", type: "tool" },
|
||||||
|
{ action: "Updated USER.md", time: "2 days ago", type: "doc" },
|
||||||
|
];
|
||||||
|
|
||||||
|
const upcomingEvents = [
|
||||||
|
{ title: "Yearly Anniversary", date: "Feb 23", type: "personal" },
|
||||||
|
{ title: "Grabbing Anderson's dogs", date: "Feb 26, 5:30 PM", type: "task" },
|
||||||
|
{ title: "Contract Renewal Check", date: "Mar 2026", type: "work" },
|
||||||
|
];
|
||||||
|
|
||||||
|
export default function DashboardPage() {
|
||||||
return (
|
return (
|
||||||
<div className="flex min-h-screen items-center justify-center bg-zinc-50 font-sans dark:bg-black">
|
<DashboardLayout>
|
||||||
<main className="flex min-h-screen w-full max-w-3xl flex-col items-center justify-between py-32 px-16 bg-white dark:bg-black sm:items-start">
|
<div className="space-y-8">
|
||||||
<Image
|
{/* Header */}
|
||||||
className="dark:invert"
|
<div>
|
||||||
src="/next.svg"
|
<h1 className="text-3xl font-bold tracking-tight">Dashboard</h1>
|
||||||
alt="Next.js logo"
|
<p className="text-muted-foreground mt-1">
|
||||||
width={100}
|
Welcome back, Matt. Here's your mission overview.
|
||||||
height={20}
|
|
||||||
priority
|
|
||||||
/>
|
|
||||||
<div className="flex flex-col items-center gap-6 text-center sm:items-start sm:text-left">
|
|
||||||
<h1 className="max-w-xs text-3xl font-semibold leading-10 tracking-tight text-black dark:text-zinc-50">
|
|
||||||
To get started, edit the page.tsx file.
|
|
||||||
</h1>
|
|
||||||
<p className="max-w-md text-lg leading-8 text-zinc-600 dark:text-zinc-400">
|
|
||||||
Looking for a starting point or more instructions? Head over to{" "}
|
|
||||||
<a
|
|
||||||
href="https://vercel.com/templates?framework=next.js&utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app"
|
|
||||||
className="font-medium text-zinc-950 dark:text-zinc-50"
|
|
||||||
>
|
|
||||||
Templates
|
|
||||||
</a>{" "}
|
|
||||||
or the{" "}
|
|
||||||
<a
|
|
||||||
href="https://nextjs.org/learn?utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app"
|
|
||||||
className="font-medium text-zinc-950 dark:text-zinc-50"
|
|
||||||
>
|
|
||||||
Learning
|
|
||||||
</a>{" "}
|
|
||||||
center.
|
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<div className="flex flex-col gap-4 text-base font-medium sm:flex-row">
|
|
||||||
<a
|
{/* KPI Cards */}
|
||||||
className="flex h-12 w-full items-center justify-center gap-2 rounded-full bg-foreground px-5 text-background transition-colors hover:bg-[#383838] dark:hover:bg-[#ccc] md:w-[158px]"
|
<div className="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-4">
|
||||||
href="https://vercel.com/new?utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app"
|
{kpiData.map((kpi) => {
|
||||||
target="_blank"
|
const Icon = kpi.icon;
|
||||||
rel="noopener noreferrer"
|
return (
|
||||||
>
|
<Card key={kpi.title}>
|
||||||
<Image
|
<CardHeader className="flex flex-row items-center justify-between pb-2">
|
||||||
className="dark:invert"
|
<CardTitle className="text-sm font-medium text-muted-foreground">
|
||||||
src="/vercel.svg"
|
{kpi.title}
|
||||||
alt="Vercel logomark"
|
</CardTitle>
|
||||||
width={16}
|
<Icon className="w-4 h-4 text-muted-foreground" />
|
||||||
height={16}
|
</CardHeader>
|
||||||
/>
|
<CardContent>
|
||||||
Deploy Now
|
<div className="text-2xl font-bold">{kpi.value}</div>
|
||||||
</a>
|
<p className="text-xs text-muted-foreground mt-1">{kpi.change}</p>
|
||||||
<a
|
</CardContent>
|
||||||
className="flex h-12 w-full items-center justify-center rounded-full border border-solid border-black/[.08] px-5 transition-colors hover:border-transparent hover:bg-black/[.04] dark:border-white/[.145] dark:hover:bg-[#1a1a1a] md:w-[158px]"
|
</Card>
|
||||||
href="https://nextjs.org/docs?utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app"
|
);
|
||||||
target="_blank"
|
})}
|
||||||
rel="noopener noreferrer"
|
|
||||||
>
|
|
||||||
Documentation
|
|
||||||
</a>
|
|
||||||
</div>
|
</div>
|
||||||
</main>
|
|
||||||
|
{/* Two Column Layout */}
|
||||||
|
<div className="grid grid-cols-1 lg:grid-cols-2 gap-6">
|
||||||
|
{/* Recent Activity */}
|
||||||
|
<Card>
|
||||||
|
<CardHeader>
|
||||||
|
<CardTitle className="flex items-center gap-2">
|
||||||
|
<Activity className="w-5 h-5" />
|
||||||
|
Recent Activity
|
||||||
|
</CardTitle>
|
||||||
|
</CardHeader>
|
||||||
|
<CardContent>
|
||||||
|
<div className="space-y-4">
|
||||||
|
{recentActivity.map((item, i) => (
|
||||||
|
<div key={i} className="flex items-start gap-3 pb-3 border-b border-border last:border-0 last:pb-0">
|
||||||
|
<div className="w-2 h-2 rounded-full bg-primary mt-2" />
|
||||||
|
<div className="flex-1">
|
||||||
|
<p className="text-sm font-medium">{item.action}</p>
|
||||||
|
<p className="text-xs text-muted-foreground">{item.time}</p>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
</CardContent>
|
||||||
|
</Card>
|
||||||
|
|
||||||
|
{/* Upcoming Events */}
|
||||||
|
<Card>
|
||||||
|
<CardHeader>
|
||||||
|
<CardTitle className="flex items-center gap-2">
|
||||||
|
<Calendar className="w-5 h-5" />
|
||||||
|
Upcoming Events
|
||||||
|
</CardTitle>
|
||||||
|
</CardHeader>
|
||||||
|
<CardContent>
|
||||||
|
<div className="space-y-4">
|
||||||
|
{upcomingEvents.map((event, i) => (
|
||||||
|
<div key={i} className="flex items-start gap-3 pb-3 border-b border-border last:border-0 last:pb-0">
|
||||||
|
<div className="w-2 h-2 rounded-full bg-blue-500 mt-2" />
|
||||||
|
<div className="flex-1">
|
||||||
|
<p className="text-sm font-medium">{event.title}</p>
|
||||||
|
<p className="text-xs text-muted-foreground">{event.date}</p>
|
||||||
|
</div>
|
||||||
|
<span className="text-xs px-2 py-1 rounded-full bg-secondary text-secondary-foreground">
|
||||||
|
{event.type}
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
</CardContent>
|
||||||
|
</Card>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Mission Progress */}
|
||||||
|
<Card>
|
||||||
|
<CardHeader>
|
||||||
|
<CardTitle>Mission Progress</CardTitle>
|
||||||
|
</CardHeader>
|
||||||
|
<CardContent>
|
||||||
|
<div className="space-y-4">
|
||||||
|
<div>
|
||||||
|
<div className="flex justify-between text-sm mb-2">
|
||||||
|
<span>Retirement Goal</span>
|
||||||
|
<span className="text-muted-foreground">50% complete</span>
|
||||||
|
</div>
|
||||||
|
<div className="h-2 bg-secondary rounded-full overflow-hidden">
|
||||||
|
<div className="h-full w-1/2 bg-gradient-to-r from-blue-500 to-purple-500 rounded-full" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<div className="flex justify-between text-sm mb-2">
|
||||||
|
<span>iOS Apps Portfolio</span>
|
||||||
|
<span className="text-muted-foreground">6 apps built</span>
|
||||||
|
</div>
|
||||||
|
<div className="h-2 bg-secondary rounded-full overflow-hidden">
|
||||||
|
<div className="h-full w-3/4 bg-gradient-to-r from-green-500 to-emerald-500 rounded-full" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<div className="flex justify-between text-sm mb-2">
|
||||||
|
<span>Side Hustle Revenue</span>
|
||||||
|
<span className="text-muted-foreground">Just getting started</span>
|
||||||
|
</div>
|
||||||
|
<div className="h-2 bg-secondary rounded-full overflow-hidden">
|
||||||
|
<div className="h-full w-[5%] bg-gradient-to-r from-orange-500 to-red-500 rounded-full" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</CardContent>
|
||||||
|
</Card>
|
||||||
|
</div>
|
||||||
|
</DashboardLayout>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
199
app/tasks/page.tsx
Normal file
199
app/tasks/page.tsx
Normal file
@ -0,0 +1,199 @@
|
|||||||
|
import { DashboardLayout } from "@/components/layout/sidebar";
|
||||||
|
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
|
||||||
|
import { Badge } from "@/components/ui/badge";
|
||||||
|
import { Button } from "@/components/ui/button";
|
||||||
|
import { Plus, Calendar, CheckCircle2, Circle, Clock } from "lucide-react";
|
||||||
|
|
||||||
|
const columns = [
|
||||||
|
{
|
||||||
|
id: "todo",
|
||||||
|
title: "To Do",
|
||||||
|
tasks: [
|
||||||
|
{
|
||||||
|
id: 1,
|
||||||
|
title: "Submit LLC paperwork",
|
||||||
|
description: "For remaining iOS apps",
|
||||||
|
priority: "high",
|
||||||
|
due: "ASAP",
|
||||||
|
tags: ["business", "legal"],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 2,
|
||||||
|
title: "Fix App Clips testing",
|
||||||
|
description: "Debug the in-progress app",
|
||||||
|
priority: "high",
|
||||||
|
due: "This week",
|
||||||
|
tags: ["ios", "development"],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 3,
|
||||||
|
title: "Plan fishing trip details",
|
||||||
|
description: "36hr offshore with Jeromy",
|
||||||
|
priority: "medium",
|
||||||
|
due: "Soon",
|
||||||
|
tags: ["family", "fun"],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "inprogress",
|
||||||
|
title: "In Progress",
|
||||||
|
tasks: [
|
||||||
|
{
|
||||||
|
id: 4,
|
||||||
|
title: "Mission Control Dashboard",
|
||||||
|
description: "Building the central hub",
|
||||||
|
priority: "high",
|
||||||
|
due: "Today",
|
||||||
|
tags: ["project", "development"],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 5,
|
||||||
|
title: "Toyota contract work",
|
||||||
|
description: "iOS Lead Architect duties",
|
||||||
|
priority: "high",
|
||||||
|
due: "Daily",
|
||||||
|
tags: ["work", "contract"],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "done",
|
||||||
|
title: "Done",
|
||||||
|
tasks: [
|
||||||
|
{
|
||||||
|
id: 6,
|
||||||
|
title: "Created 6 iOS apps",
|
||||||
|
description: "2 live, 2 pending, 1 in review, 1 in progress",
|
||||||
|
priority: "high",
|
||||||
|
due: "Completed",
|
||||||
|
tags: ["ios", "milestone"],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 7,
|
||||||
|
title: "Daily skills automation",
|
||||||
|
description: "File system, calendar, email, reminders",
|
||||||
|
priority: "medium",
|
||||||
|
due: "Completed",
|
||||||
|
tags: ["automation", "system"],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 8,
|
||||||
|
title: "Morning briefing setup",
|
||||||
|
description: "Scheduled for 7:15 AM daily",
|
||||||
|
priority: "medium",
|
||||||
|
due: "Completed",
|
||||||
|
tags: ["automation", "routine"],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|
||||||
|
const priorityColors: Record<string, string> = {
|
||||||
|
high: "bg-red-500/10 text-red-500 border-red-500/20",
|
||||||
|
medium: "bg-yellow-500/10 text-yellow-500 border-yellow-500/20",
|
||||||
|
low: "bg-blue-500/10 text-blue-500 border-blue-500/20",
|
||||||
|
};
|
||||||
|
|
||||||
|
export default function TasksPage() {
|
||||||
|
return (
|
||||||
|
<DashboardLayout>
|
||||||
|
<div className="space-y-6">
|
||||||
|
<div className="flex flex-col sm:flex-row sm:items-center sm:justify-between gap-4">
|
||||||
|
<div>
|
||||||
|
<h1 className="text-3xl font-bold tracking-tight">Tasks</h1>
|
||||||
|
<p className="text-muted-foreground mt-1">
|
||||||
|
Manage your missions and track progress.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<Button>
|
||||||
|
<Plus className="w-4 h-4 mr-2" />
|
||||||
|
Add Task
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Kanban Board */}
|
||||||
|
<div className="grid grid-cols-1 md:grid-cols-3 gap-6">
|
||||||
|
{columns.map((column) => (
|
||||||
|
<div key={column.id} className="space-y-4">
|
||||||
|
<div className="flex items-center justify-between">
|
||||||
|
<h2 className="font-semibold flex items-center gap-2">
|
||||||
|
{column.id === "todo" && <Circle className="w-4 h-4" />}
|
||||||
|
{column.id === "inprogress" && <Clock className="w-4 h-4" />}
|
||||||
|
{column.id === "done" && <CheckCircle2 className="w-4 h-4" />}
|
||||||
|
{column.title}
|
||||||
|
<span className="text-muted-foreground text-sm">
|
||||||
|
({column.tasks.length})
|
||||||
|
</span>
|
||||||
|
</h2>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="space-y-3">
|
||||||
|
{column.tasks.map((task) => (
|
||||||
|
<Card key={task.id} className="cursor-pointer hover:shadow-md transition-shadow">
|
||||||
|
<CardContent className="p-4 space-y-3">
|
||||||
|
<div className="flex items-start justify-between gap-2">
|
||||||
|
<h3 className="font-medium text-sm">{task.title}</h3>
|
||||||
|
<Badge
|
||||||
|
variant="outline"
|
||||||
|
className={`text-xs ${priorityColors[task.priority]}`}
|
||||||
|
>
|
||||||
|
{task.priority}
|
||||||
|
</Badge>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<p className="text-xs text-muted-foreground">
|
||||||
|
{task.description}
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<div className="flex items-center gap-2 flex-wrap">
|
||||||
|
{task.tags.map((tag) => (
|
||||||
|
<span
|
||||||
|
key={tag}
|
||||||
|
className="text-[10px] px-2 py-0.5 rounded-full bg-secondary text-secondary-foreground"
|
||||||
|
>
|
||||||
|
{tag}
|
||||||
|
</span>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="flex items-center gap-1 text-xs text-muted-foreground pt-2 border-t border-border">
|
||||||
|
<Calendar className="w-3 h-3" />
|
||||||
|
{task.due}
|
||||||
|
</div>
|
||||||
|
</CardContent>
|
||||||
|
</Card>
|
||||||
|
))}
|
||||||
|
|
||||||
|
<Button variant="ghost" className="w-full justify-start text-muted-foreground">
|
||||||
|
<Plus className="w-4 h-4 mr-2" />
|
||||||
|
Add task
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Stats */}
|
||||||
|
<div className="grid grid-cols-2 sm:grid-cols-4 gap-4 pt-6 border-t border-border">
|
||||||
|
<div className="text-center">
|
||||||
|
<div className="text-2xl font-bold">12</div>
|
||||||
|
<div className="text-xs text-muted-foreground">Total Tasks</div>
|
||||||
|
</div>
|
||||||
|
<div className="text-center">
|
||||||
|
<div className="text-2xl font-bold">3</div>
|
||||||
|
<div className="text-xs text-muted-foreground">To Do</div>
|
||||||
|
</div>
|
||||||
|
<div className="text-center">
|
||||||
|
<div className="text-2xl font-bold">2</div>
|
||||||
|
<div className="text-xs text-muted-foreground">In Progress</div>
|
||||||
|
</div>
|
||||||
|
<div className="text-center">
|
||||||
|
<div className="text-2xl font-bold">7</div>
|
||||||
|
<div className="text-xs text-muted-foreground">Completed</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</DashboardLayout>
|
||||||
|
);
|
||||||
|
}
|
||||||
231
app/tools/page.tsx
Normal file
231
app/tools/page.tsx
Normal file
@ -0,0 +1,231 @@
|
|||||||
|
import { DashboardLayout } from "@/components/layout/sidebar";
|
||||||
|
import { Card, CardContent, 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 { Badge } from "@/components/ui/badge";
|
||||||
|
import { Tabs, TabsContent, TabsList, TabsTrigger } from "@/components/ui/tabs";
|
||||||
|
import {
|
||||||
|
Wrench,
|
||||||
|
Plus,
|
||||||
|
FileCode,
|
||||||
|
Terminal,
|
||||||
|
Globe,
|
||||||
|
Database,
|
||||||
|
Mail,
|
||||||
|
Calendar,
|
||||||
|
CheckCircle2,
|
||||||
|
} from "lucide-react";
|
||||||
|
|
||||||
|
const installedTools = [
|
||||||
|
{
|
||||||
|
id: 1,
|
||||||
|
name: "File System Assistant",
|
||||||
|
description: "Organize, search, and manage local files",
|
||||||
|
category: "system",
|
||||||
|
status: "active",
|
||||||
|
lastUsed: "Today",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 2,
|
||||||
|
name: "Browser Automation",
|
||||||
|
description: "Web research, screenshots, form filling",
|
||||||
|
category: "web",
|
||||||
|
status: "active",
|
||||||
|
lastUsed: "Yesterday",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 3,
|
||||||
|
name: "Calendar Assistant",
|
||||||
|
description: "Apple Calendar + Google Calendar integration",
|
||||||
|
category: "calendar",
|
||||||
|
status: "active",
|
||||||
|
lastUsed: "Today",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 4,
|
||||||
|
name: "Email Assistant",
|
||||||
|
description: "Apple Mail + Gmail integration",
|
||||||
|
category: "email",
|
||||||
|
status: "active",
|
||||||
|
lastUsed: "Today",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 5,
|
||||||
|
name: "Daily Automation",
|
||||||
|
description: "Morning briefing orchestration",
|
||||||
|
category: "automation",
|
||||||
|
status: "active",
|
||||||
|
lastUsed: "Today",
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|
||||||
|
const toolTemplates = [
|
||||||
|
{
|
||||||
|
name: "API Integration",
|
||||||
|
description: "Connect to external APIs",
|
||||||
|
icon: Globe,
|
||||||
|
category: "integration",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Database Tool",
|
||||||
|
description: "Query and manage databases",
|
||||||
|
icon: Database,
|
||||||
|
category: "data",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Script Runner",
|
||||||
|
description: "Execute custom scripts",
|
||||||
|
icon: Terminal,
|
||||||
|
category: "automation",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Email Processor",
|
||||||
|
description: "Process and route emails",
|
||||||
|
icon: Mail,
|
||||||
|
category: "email",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Calendar Sync",
|
||||||
|
description: "Sync multiple calendars",
|
||||||
|
icon: Calendar,
|
||||||
|
category: "calendar",
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|
||||||
|
const categoryColors: Record<string, string> = {
|
||||||
|
system: "bg-blue-500/10 text-blue-500",
|
||||||
|
web: "bg-purple-500/10 text-purple-500",
|
||||||
|
calendar: "bg-green-500/10 text-green-500",
|
||||||
|
email: "bg-yellow-500/10 text-yellow-500",
|
||||||
|
automation: "bg-pink-500/10 text-pink-500",
|
||||||
|
integration: "bg-orange-500/10 text-orange-500",
|
||||||
|
data: "bg-cyan-500/10 text-cyan-500",
|
||||||
|
};
|
||||||
|
|
||||||
|
export default function ToolsPage() {
|
||||||
|
return (
|
||||||
|
<DashboardLayout>
|
||||||
|
<div className="space-y-6">
|
||||||
|
<div className="flex flex-col sm:flex-row sm:items-center sm:justify-between gap-4">
|
||||||
|
<div>
|
||||||
|
<h1 className="text-3xl font-bold tracking-tight">Tool Builder</h1>
|
||||||
|
<p className="text-muted-foreground mt-1">
|
||||||
|
Create and manage custom tools and skills.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<Button>
|
||||||
|
<Plus className="w-4 h-4 mr-2" />
|
||||||
|
Build New Tool
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<Tabs defaultValue="installed" className="space-y-6">
|
||||||
|
<TabsList>
|
||||||
|
<TabsTrigger value="installed">Installed ({installedTools.length})</TabsTrigger>
|
||||||
|
<TabsTrigger value="templates">Templates</TabsTrigger>
|
||||||
|
<TabsTrigger value="builder">Quick Builder</TabsTrigger>
|
||||||
|
</TabsList>
|
||||||
|
|
||||||
|
<TabsContent value="installed" className="space-y-4">
|
||||||
|
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4">
|
||||||
|
{installedTools.map((tool) => (
|
||||||
|
<Card key={tool.id}>
|
||||||
|
<CardHeader className="pb-3">
|
||||||
|
<div className="flex items-start justify-between">
|
||||||
|
<div className="w-10 h-10 rounded-lg bg-secondary flex items-center justify-center">
|
||||||
|
<Wrench className="w-5 h-5" />
|
||||||
|
</div>
|
||||||
|
<Badge className={categoryColors[tool.category]}>
|
||||||
|
{tool.category}
|
||||||
|
</Badge>
|
||||||
|
</div>
|
||||||
|
<CardTitle className="text-base mt-3">{tool.name}</CardTitle>
|
||||||
|
</CardHeader>
|
||||||
|
<CardContent>
|
||||||
|
<p className="text-sm text-muted-foreground mb-4">
|
||||||
|
{tool.description}
|
||||||
|
</p>
|
||||||
|
<div className="flex items-center justify-between text-xs text-muted-foreground">
|
||||||
|
<span className="flex items-center gap-1">
|
||||||
|
<CheckCircle2 className="w-3 h-3 text-green-500" />
|
||||||
|
{tool.status}
|
||||||
|
</span>
|
||||||
|
<span>Last used: {tool.lastUsed}</span>
|
||||||
|
</div>
|
||||||
|
</CardContent>
|
||||||
|
</Card>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
</TabsContent>
|
||||||
|
|
||||||
|
<TabsContent value="templates" className="space-y-4">
|
||||||
|
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4">
|
||||||
|
{toolTemplates.map((template, i) => {
|
||||||
|
const Icon = template.icon;
|
||||||
|
return (
|
||||||
|
<Card key={i} className="cursor-pointer hover:shadow-md transition-shadow">
|
||||||
|
<CardHeader className="pb-3">
|
||||||
|
<div className="flex items-start justify-between">
|
||||||
|
<div className="w-10 h-10 rounded-lg bg-secondary flex items-center justify-center">
|
||||||
|
<Icon className="w-5 h-5" />
|
||||||
|
</div>
|
||||||
|
<Badge variant="outline">Template</Badge>
|
||||||
|
</div>
|
||||||
|
<CardTitle className="text-base mt-3">{template.name}</CardTitle>
|
||||||
|
</CardHeader>
|
||||||
|
<CardContent>
|
||||||
|
<p className="text-sm text-muted-foreground">
|
||||||
|
{template.description}
|
||||||
|
</p>
|
||||||
|
<Button variant="ghost" className="w-full mt-4">
|
||||||
|
Use Template
|
||||||
|
</Button>
|
||||||
|
</CardContent>
|
||||||
|
</Card>
|
||||||
|
);
|
||||||
|
})}
|
||||||
|
</div>
|
||||||
|
</TabsContent>
|
||||||
|
|
||||||
|
<TabsContent value="builder" className="space-y-4">
|
||||||
|
<Card>
|
||||||
|
<CardHeader>
|
||||||
|
<CardTitle>Quick Tool Builder</CardTitle>
|
||||||
|
</CardHeader>
|
||||||
|
<CardContent className="space-y-4">
|
||||||
|
<div className="grid grid-cols-1 md:grid-cols-2 gap-4">
|
||||||
|
<div className="space-y-2">
|
||||||
|
<Label>Tool Name</Label>
|
||||||
|
<Input placeholder="e.g., Stock Price Checker" />
|
||||||
|
</div>
|
||||||
|
<div className="space-y-2">
|
||||||
|
<Label>Category</Label>
|
||||||
|
<Input placeholder="e.g., finance" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="space-y-2">
|
||||||
|
<Label>Description</Label>
|
||||||
|
<Input placeholder="What does this tool do?" />
|
||||||
|
</div>
|
||||||
|
<div className="space-y-2">
|
||||||
|
<Label>Script / Command</Label>
|
||||||
|
<textarea
|
||||||
|
className="w-full min-h-[150px] p-3 rounded-md border border-input bg-background text-sm font-mono"
|
||||||
|
placeholder={`#!/bin/bash
|
||||||
|
# Your tool logic here
|
||||||
|
echo "Hello World"`}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div className="flex gap-2">
|
||||||
|
<Button>Build Tool</Button>
|
||||||
|
<Button variant="outline">Test</Button>
|
||||||
|
</div>
|
||||||
|
</CardContent>
|
||||||
|
</Card>
|
||||||
|
</TabsContent>
|
||||||
|
</Tabs>
|
||||||
|
</div>
|
||||||
|
</DashboardLayout>
|
||||||
|
);
|
||||||
|
}
|
||||||
23
components.json
Normal file
23
components.json
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
{
|
||||||
|
"$schema": "https://ui.shadcn.com/schema.json",
|
||||||
|
"style": "new-york",
|
||||||
|
"rsc": true,
|
||||||
|
"tsx": true,
|
||||||
|
"tailwind": {
|
||||||
|
"config": "",
|
||||||
|
"css": "app/globals.css",
|
||||||
|
"baseColor": "slate",
|
||||||
|
"cssVariables": true,
|
||||||
|
"prefix": ""
|
||||||
|
},
|
||||||
|
"iconLibrary": "lucide",
|
||||||
|
"rtl": false,
|
||||||
|
"aliases": {
|
||||||
|
"components": "@/components",
|
||||||
|
"utils": "@/lib/utils",
|
||||||
|
"ui": "@/components/ui",
|
||||||
|
"lib": "@/lib",
|
||||||
|
"hooks": "@/hooks"
|
||||||
|
},
|
||||||
|
"registries": {}
|
||||||
|
}
|
||||||
111
components/layout/sidebar.tsx
Normal file
111
components/layout/sidebar.tsx
Normal file
@ -0,0 +1,111 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { useState } from "react";
|
||||||
|
import Link from "next/link";
|
||||||
|
import { usePathname } from "next/navigation";
|
||||||
|
import {
|
||||||
|
LayoutDashboard,
|
||||||
|
Activity,
|
||||||
|
Calendar,
|
||||||
|
Kanban,
|
||||||
|
FileText,
|
||||||
|
Wrench,
|
||||||
|
Target,
|
||||||
|
Menu,
|
||||||
|
X,
|
||||||
|
} from "lucide-react";
|
||||||
|
import { Button } from "@/components/ui/button";
|
||||||
|
import { Sheet, SheetContent, SheetTrigger } from "@/components/ui/sheet";
|
||||||
|
import { cn } from "@/lib/utils";
|
||||||
|
|
||||||
|
const navItems = [
|
||||||
|
{ name: "Dashboard", href: "/", icon: LayoutDashboard },
|
||||||
|
{ name: "Activity", href: "/activity", icon: Activity },
|
||||||
|
{ name: "Calendar", href: "/calendar", icon: Calendar },
|
||||||
|
{ name: "Tasks", href: "/tasks", icon: Kanban },
|
||||||
|
{ name: "Documents", href: "/documents", icon: FileText },
|
||||||
|
{ name: "Tool Builder", href: "/tools", icon: Wrench },
|
||||||
|
{ name: "Mission", href: "/mission", icon: Target },
|
||||||
|
];
|
||||||
|
|
||||||
|
function SidebarContent({ pathname }: { pathname: string }) {
|
||||||
|
return (
|
||||||
|
<div className="flex flex-col h-full">
|
||||||
|
<div className="flex items-center gap-2 px-4 py-6">
|
||||||
|
<div className="w-8 h-8 rounded-lg bg-gradient-to-br from-blue-500 to-purple-600 flex items-center justify-center">
|
||||||
|
<span className="text-white font-bold text-sm">MC</span>
|
||||||
|
</div>
|
||||||
|
<span className="font-bold text-lg">Mission Control</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<nav className="flex-1 px-3 py-4 space-y-1">
|
||||||
|
{navItems.map((item) => {
|
||||||
|
const Icon = item.icon;
|
||||||
|
const isActive = pathname === item.href;
|
||||||
|
return (
|
||||||
|
<Link
|
||||||
|
key={item.href}
|
||||||
|
href={item.href}
|
||||||
|
className={cn(
|
||||||
|
"flex items-center gap-3 px-3 py-2 rounded-lg text-sm font-medium transition-colors",
|
||||||
|
isActive
|
||||||
|
? "bg-primary text-primary-foreground"
|
||||||
|
: "text-muted-foreground hover:bg-accent hover:text-accent-foreground"
|
||||||
|
)}
|
||||||
|
>
|
||||||
|
<Icon className="w-4 h-4" />
|
||||||
|
{item.name}
|
||||||
|
</Link>
|
||||||
|
);
|
||||||
|
})}
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
<div className="p-4 border-t border-border">
|
||||||
|
<div className="flex items-center gap-3">
|
||||||
|
<div className="w-8 h-8 rounded-full bg-gradient-to-br from-green-400 to-blue-500" />
|
||||||
|
<div className="flex-1 min-w-0">
|
||||||
|
<p className="text-sm font-medium truncate">Matt Bruce</p>
|
||||||
|
<p className="text-xs text-muted-foreground truncate">TopDogLabs</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export function Sidebar() {
|
||||||
|
const pathname = usePathname();
|
||||||
|
const [open, setOpen] = useState(false);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
{/* Desktop Sidebar */}
|
||||||
|
<div className="hidden lg:flex w-64 flex-col fixed inset-y-0 left-0 border-r border-border bg-card">
|
||||||
|
<SidebarContent pathname={pathname} />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Mobile Sidebar */}
|
||||||
|
<Sheet open={open} onOpenChange={setOpen}>
|
||||||
|
<SheetTrigger asChild className="lg:hidden">
|
||||||
|
<Button variant="ghost" size="icon" className="absolute top-4 left-4 z-50">
|
||||||
|
<Menu className="w-5 h-5" />
|
||||||
|
</Button>
|
||||||
|
</SheetTrigger>
|
||||||
|
<SheetContent side="left" className="w-64 p-0">
|
||||||
|
<SidebarContent pathname={pathname} />
|
||||||
|
</SheetContent>
|
||||||
|
</Sheet>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export function DashboardLayout({ children }: { children: React.ReactNode }) {
|
||||||
|
return (
|
||||||
|
<div className="min-h-screen bg-background">
|
||||||
|
<Sidebar />
|
||||||
|
<main className="lg:pl-64">
|
||||||
|
<div className="p-4 lg:p-8">{children}</div>
|
||||||
|
</main>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
109
components/ui/avatar.tsx
Normal file
109
components/ui/avatar.tsx
Normal file
@ -0,0 +1,109 @@
|
|||||||
|
"use client"
|
||||||
|
|
||||||
|
import * as React from "react"
|
||||||
|
import { Avatar as AvatarPrimitive } from "radix-ui"
|
||||||
|
|
||||||
|
import { cn } from "@/lib/utils"
|
||||||
|
|
||||||
|
function Avatar({
|
||||||
|
className,
|
||||||
|
size = "default",
|
||||||
|
...props
|
||||||
|
}: React.ComponentProps<typeof AvatarPrimitive.Root> & {
|
||||||
|
size?: "default" | "sm" | "lg"
|
||||||
|
}) {
|
||||||
|
return (
|
||||||
|
<AvatarPrimitive.Root
|
||||||
|
data-slot="avatar"
|
||||||
|
data-size={size}
|
||||||
|
className={cn(
|
||||||
|
"group/avatar relative flex size-8 shrink-0 overflow-hidden rounded-full select-none data-[size=lg]:size-10 data-[size=sm]:size-6",
|
||||||
|
className
|
||||||
|
)}
|
||||||
|
{...props}
|
||||||
|
/>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
function AvatarImage({
|
||||||
|
className,
|
||||||
|
...props
|
||||||
|
}: React.ComponentProps<typeof AvatarPrimitive.Image>) {
|
||||||
|
return (
|
||||||
|
<AvatarPrimitive.Image
|
||||||
|
data-slot="avatar-image"
|
||||||
|
className={cn("aspect-square size-full", className)}
|
||||||
|
{...props}
|
||||||
|
/>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
function AvatarFallback({
|
||||||
|
className,
|
||||||
|
...props
|
||||||
|
}: React.ComponentProps<typeof AvatarPrimitive.Fallback>) {
|
||||||
|
return (
|
||||||
|
<AvatarPrimitive.Fallback
|
||||||
|
data-slot="avatar-fallback"
|
||||||
|
className={cn(
|
||||||
|
"bg-muted text-muted-foreground flex size-full items-center justify-center rounded-full text-sm group-data-[size=sm]/avatar:text-xs",
|
||||||
|
className
|
||||||
|
)}
|
||||||
|
{...props}
|
||||||
|
/>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
function AvatarBadge({ className, ...props }: React.ComponentProps<"span">) {
|
||||||
|
return (
|
||||||
|
<span
|
||||||
|
data-slot="avatar-badge"
|
||||||
|
className={cn(
|
||||||
|
"bg-primary text-primary-foreground ring-background absolute right-0 bottom-0 z-10 inline-flex items-center justify-center rounded-full ring-2 select-none",
|
||||||
|
"group-data-[size=sm]/avatar:size-2 group-data-[size=sm]/avatar:[&>svg]:hidden",
|
||||||
|
"group-data-[size=default]/avatar:size-2.5 group-data-[size=default]/avatar:[&>svg]:size-2",
|
||||||
|
"group-data-[size=lg]/avatar:size-3 group-data-[size=lg]/avatar:[&>svg]:size-2",
|
||||||
|
className
|
||||||
|
)}
|
||||||
|
{...props}
|
||||||
|
/>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
function AvatarGroup({ className, ...props }: React.ComponentProps<"div">) {
|
||||||
|
return (
|
||||||
|
<div
|
||||||
|
data-slot="avatar-group"
|
||||||
|
className={cn(
|
||||||
|
"*:data-[slot=avatar]:ring-background group/avatar-group flex -space-x-2 *:data-[slot=avatar]:ring-2",
|
||||||
|
className
|
||||||
|
)}
|
||||||
|
{...props}
|
||||||
|
/>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
function AvatarGroupCount({
|
||||||
|
className,
|
||||||
|
...props
|
||||||
|
}: React.ComponentProps<"div">) {
|
||||||
|
return (
|
||||||
|
<div
|
||||||
|
data-slot="avatar-group-count"
|
||||||
|
className={cn(
|
||||||
|
"bg-muted text-muted-foreground ring-background relative flex size-8 shrink-0 items-center justify-center rounded-full text-sm ring-2 group-has-data-[size=lg]/avatar-group:size-10 group-has-data-[size=sm]/avatar-group:size-6 [&>svg]:size-4 group-has-data-[size=lg]/avatar-group:[&>svg]:size-5 group-has-data-[size=sm]/avatar-group:[&>svg]:size-3",
|
||||||
|
className
|
||||||
|
)}
|
||||||
|
{...props}
|
||||||
|
/>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
export {
|
||||||
|
Avatar,
|
||||||
|
AvatarImage,
|
||||||
|
AvatarFallback,
|
||||||
|
AvatarBadge,
|
||||||
|
AvatarGroup,
|
||||||
|
AvatarGroupCount,
|
||||||
|
}
|
||||||
48
components/ui/badge.tsx
Normal file
48
components/ui/badge.tsx
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
import * as React from "react"
|
||||||
|
import { cva, type VariantProps } from "class-variance-authority"
|
||||||
|
import { Slot } from "radix-ui"
|
||||||
|
|
||||||
|
import { cn } from "@/lib/utils"
|
||||||
|
|
||||||
|
const badgeVariants = cva(
|
||||||
|
"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden",
|
||||||
|
{
|
||||||
|
variants: {
|
||||||
|
variant: {
|
||||||
|
default: "bg-primary text-primary-foreground [a&]:hover:bg-primary/90",
|
||||||
|
secondary:
|
||||||
|
"bg-secondary text-secondary-foreground [a&]:hover:bg-secondary/90",
|
||||||
|
destructive:
|
||||||
|
"bg-destructive text-white [a&]:hover:bg-destructive/90 focus-visible:ring-destructive/20 dark:focus-visible:ring-destructive/40 dark:bg-destructive/60",
|
||||||
|
outline:
|
||||||
|
"border-border text-foreground [a&]:hover:bg-accent [a&]:hover:text-accent-foreground",
|
||||||
|
ghost: "[a&]:hover:bg-accent [a&]:hover:text-accent-foreground",
|
||||||
|
link: "text-primary underline-offset-4 [a&]:hover:underline",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
defaultVariants: {
|
||||||
|
variant: "default",
|
||||||
|
},
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
function Badge({
|
||||||
|
className,
|
||||||
|
variant = "default",
|
||||||
|
asChild = false,
|
||||||
|
...props
|
||||||
|
}: React.ComponentProps<"span"> &
|
||||||
|
VariantProps<typeof badgeVariants> & { asChild?: boolean }) {
|
||||||
|
const Comp = asChild ? Slot.Root : "span"
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Comp
|
||||||
|
data-slot="badge"
|
||||||
|
data-variant={variant}
|
||||||
|
className={cn(badgeVariants({ variant }), className)}
|
||||||
|
{...props}
|
||||||
|
/>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
export { Badge, badgeVariants }
|
||||||
64
components/ui/button.tsx
Normal file
64
components/ui/button.tsx
Normal file
@ -0,0 +1,64 @@
|
|||||||
|
import * as React from "react"
|
||||||
|
import { cva, type VariantProps } from "class-variance-authority"
|
||||||
|
import { Slot } from "radix-ui"
|
||||||
|
|
||||||
|
import { cn } from "@/lib/utils"
|
||||||
|
|
||||||
|
const buttonVariants = cva(
|
||||||
|
"inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive",
|
||||||
|
{
|
||||||
|
variants: {
|
||||||
|
variant: {
|
||||||
|
default: "bg-primary text-primary-foreground hover:bg-primary/90",
|
||||||
|
destructive:
|
||||||
|
"bg-destructive text-white hover:bg-destructive/90 focus-visible:ring-destructive/20 dark:focus-visible:ring-destructive/40 dark:bg-destructive/60",
|
||||||
|
outline:
|
||||||
|
"border bg-background shadow-xs hover:bg-accent hover:text-accent-foreground dark:bg-input/30 dark:border-input dark:hover:bg-input/50",
|
||||||
|
secondary:
|
||||||
|
"bg-secondary text-secondary-foreground hover:bg-secondary/80",
|
||||||
|
ghost:
|
||||||
|
"hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50",
|
||||||
|
link: "text-primary underline-offset-4 hover:underline",
|
||||||
|
},
|
||||||
|
size: {
|
||||||
|
default: "h-9 px-4 py-2 has-[>svg]:px-3",
|
||||||
|
xs: "h-6 gap-1 rounded-md px-2 text-xs has-[>svg]:px-1.5 [&_svg:not([class*='size-'])]:size-3",
|
||||||
|
sm: "h-8 rounded-md gap-1.5 px-3 has-[>svg]:px-2.5",
|
||||||
|
lg: "h-10 rounded-md px-6 has-[>svg]:px-4",
|
||||||
|
icon: "size-9",
|
||||||
|
"icon-xs": "size-6 rounded-md [&_svg:not([class*='size-'])]:size-3",
|
||||||
|
"icon-sm": "size-8",
|
||||||
|
"icon-lg": "size-10",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
defaultVariants: {
|
||||||
|
variant: "default",
|
||||||
|
size: "default",
|
||||||
|
},
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
function Button({
|
||||||
|
className,
|
||||||
|
variant = "default",
|
||||||
|
size = "default",
|
||||||
|
asChild = false,
|
||||||
|
...props
|
||||||
|
}: React.ComponentProps<"button"> &
|
||||||
|
VariantProps<typeof buttonVariants> & {
|
||||||
|
asChild?: boolean
|
||||||
|
}) {
|
||||||
|
const Comp = asChild ? Slot.Root : "button"
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Comp
|
||||||
|
data-slot="button"
|
||||||
|
data-variant={variant}
|
||||||
|
data-size={size}
|
||||||
|
className={cn(buttonVariants({ variant, size, className }))}
|
||||||
|
{...props}
|
||||||
|
/>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
export { Button, buttonVariants }
|
||||||
92
components/ui/card.tsx
Normal file
92
components/ui/card.tsx
Normal file
@ -0,0 +1,92 @@
|
|||||||
|
import * as React from "react"
|
||||||
|
|
||||||
|
import { cn } from "@/lib/utils"
|
||||||
|
|
||||||
|
function Card({ className, ...props }: React.ComponentProps<"div">) {
|
||||||
|
return (
|
||||||
|
<div
|
||||||
|
data-slot="card"
|
||||||
|
className={cn(
|
||||||
|
"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm",
|
||||||
|
className
|
||||||
|
)}
|
||||||
|
{...props}
|
||||||
|
/>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
function CardHeader({ className, ...props }: React.ComponentProps<"div">) {
|
||||||
|
return (
|
||||||
|
<div
|
||||||
|
data-slot="card-header"
|
||||||
|
className={cn(
|
||||||
|
"@container/card-header grid auto-rows-min grid-rows-[auto_auto] items-start gap-2 px-6 has-data-[slot=card-action]:grid-cols-[1fr_auto] [.border-b]:pb-6",
|
||||||
|
className
|
||||||
|
)}
|
||||||
|
{...props}
|
||||||
|
/>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
function CardTitle({ className, ...props }: React.ComponentProps<"div">) {
|
||||||
|
return (
|
||||||
|
<div
|
||||||
|
data-slot="card-title"
|
||||||
|
className={cn("leading-none font-semibold", className)}
|
||||||
|
{...props}
|
||||||
|
/>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
function CardDescription({ className, ...props }: React.ComponentProps<"div">) {
|
||||||
|
return (
|
||||||
|
<div
|
||||||
|
data-slot="card-description"
|
||||||
|
className={cn("text-muted-foreground text-sm", className)}
|
||||||
|
{...props}
|
||||||
|
/>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
function CardAction({ className, ...props }: React.ComponentProps<"div">) {
|
||||||
|
return (
|
||||||
|
<div
|
||||||
|
data-slot="card-action"
|
||||||
|
className={cn(
|
||||||
|
"col-start-2 row-span-2 row-start-1 self-start justify-self-end",
|
||||||
|
className
|
||||||
|
)}
|
||||||
|
{...props}
|
||||||
|
/>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
function CardContent({ className, ...props }: React.ComponentProps<"div">) {
|
||||||
|
return (
|
||||||
|
<div
|
||||||
|
data-slot="card-content"
|
||||||
|
className={cn("px-6", className)}
|
||||||
|
{...props}
|
||||||
|
/>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
function CardFooter({ className, ...props }: React.ComponentProps<"div">) {
|
||||||
|
return (
|
||||||
|
<div
|
||||||
|
data-slot="card-footer"
|
||||||
|
className={cn("flex items-center px-6 [.border-t]:pt-6", className)}
|
||||||
|
{...props}
|
||||||
|
/>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
export {
|
||||||
|
Card,
|
||||||
|
CardHeader,
|
||||||
|
CardFooter,
|
||||||
|
CardTitle,
|
||||||
|
CardAction,
|
||||||
|
CardDescription,
|
||||||
|
CardContent,
|
||||||
|
}
|
||||||
21
components/ui/input.tsx
Normal file
21
components/ui/input.tsx
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
import * as React from "react"
|
||||||
|
|
||||||
|
import { cn } from "@/lib/utils"
|
||||||
|
|
||||||
|
function Input({ className, type, ...props }: React.ComponentProps<"input">) {
|
||||||
|
return (
|
||||||
|
<input
|
||||||
|
type={type}
|
||||||
|
data-slot="input"
|
||||||
|
className={cn(
|
||||||
|
"file:text-foreground placeholder:text-muted-foreground selection:bg-primary selection:text-primary-foreground dark:bg-input/30 border-input h-9 w-full min-w-0 rounded-md border bg-transparent px-3 py-1 text-base shadow-xs transition-[color,box-shadow] outline-none file:inline-flex file:h-7 file:border-0 file:bg-transparent file:text-sm file:font-medium disabled:pointer-events-none disabled:cursor-not-allowed disabled:opacity-50 md:text-sm",
|
||||||
|
"focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px]",
|
||||||
|
"aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive",
|
||||||
|
className
|
||||||
|
)}
|
||||||
|
{...props}
|
||||||
|
/>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
export { Input }
|
||||||
24
components/ui/label.tsx
Normal file
24
components/ui/label.tsx
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
"use client"
|
||||||
|
|
||||||
|
import * as React from "react"
|
||||||
|
import { Label as LabelPrimitive } from "radix-ui"
|
||||||
|
|
||||||
|
import { cn } from "@/lib/utils"
|
||||||
|
|
||||||
|
function Label({
|
||||||
|
className,
|
||||||
|
...props
|
||||||
|
}: React.ComponentProps<typeof LabelPrimitive.Root>) {
|
||||||
|
return (
|
||||||
|
<LabelPrimitive.Root
|
||||||
|
data-slot="label"
|
||||||
|
className={cn(
|
||||||
|
"flex items-center gap-2 text-sm leading-none font-medium select-none group-data-[disabled=true]:pointer-events-none group-data-[disabled=true]:opacity-50 peer-disabled:cursor-not-allowed peer-disabled:opacity-50",
|
||||||
|
className
|
||||||
|
)}
|
||||||
|
{...props}
|
||||||
|
/>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
export { Label }
|
||||||
58
components/ui/scroll-area.tsx
Normal file
58
components/ui/scroll-area.tsx
Normal file
@ -0,0 +1,58 @@
|
|||||||
|
"use client"
|
||||||
|
|
||||||
|
import * as React from "react"
|
||||||
|
import { ScrollArea as ScrollAreaPrimitive } from "radix-ui"
|
||||||
|
|
||||||
|
import { cn } from "@/lib/utils"
|
||||||
|
|
||||||
|
function ScrollArea({
|
||||||
|
className,
|
||||||
|
children,
|
||||||
|
...props
|
||||||
|
}: React.ComponentProps<typeof ScrollAreaPrimitive.Root>) {
|
||||||
|
return (
|
||||||
|
<ScrollAreaPrimitive.Root
|
||||||
|
data-slot="scroll-area"
|
||||||
|
className={cn("relative", className)}
|
||||||
|
{...props}
|
||||||
|
>
|
||||||
|
<ScrollAreaPrimitive.Viewport
|
||||||
|
data-slot="scroll-area-viewport"
|
||||||
|
className="focus-visible:ring-ring/50 size-full rounded-[inherit] transition-[color,box-shadow] outline-none focus-visible:ring-[3px] focus-visible:outline-1"
|
||||||
|
>
|
||||||
|
{children}
|
||||||
|
</ScrollAreaPrimitive.Viewport>
|
||||||
|
<ScrollBar />
|
||||||
|
<ScrollAreaPrimitive.Corner />
|
||||||
|
</ScrollAreaPrimitive.Root>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
function ScrollBar({
|
||||||
|
className,
|
||||||
|
orientation = "vertical",
|
||||||
|
...props
|
||||||
|
}: React.ComponentProps<typeof ScrollAreaPrimitive.ScrollAreaScrollbar>) {
|
||||||
|
return (
|
||||||
|
<ScrollAreaPrimitive.ScrollAreaScrollbar
|
||||||
|
data-slot="scroll-area-scrollbar"
|
||||||
|
orientation={orientation}
|
||||||
|
className={cn(
|
||||||
|
"flex touch-none p-px transition-colors select-none",
|
||||||
|
orientation === "vertical" &&
|
||||||
|
"h-full w-2.5 border-l border-l-transparent",
|
||||||
|
orientation === "horizontal" &&
|
||||||
|
"h-2.5 flex-col border-t border-t-transparent",
|
||||||
|
className
|
||||||
|
)}
|
||||||
|
{...props}
|
||||||
|
>
|
||||||
|
<ScrollAreaPrimitive.ScrollAreaThumb
|
||||||
|
data-slot="scroll-area-thumb"
|
||||||
|
className="bg-border relative flex-1 rounded-full"
|
||||||
|
/>
|
||||||
|
</ScrollAreaPrimitive.ScrollAreaScrollbar>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
export { ScrollArea, ScrollBar }
|
||||||
28
components/ui/separator.tsx
Normal file
28
components/ui/separator.tsx
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
"use client"
|
||||||
|
|
||||||
|
import * as React from "react"
|
||||||
|
import { Separator as SeparatorPrimitive } from "radix-ui"
|
||||||
|
|
||||||
|
import { cn } from "@/lib/utils"
|
||||||
|
|
||||||
|
function Separator({
|
||||||
|
className,
|
||||||
|
orientation = "horizontal",
|
||||||
|
decorative = true,
|
||||||
|
...props
|
||||||
|
}: React.ComponentProps<typeof SeparatorPrimitive.Root>) {
|
||||||
|
return (
|
||||||
|
<SeparatorPrimitive.Root
|
||||||
|
data-slot="separator"
|
||||||
|
decorative={decorative}
|
||||||
|
orientation={orientation}
|
||||||
|
className={cn(
|
||||||
|
"bg-border shrink-0 data-[orientation=horizontal]:h-px data-[orientation=horizontal]:w-full data-[orientation=vertical]:h-full data-[orientation=vertical]:w-px",
|
||||||
|
className
|
||||||
|
)}
|
||||||
|
{...props}
|
||||||
|
/>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
export { Separator }
|
||||||
143
components/ui/sheet.tsx
Normal file
143
components/ui/sheet.tsx
Normal file
@ -0,0 +1,143 @@
|
|||||||
|
"use client"
|
||||||
|
|
||||||
|
import * as React from "react"
|
||||||
|
import { XIcon } from "lucide-react"
|
||||||
|
import { Dialog as SheetPrimitive } from "radix-ui"
|
||||||
|
|
||||||
|
import { cn } from "@/lib/utils"
|
||||||
|
|
||||||
|
function Sheet({ ...props }: React.ComponentProps<typeof SheetPrimitive.Root>) {
|
||||||
|
return <SheetPrimitive.Root data-slot="sheet" {...props} />
|
||||||
|
}
|
||||||
|
|
||||||
|
function SheetTrigger({
|
||||||
|
...props
|
||||||
|
}: React.ComponentProps<typeof SheetPrimitive.Trigger>) {
|
||||||
|
return <SheetPrimitive.Trigger data-slot="sheet-trigger" {...props} />
|
||||||
|
}
|
||||||
|
|
||||||
|
function SheetClose({
|
||||||
|
...props
|
||||||
|
}: React.ComponentProps<typeof SheetPrimitive.Close>) {
|
||||||
|
return <SheetPrimitive.Close data-slot="sheet-close" {...props} />
|
||||||
|
}
|
||||||
|
|
||||||
|
function SheetPortal({
|
||||||
|
...props
|
||||||
|
}: React.ComponentProps<typeof SheetPrimitive.Portal>) {
|
||||||
|
return <SheetPrimitive.Portal data-slot="sheet-portal" {...props} />
|
||||||
|
}
|
||||||
|
|
||||||
|
function SheetOverlay({
|
||||||
|
className,
|
||||||
|
...props
|
||||||
|
}: React.ComponentProps<typeof SheetPrimitive.Overlay>) {
|
||||||
|
return (
|
||||||
|
<SheetPrimitive.Overlay
|
||||||
|
data-slot="sheet-overlay"
|
||||||
|
className={cn(
|
||||||
|
"data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 fixed inset-0 z-50 bg-black/50",
|
||||||
|
className
|
||||||
|
)}
|
||||||
|
{...props}
|
||||||
|
/>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
function SheetContent({
|
||||||
|
className,
|
||||||
|
children,
|
||||||
|
side = "right",
|
||||||
|
showCloseButton = true,
|
||||||
|
...props
|
||||||
|
}: React.ComponentProps<typeof SheetPrimitive.Content> & {
|
||||||
|
side?: "top" | "right" | "bottom" | "left"
|
||||||
|
showCloseButton?: boolean
|
||||||
|
}) {
|
||||||
|
return (
|
||||||
|
<SheetPortal>
|
||||||
|
<SheetOverlay />
|
||||||
|
<SheetPrimitive.Content
|
||||||
|
data-slot="sheet-content"
|
||||||
|
className={cn(
|
||||||
|
"bg-background data-[state=open]:animate-in data-[state=closed]:animate-out fixed z-50 flex flex-col gap-4 shadow-lg transition ease-in-out data-[state=closed]:duration-300 data-[state=open]:duration-500",
|
||||||
|
side === "right" &&
|
||||||
|
"data-[state=closed]:slide-out-to-right data-[state=open]:slide-in-from-right inset-y-0 right-0 h-full w-3/4 border-l sm:max-w-sm",
|
||||||
|
side === "left" &&
|
||||||
|
"data-[state=closed]:slide-out-to-left data-[state=open]:slide-in-from-left inset-y-0 left-0 h-full w-3/4 border-r sm:max-w-sm",
|
||||||
|
side === "top" &&
|
||||||
|
"data-[state=closed]:slide-out-to-top data-[state=open]:slide-in-from-top inset-x-0 top-0 h-auto border-b",
|
||||||
|
side === "bottom" &&
|
||||||
|
"data-[state=closed]:slide-out-to-bottom data-[state=open]:slide-in-from-bottom inset-x-0 bottom-0 h-auto border-t",
|
||||||
|
className
|
||||||
|
)}
|
||||||
|
{...props}
|
||||||
|
>
|
||||||
|
{children}
|
||||||
|
{showCloseButton && (
|
||||||
|
<SheetPrimitive.Close className="ring-offset-background focus:ring-ring data-[state=open]:bg-secondary absolute top-4 right-4 rounded-xs opacity-70 transition-opacity hover:opacity-100 focus:ring-2 focus:ring-offset-2 focus:outline-hidden disabled:pointer-events-none">
|
||||||
|
<XIcon className="size-4" />
|
||||||
|
<span className="sr-only">Close</span>
|
||||||
|
</SheetPrimitive.Close>
|
||||||
|
)}
|
||||||
|
</SheetPrimitive.Content>
|
||||||
|
</SheetPortal>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
function SheetHeader({ className, ...props }: React.ComponentProps<"div">) {
|
||||||
|
return (
|
||||||
|
<div
|
||||||
|
data-slot="sheet-header"
|
||||||
|
className={cn("flex flex-col gap-1.5 p-4", className)}
|
||||||
|
{...props}
|
||||||
|
/>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
function SheetFooter({ className, ...props }: React.ComponentProps<"div">) {
|
||||||
|
return (
|
||||||
|
<div
|
||||||
|
data-slot="sheet-footer"
|
||||||
|
className={cn("mt-auto flex flex-col gap-2 p-4", className)}
|
||||||
|
{...props}
|
||||||
|
/>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
function SheetTitle({
|
||||||
|
className,
|
||||||
|
...props
|
||||||
|
}: React.ComponentProps<typeof SheetPrimitive.Title>) {
|
||||||
|
return (
|
||||||
|
<SheetPrimitive.Title
|
||||||
|
data-slot="sheet-title"
|
||||||
|
className={cn("text-foreground font-semibold", className)}
|
||||||
|
{...props}
|
||||||
|
/>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
function SheetDescription({
|
||||||
|
className,
|
||||||
|
...props
|
||||||
|
}: React.ComponentProps<typeof SheetPrimitive.Description>) {
|
||||||
|
return (
|
||||||
|
<SheetPrimitive.Description
|
||||||
|
data-slot="sheet-description"
|
||||||
|
className={cn("text-muted-foreground text-sm", className)}
|
||||||
|
{...props}
|
||||||
|
/>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
export {
|
||||||
|
Sheet,
|
||||||
|
SheetTrigger,
|
||||||
|
SheetClose,
|
||||||
|
SheetContent,
|
||||||
|
SheetHeader,
|
||||||
|
SheetFooter,
|
||||||
|
SheetTitle,
|
||||||
|
SheetDescription,
|
||||||
|
}
|
||||||
13
components/ui/skeleton.tsx
Normal file
13
components/ui/skeleton.tsx
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
import { cn } from "@/lib/utils"
|
||||||
|
|
||||||
|
function Skeleton({ className, ...props }: React.ComponentProps<"div">) {
|
||||||
|
return (
|
||||||
|
<div
|
||||||
|
data-slot="skeleton"
|
||||||
|
className={cn("bg-accent animate-pulse rounded-md", className)}
|
||||||
|
{...props}
|
||||||
|
/>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
export { Skeleton }
|
||||||
91
components/ui/tabs.tsx
Normal file
91
components/ui/tabs.tsx
Normal file
@ -0,0 +1,91 @@
|
|||||||
|
"use client"
|
||||||
|
|
||||||
|
import * as React from "react"
|
||||||
|
import { cva, type VariantProps } from "class-variance-authority"
|
||||||
|
import { Tabs as TabsPrimitive } from "radix-ui"
|
||||||
|
|
||||||
|
import { cn } from "@/lib/utils"
|
||||||
|
|
||||||
|
function Tabs({
|
||||||
|
className,
|
||||||
|
orientation = "horizontal",
|
||||||
|
...props
|
||||||
|
}: React.ComponentProps<typeof TabsPrimitive.Root>) {
|
||||||
|
return (
|
||||||
|
<TabsPrimitive.Root
|
||||||
|
data-slot="tabs"
|
||||||
|
data-orientation={orientation}
|
||||||
|
orientation={orientation}
|
||||||
|
className={cn(
|
||||||
|
"group/tabs flex gap-2 data-[orientation=horizontal]:flex-col",
|
||||||
|
className
|
||||||
|
)}
|
||||||
|
{...props}
|
||||||
|
/>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
const tabsListVariants = cva(
|
||||||
|
"rounded-lg p-[3px] group-data-[orientation=horizontal]/tabs:h-9 data-[variant=line]:rounded-none group/tabs-list text-muted-foreground inline-flex w-fit items-center justify-center group-data-[orientation=vertical]/tabs:h-fit group-data-[orientation=vertical]/tabs:flex-col",
|
||||||
|
{
|
||||||
|
variants: {
|
||||||
|
variant: {
|
||||||
|
default: "bg-muted",
|
||||||
|
line: "gap-1 bg-transparent",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
defaultVariants: {
|
||||||
|
variant: "default",
|
||||||
|
},
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
function TabsList({
|
||||||
|
className,
|
||||||
|
variant = "default",
|
||||||
|
...props
|
||||||
|
}: React.ComponentProps<typeof TabsPrimitive.List> &
|
||||||
|
VariantProps<typeof tabsListVariants>) {
|
||||||
|
return (
|
||||||
|
<TabsPrimitive.List
|
||||||
|
data-slot="tabs-list"
|
||||||
|
data-variant={variant}
|
||||||
|
className={cn(tabsListVariants({ variant }), className)}
|
||||||
|
{...props}
|
||||||
|
/>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
function TabsTrigger({
|
||||||
|
className,
|
||||||
|
...props
|
||||||
|
}: React.ComponentProps<typeof TabsPrimitive.Trigger>) {
|
||||||
|
return (
|
||||||
|
<TabsPrimitive.Trigger
|
||||||
|
data-slot="tabs-trigger"
|
||||||
|
className={cn(
|
||||||
|
"focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:outline-ring text-foreground/60 hover:text-foreground dark:text-muted-foreground dark:hover:text-foreground relative inline-flex h-[calc(100%-1px)] flex-1 items-center justify-center gap-1.5 rounded-md border border-transparent px-2 py-1 text-sm font-medium whitespace-nowrap transition-all group-data-[orientation=vertical]/tabs:w-full group-data-[orientation=vertical]/tabs:justify-start focus-visible:ring-[3px] focus-visible:outline-1 disabled:pointer-events-none disabled:opacity-50 group-data-[variant=default]/tabs-list:data-[state=active]:shadow-sm group-data-[variant=line]/tabs-list:data-[state=active]:shadow-none [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4",
|
||||||
|
"group-data-[variant=line]/tabs-list:bg-transparent group-data-[variant=line]/tabs-list:data-[state=active]:bg-transparent dark:group-data-[variant=line]/tabs-list:data-[state=active]:border-transparent dark:group-data-[variant=line]/tabs-list:data-[state=active]:bg-transparent",
|
||||||
|
"data-[state=active]:bg-background dark:data-[state=active]:text-foreground dark:data-[state=active]:border-input dark:data-[state=active]:bg-input/30 data-[state=active]:text-foreground",
|
||||||
|
"after:bg-foreground after:absolute after:opacity-0 after:transition-opacity group-data-[orientation=horizontal]/tabs:after:inset-x-0 group-data-[orientation=horizontal]/tabs:after:bottom-[-5px] group-data-[orientation=horizontal]/tabs:after:h-0.5 group-data-[orientation=vertical]/tabs:after:inset-y-0 group-data-[orientation=vertical]/tabs:after:-right-1 group-data-[orientation=vertical]/tabs:after:w-0.5 group-data-[variant=line]/tabs-list:data-[state=active]:after:opacity-100",
|
||||||
|
className
|
||||||
|
)}
|
||||||
|
{...props}
|
||||||
|
/>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
function TabsContent({
|
||||||
|
className,
|
||||||
|
...props
|
||||||
|
}: React.ComponentProps<typeof TabsPrimitive.Content>) {
|
||||||
|
return (
|
||||||
|
<TabsPrimitive.Content
|
||||||
|
data-slot="tabs-content"
|
||||||
|
className={cn("flex-1 outline-none", className)}
|
||||||
|
{...props}
|
||||||
|
/>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
export { Tabs, TabsList, TabsTrigger, TabsContent, tabsListVariants }
|
||||||
1
dist/404.html
vendored
Normal file
1
dist/404.html
vendored
Normal file
File diff suppressed because one or more lines are too long
17
dist/__next.__PAGE__.txt
vendored
Normal file
17
dist/__next.__PAGE__.txt
vendored
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
1:"$Sreact.fragment"
|
||||||
|
2:I[89567,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/91b41192b4a98cf1.js"],"DashboardLayout"]
|
||||||
|
e:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"OutletBoundary"]
|
||||||
|
f:"$Sreact.suspense"
|
||||||
|
0:{"buildId":"BaNBduHEWTzurUV8mpacN","rsc":["$","$1","c",{"children":[["$","$L2",null,{"children":["$","div",null,{"className":"space-y-8","children":[["$","div",null,{"children":[["$","h1",null,{"className":"text-3xl font-bold tracking-tight","children":"Dashboard"}],["$","p",null,{"className":"text-muted-foreground mt-1","children":"Welcome back, Matt. Here's your mission overview."}]]}],["$","div",null,{"className":"grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-4","children":[["$","div","Active Tasks",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":[["$","div",null,{"data-slot":"card-header","className":"@container/card-header auto-rows-min grid-rows-[auto_auto] gap-2 px-6 has-data-[slot=card-action]:grid-cols-[1fr_auto] [.border-b]:pb-6 flex flex-row items-center justify-between pb-2","children":[["$","div",null,{"data-slot":"card-title","className":"text-sm font-medium text-muted-foreground","children":"Active Tasks"}],["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-circle-check w-4 h-4 text-muted-foreground","aria-hidden":"true","children":[["$","circle","1mglay",{"cx":"12","cy":"12","r":"10"}],["$","path","dzmm74",{"d":"m9 12 2 2 4-4"}],"$undefined"]}]]}],["$","div",null,{"data-slot":"card-content","className":"px-6","children":[["$","div",null,{"className":"text-2xl font-bold","children":"12"}],["$","p",null,{"className":"text-xs text-muted-foreground mt-1","children":"+3 today"}]]}]]}],["$","div","Goals Progress",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":[["$","div",null,{"data-slot":"card-header","className":"@container/card-header auto-rows-min grid-rows-[auto_auto] gap-2 px-6 has-data-[slot=card-action]:grid-cols-[1fr_auto] [.border-b]:pb-6 flex flex-row items-center justify-between pb-2","children":[["$","div",null,{"data-slot":"card-title","className":"text-sm font-medium text-muted-foreground","children":"Goals Progress"}],["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-target w-4 h-4 text-muted-foreground","aria-hidden":"true","children":[["$","circle","1mglay",{"cx":"12","cy":"12","r":"10"}],["$","circle","1vlfrh",{"cx":"12","cy":"12","r":"6"}],["$","circle","1c9p78",{"cx":"12","cy":"12","r":"2"}],"$undefined"]}]]}],["$","div",null,{"data-slot":"card-content","className":"px-6","children":[["$","div",null,{"className":"text-2xl font-bold","children":"64%"}],["$","p",null,{"className":"text-xs text-muted-foreground mt-1","children":"+8% this week"}]]}]]}],["$","div","Apps Built",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":[["$","div",null,{"data-slot":"card-header","className":"@container/card-header auto-rows-min grid-rows-[auto_auto] gap-2 px-6 has-data-[slot=card-action]:grid-cols-[1fr_auto] [.border-b]:pb-6 flex flex-row items-center justify-between pb-2","children":[["$","div",null,{"data-slot":"card-title","className":"text-sm font-medium text-muted-foreground","children":"Apps Built"}],["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-trending-up w-4 h-4 text-muted-foreground","aria-hidden":"true","children":[["$","path","box55l",{"d":"M16 7h6v6"}],["$","path","1t1m79",{"d":"m22 7-8.5 8.5-5-5L2 17"}],"$undefined"]}]]}],["$","div",null,{"data-slot":"card-content","className":"px-6","children":[["$","div",null,{"className":"text-2xl font-bold","children":"6"}],["$","p",null,{"className":"text-xs text-muted-foreground mt-1","children":"2 in App Store"}]]}]]}],["$","div","Year Progress",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":["$L3","$L4"]}]]}],"$L5","$L6"]}]}],["$L7","$L8"],"$L9"]}],"loading":null,"isPartial":false}
|
||||||
|
3:["$","div",null,{"data-slot":"card-header","className":"@container/card-header auto-rows-min grid-rows-[auto_auto] gap-2 px-6 has-data-[slot=card-action]:grid-cols-[1fr_auto] [.border-b]:pb-6 flex flex-row items-center justify-between pb-2","children":[["$","div",null,{"data-slot":"card-title","className":"text-sm font-medium text-muted-foreground","children":"Year Progress"}],["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-clock w-4 h-4 text-muted-foreground","aria-hidden":"true","children":[["$","circle","1mglay",{"cx":"12","cy":"12","r":"10"}],["$","path","mmk7yg",{"d":"M12 6v6l4 2"}],"$undefined"]}]]}]
|
||||||
|
4:["$","div",null,{"data-slot":"card-content","className":"px-6","children":[["$","div",null,{"className":"text-2xl font-bold","children":"14%"}],["$","p",null,{"className":"text-xs text-muted-foreground mt-1","children":"Day 51 of 365"}]]}]
|
||||||
|
5:["$","div",null,{"className":"grid grid-cols-1 lg:grid-cols-2 gap-6","children":[["$","div",null,{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":[["$","div",null,{"data-slot":"card-header","className":"@container/card-header grid auto-rows-min grid-rows-[auto_auto] items-start gap-2 px-6 has-data-[slot=card-action]:grid-cols-[1fr_auto] [.border-b]:pb-6","children":["$","div",null,{"data-slot":"card-title","className":"leading-none font-semibold flex items-center gap-2","children":[["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-activity w-5 h-5","aria-hidden":"true","children":[["$","path","169zse",{"d":"M22 12h-2.48a2 2 0 0 0-1.93 1.46l-2.35 8.36a.25.25 0 0 1-.48 0L9.24 2.18a.25.25 0 0 0-.48 0l-2.35 8.36A2 2 0 0 1 4.49 12H2"}],"$undefined"]}],"Recent Activity"]}]}],["$","div",null,{"data-slot":"card-content","className":"px-6","children":["$","div",null,{"className":"space-y-4","children":[["$","div","0",{"className":"flex items-start gap-3 pb-3 border-b border-border last:border-0 last:pb-0","children":[["$","div",null,{"className":"w-2 h-2 rounded-full bg-primary mt-2"}],["$","div",null,{"className":"flex-1","children":[["$","p",null,{"className":"text-sm font-medium","children":"Organized Downloads"}],["$","p",null,{"className":"text-xs text-muted-foreground","children":"2 hours ago"}]]}]]}],["$","div","1",{"className":"flex items-start gap-3 pb-3 border-b border-border last:border-0 last:pb-0","children":[["$","div",null,{"className":"w-2 h-2 rounded-full bg-primary mt-2"}],["$","div",null,{"className":"flex-1","children":[["$","p",null,{"className":"text-sm font-medium","children":"Completed morning briefing"}],["$","p",null,{"className":"text-xs text-muted-foreground","children":"5 hours ago"}]]}]]}],["$","div","2",{"className":"flex items-start gap-3 pb-3 border-b border-border last:border-0 last:pb-0","children":[["$","div",null,{"className":"w-2 h-2 rounded-full bg-primary mt-2"}],["$","div",null,{"className":"flex-1","children":[["$","p",null,{"className":"text-sm font-medium","children":"Created 5 new skills"}],["$","p",null,{"className":"text-xs text-muted-foreground","children":"1 day ago"}]]}]]}],["$","div","3",{"className":"flex items-start gap-3 pb-3 border-b border-border last:border-0 last:pb-0","children":[["$","div",null,{"className":"w-2 h-2 rounded-full bg-primary mt-2"}],["$","div",null,{"className":"flex-1","children":[["$","p",null,{"className":"text-sm font-medium","children":"Updated USER.md"}],["$","p",null,{"className":"text-xs text-muted-foreground","children":"2 days ago"}]]}]]}]]}]}]]}],["$","div",null,{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":[["$","div",null,{"data-slot":"card-header","className":"@container/card-header grid auto-rows-min grid-rows-[auto_auto] items-start gap-2 px-6 has-data-[slot=card-action]:grid-cols-[1fr_auto] [.border-b]:pb-6","children":["$","div",null,{"data-slot":"card-title","className":"leading-none font-semibold flex items-center gap-2","children":[["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-calendar w-5 h-5","aria-hidden":"true","children":[["$","path","1cmpym",{"d":"M8 2v4"}],["$","path","4m81vk",{"d":"M16 2v4"}],["$","rect","1hopcy",{"width":"18","height":"18","x":"3","y":"4","rx":"2"}],["$","path","8toen8",{"d":"M3 10h18"}],"$undefined"]}],"Upcoming Events"]}]}],["$","div",null,{"data-slot":"card-content","className":"px-6","children":["$","div",null,{"className":"space-y-4","children":[["$","div","0",{"className":"flex items-start gap-3 pb-3 border-b border-border last:border-0 last:pb-0","children":[["$","div",null,{"className":"w-2 h-2 rounded-full bg-blue-500 mt-2"}],["$","div",null,{"className":"flex-1","children":[["$","p",null,{"className":"text-sm font-medium","children":"Yearly Anniversary"}],"$La"]}],"$Lb"]}],"$Lc","$Ld"]}]}]]}]]}]
|
||||||
|
6:["$","div",null,{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":[["$","div",null,{"data-slot":"card-header","className":"@container/card-header grid auto-rows-min grid-rows-[auto_auto] items-start gap-2 px-6 has-data-[slot=card-action]:grid-cols-[1fr_auto] [.border-b]:pb-6","children":["$","div",null,{"data-slot":"card-title","className":"leading-none font-semibold","children":"Mission Progress"}]}],["$","div",null,{"data-slot":"card-content","className":"px-6","children":["$","div",null,{"className":"space-y-4","children":[["$","div",null,{"children":[["$","div",null,{"className":"flex justify-between text-sm mb-2","children":[["$","span",null,{"children":"Retirement Goal"}],["$","span",null,{"className":"text-muted-foreground","children":"50% complete"}]]}],["$","div",null,{"className":"h-2 bg-secondary rounded-full overflow-hidden","children":["$","div",null,{"className":"h-full w-1/2 bg-gradient-to-r from-blue-500 to-purple-500 rounded-full"}]}]]}],["$","div",null,{"children":[["$","div",null,{"className":"flex justify-between text-sm mb-2","children":[["$","span",null,{"children":"iOS Apps Portfolio"}],["$","span",null,{"className":"text-muted-foreground","children":"6 apps built"}]]}],["$","div",null,{"className":"h-2 bg-secondary rounded-full overflow-hidden","children":["$","div",null,{"className":"h-full w-3/4 bg-gradient-to-r from-green-500 to-emerald-500 rounded-full"}]}]]}],["$","div",null,{"children":[["$","div",null,{"className":"flex justify-between text-sm mb-2","children":[["$","span",null,{"children":"Side Hustle Revenue"}],["$","span",null,{"className":"text-muted-foreground","children":"Just getting started"}]]}],["$","div",null,{"className":"h-2 bg-secondary rounded-full overflow-hidden","children":["$","div",null,{"className":"h-full w-[5%] bg-gradient-to-r from-orange-500 to-red-500 rounded-full"}]}]]}]]}]}]]}]
|
||||||
|
7:["$","script","script-0",{"src":"/_next/static/chunks/05acb8b0bd6792f1.js","async":true}]
|
||||||
|
8:["$","script","script-1",{"src":"/_next/static/chunks/91b41192b4a98cf1.js","async":true}]
|
||||||
|
9:["$","$Le",null,{"children":["$","$f",null,{"name":"Next.MetadataOutlet","children":"$@10"}]}]
|
||||||
|
a:["$","p",null,{"className":"text-xs text-muted-foreground","children":"Feb 23"}]
|
||||||
|
b:["$","span",null,{"className":"text-xs px-2 py-1 rounded-full bg-secondary text-secondary-foreground","children":"personal"}]
|
||||||
|
c:["$","div","1",{"className":"flex items-start gap-3 pb-3 border-b border-border last:border-0 last:pb-0","children":[["$","div",null,{"className":"w-2 h-2 rounded-full bg-blue-500 mt-2"}],["$","div",null,{"className":"flex-1","children":[["$","p",null,{"className":"text-sm font-medium","children":"Grabbing Anderson's dogs"}],["$","p",null,{"className":"text-xs text-muted-foreground","children":"Feb 26, 5:30 PM"}]]}],["$","span",null,{"className":"text-xs px-2 py-1 rounded-full bg-secondary text-secondary-foreground","children":"task"}]]}]
|
||||||
|
d:["$","div","2",{"className":"flex items-start gap-3 pb-3 border-b border-border last:border-0 last:pb-0","children":[["$","div",null,{"className":"w-2 h-2 rounded-full bg-blue-500 mt-2"}],["$","div",null,{"className":"flex-1","children":[["$","p",null,{"className":"text-sm font-medium","children":"Contract Renewal Check"}],["$","p",null,{"className":"text-xs text-muted-foreground","children":"Mar 2026"}]]}],["$","span",null,{"className":"text-xs px-2 py-1 rounded-full bg-secondary text-secondary-foreground","children":"work"}]]}]
|
||||||
|
10:null
|
||||||
32
dist/__next._full.txt
vendored
Normal file
32
dist/__next._full.txt
vendored
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
1:"$Sreact.fragment"
|
||||||
|
2:I[96757,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"default"]
|
||||||
|
3:I[7805,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"default"]
|
||||||
|
4:I[89567,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/91b41192b4a98cf1.js"],"DashboardLayout"]
|
||||||
|
10:I[95111,[],"default"]
|
||||||
|
:HL["/_next/static/chunks/fa936e037dd092b4.css","style"]
|
||||||
|
:HL["/_next/static/media/797e433ab948586e-s.p.dbea232f.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||||
|
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||||
|
0:{"P":null,"b":"BaNBduHEWTzurUV8mpacN","c":["",""],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/fa936e037dd092b4.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]],["$","html",null,{"lang":"en","className":"dark","children":["$","body",null,{"className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable antialiased bg-background","children":["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}],{"children":[["$","$1","c",{"children":[["$","$L4",null,{"children":["$","div",null,{"className":"space-y-8","children":[["$","div",null,{"children":[["$","h1",null,{"className":"text-3xl font-bold tracking-tight","children":"Dashboard"}],["$","p",null,{"className":"text-muted-foreground mt-1","children":"Welcome back, Matt. Here's your mission overview."}]]}],["$","div",null,{"className":"grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-4","children":[["$","div","Active Tasks",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":[["$","div",null,{"data-slot":"card-header","className":"@container/card-header auto-rows-min grid-rows-[auto_auto] gap-2 px-6 has-data-[slot=card-action]:grid-cols-[1fr_auto] [.border-b]:pb-6 flex flex-row items-center justify-between pb-2","children":[["$","div",null,{"data-slot":"card-title","className":"text-sm font-medium text-muted-foreground","children":"Active Tasks"}],["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-circle-check w-4 h-4 text-muted-foreground","aria-hidden":"true","children":[["$","circle","1mglay",{"cx":"12","cy":"12","r":"10"}],["$","path","dzmm74",{"d":"m9 12 2 2 4-4"}],"$undefined"]}]]}],["$","div",null,{"data-slot":"card-content","className":"px-6","children":[["$","div",null,{"className":"text-2xl font-bold","children":"12"}],["$","p",null,{"className":"text-xs text-muted-foreground mt-1","children":"+3 today"}]]}]]}],["$","div","Goals Progress",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":[["$","div",null,{"data-slot":"card-header","className":"@container/card-header auto-rows-min grid-rows-[auto_auto] gap-2 px-6 has-data-[slot=card-action]:grid-cols-[1fr_auto] [.border-b]:pb-6 flex flex-row items-center justify-between pb-2","children":[["$","div",null,{"data-slot":"card-title","className":"text-sm font-medium text-muted-foreground","children":"Goals Progress"}],["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-target w-4 h-4 text-muted-foreground","aria-hidden":"true","children":[["$","circle","1mglay",{"cx":"12","cy":"12","r":"10"}],"$L5","$L6","$undefined"]}]]}],"$L7"]}],"$L8","$L9"]}],"$La","$Lb"]}]}],["$Lc","$Ld"],"$Le"]}],{},null,false,false]},null,false,false],"$Lf",false]],"m":"$undefined","G":["$10",[]],"S":true}
|
||||||
|
15:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"OutletBoundary"]
|
||||||
|
16:"$Sreact.suspense"
|
||||||
|
18:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"ViewportBoundary"]
|
||||||
|
1a:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"MetadataBoundary"]
|
||||||
|
5:["$","circle","1vlfrh",{"cx":"12","cy":"12","r":"6"}]
|
||||||
|
6:["$","circle","1c9p78",{"cx":"12","cy":"12","r":"2"}]
|
||||||
|
7:["$","div",null,{"data-slot":"card-content","className":"px-6","children":[["$","div",null,{"className":"text-2xl font-bold","children":"64%"}],["$","p",null,{"className":"text-xs text-muted-foreground mt-1","children":"+8% this week"}]]}]
|
||||||
|
8:["$","div","Apps Built",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":[["$","div",null,{"data-slot":"card-header","className":"@container/card-header auto-rows-min grid-rows-[auto_auto] gap-2 px-6 has-data-[slot=card-action]:grid-cols-[1fr_auto] [.border-b]:pb-6 flex flex-row items-center justify-between pb-2","children":[["$","div",null,{"data-slot":"card-title","className":"text-sm font-medium text-muted-foreground","children":"Apps Built"}],["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-trending-up w-4 h-4 text-muted-foreground","aria-hidden":"true","children":[["$","path","box55l",{"d":"M16 7h6v6"}],["$","path","1t1m79",{"d":"m22 7-8.5 8.5-5-5L2 17"}],"$undefined"]}]]}],["$","div",null,{"data-slot":"card-content","className":"px-6","children":[["$","div",null,{"className":"text-2xl font-bold","children":"6"}],["$","p",null,{"className":"text-xs text-muted-foreground mt-1","children":"2 in App Store"}]]}]]}]
|
||||||
|
9:["$","div","Year Progress",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":[["$","div",null,{"data-slot":"card-header","className":"@container/card-header auto-rows-min grid-rows-[auto_auto] gap-2 px-6 has-data-[slot=card-action]:grid-cols-[1fr_auto] [.border-b]:pb-6 flex flex-row items-center justify-between pb-2","children":[["$","div",null,{"data-slot":"card-title","className":"text-sm font-medium text-muted-foreground","children":"Year Progress"}],["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-clock w-4 h-4 text-muted-foreground","aria-hidden":"true","children":[["$","circle","1mglay",{"cx":"12","cy":"12","r":"10"}],["$","path","mmk7yg",{"d":"M12 6v6l4 2"}],"$undefined"]}]]}],["$","div",null,{"data-slot":"card-content","className":"px-6","children":[["$","div",null,{"className":"text-2xl font-bold","children":"14%"}],["$","p",null,{"className":"text-xs text-muted-foreground mt-1","children":"Day 51 of 365"}]]}]]}]
|
||||||
|
a:["$","div",null,{"className":"grid grid-cols-1 lg:grid-cols-2 gap-6","children":[["$","div",null,{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":[["$","div",null,{"data-slot":"card-header","className":"@container/card-header grid auto-rows-min grid-rows-[auto_auto] items-start gap-2 px-6 has-data-[slot=card-action]:grid-cols-[1fr_auto] [.border-b]:pb-6","children":["$","div",null,{"data-slot":"card-title","className":"leading-none font-semibold flex items-center gap-2","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-activity w-5 h-5","aria-hidden":"true","children":[["$","path","169zse",{"d":"M22 12h-2.48a2 2 0 0 0-1.93 1.46l-2.35 8.36a.25.25 0 0 1-.48 0L9.24 2.18a.25.25 0 0 0-.48 0l-2.35 8.36A2 2 0 0 1 4.49 12H2"}],"$undefined"]}],"Recent Activity"]}]}],["$","div",null,{"data-slot":"card-content","className":"px-6","children":["$","div",null,{"className":"space-y-4","children":[["$","div","0",{"className":"flex items-start gap-3 pb-3 border-b border-border last:border-0 last:pb-0","children":[["$","div",null,{"className":"w-2 h-2 rounded-full bg-primary mt-2"}],["$","div",null,{"className":"flex-1","children":[["$","p",null,{"className":"text-sm font-medium","children":"Organized Downloads"}],["$","p",null,{"className":"text-xs text-muted-foreground","children":"2 hours ago"}]]}]]}],["$","div","1",{"className":"flex items-start gap-3 pb-3 border-b border-border last:border-0 last:pb-0","children":[["$","div",null,{"className":"w-2 h-2 rounded-full bg-primary mt-2"}],["$","div",null,{"className":"flex-1","children":[["$","p",null,{"className":"text-sm font-medium","children":"Completed morning briefing"}],["$","p",null,{"className":"text-xs text-muted-foreground","children":"5 hours ago"}]]}]]}],["$","div","2",{"className":"flex items-start gap-3 pb-3 border-b border-border last:border-0 last:pb-0","children":[["$","div",null,{"className":"w-2 h-2 rounded-full bg-primary mt-2"}],["$","div",null,{"className":"flex-1","children":[["$","p",null,{"className":"text-sm font-medium","children":"Created 5 new skills"}],["$","p",null,{"className":"text-xs text-muted-foreground","children":"1 day ago"}]]}]]}],["$","div","3",{"className":"flex items-start gap-3 pb-3 border-b border-border last:border-0 last:pb-0","children":[["$","div",null,{"className":"w-2 h-2 rounded-full bg-primary mt-2"}],["$","div",null,{"className":"flex-1","children":[["$","p",null,{"className":"text-sm font-medium","children":"Updated USER.md"}],["$","p",null,{"className":"text-xs text-muted-foreground","children":"2 days ago"}]]}]]}]]}]}]]}],["$","div",null,{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":[["$","div",null,{"data-slot":"card-header","className":"@container/card-header grid auto-rows-min grid-rows-[auto_auto] items-start gap-2 px-6 has-data-[slot=card-action]:grid-cols-[1fr_auto] [.border-b]:pb-6","children":["$","div",null,{"data-slot":"card-title","className":"leading-none font-semibold flex items-center gap-2","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-calendar w-5 h-5","aria-hidden":"true","children":[["$","path","1cmpym",{"d":"M8 2v4"}],["$","path","4m81vk",{"d":"M16 2v4"}],["$","rect","1hopcy",{"width":"18","height":"18","x":"3","y":"4","rx":"2"}],["$","path","8toen8",{"d":"M3 10h18"}],"$undefined"]}],"Upcoming Events"]}]}],["$","div",null,{"data-slot":"card-content","className":"px-6","children":["$","div",null,{"className":"space-y-4","children":[["$","div","0",{"className":"flex items-start gap-3 pb-3 border-b border-border last:border-0 last:pb-0","children":[["$","div",null,{"className":"w-2 h-2 rounded-full bg-blue-500 mt-2"}],["$","div",null,{"className":"flex-1","children":[["$","p",null,{"className":"text-sm font-medium","children":"Yearly Anniversary"}],"$L11"]}],"$L12"]}],"$L13","$L14"]}]}]]}]]}]
|
||||||
|
b:["$","div",null,{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":[["$","div",null,{"data-slot":"card-header","className":"@container/card-header grid auto-rows-min grid-rows-[auto_auto] items-start gap-2 px-6 has-data-[slot=card-action]:grid-cols-[1fr_auto] [.border-b]:pb-6","children":["$","div",null,{"data-slot":"card-title","className":"leading-none font-semibold","children":"Mission Progress"}]}],["$","div",null,{"data-slot":"card-content","className":"px-6","children":["$","div",null,{"className":"space-y-4","children":[["$","div",null,{"children":[["$","div",null,{"className":"flex justify-between text-sm mb-2","children":[["$","span",null,{"children":"Retirement Goal"}],["$","span",null,{"className":"text-muted-foreground","children":"50% complete"}]]}],["$","div",null,{"className":"h-2 bg-secondary rounded-full overflow-hidden","children":["$","div",null,{"className":"h-full w-1/2 bg-gradient-to-r from-blue-500 to-purple-500 rounded-full"}]}]]}],["$","div",null,{"children":[["$","div",null,{"className":"flex justify-between text-sm mb-2","children":[["$","span",null,{"children":"iOS Apps Portfolio"}],["$","span",null,{"className":"text-muted-foreground","children":"6 apps built"}]]}],["$","div",null,{"className":"h-2 bg-secondary rounded-full overflow-hidden","children":["$","div",null,{"className":"h-full w-3/4 bg-gradient-to-r from-green-500 to-emerald-500 rounded-full"}]}]]}],["$","div",null,{"children":[["$","div",null,{"className":"flex justify-between text-sm mb-2","children":[["$","span",null,{"children":"Side Hustle Revenue"}],["$","span",null,{"className":"text-muted-foreground","children":"Just getting started"}]]}],["$","div",null,{"className":"h-2 bg-secondary rounded-full overflow-hidden","children":["$","div",null,{"className":"h-full w-[5%] bg-gradient-to-r from-orange-500 to-red-500 rounded-full"}]}]]}]]}]}]]}]
|
||||||
|
c:["$","script","script-0",{"src":"/_next/static/chunks/05acb8b0bd6792f1.js","async":true,"nonce":"$undefined"}]
|
||||||
|
d:["$","script","script-1",{"src":"/_next/static/chunks/91b41192b4a98cf1.js","async":true,"nonce":"$undefined"}]
|
||||||
|
e:["$","$L15",null,{"children":["$","$16",null,{"name":"Next.MetadataOutlet","children":"$@17"}]}]
|
||||||
|
f:["$","$1","h",{"children":[null,["$","$L18",null,{"children":"$L19"}],["$","div",null,{"hidden":true,"children":["$","$L1a",null,{"children":["$","$16",null,{"name":"Next.Metadata","children":"$L1b"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}]
|
||||||
|
11:["$","p",null,{"className":"text-xs text-muted-foreground","children":"Feb 23"}]
|
||||||
|
12:["$","span",null,{"className":"text-xs px-2 py-1 rounded-full bg-secondary text-secondary-foreground","children":"personal"}]
|
||||||
|
13:["$","div","1",{"className":"flex items-start gap-3 pb-3 border-b border-border last:border-0 last:pb-0","children":[["$","div",null,{"className":"w-2 h-2 rounded-full bg-blue-500 mt-2"}],["$","div",null,{"className":"flex-1","children":[["$","p",null,{"className":"text-sm font-medium","children":"Grabbing Anderson's dogs"}],["$","p",null,{"className":"text-xs text-muted-foreground","children":"Feb 26, 5:30 PM"}]]}],["$","span",null,{"className":"text-xs px-2 py-1 rounded-full bg-secondary text-secondary-foreground","children":"task"}]]}]
|
||||||
|
14:["$","div","2",{"className":"flex items-start gap-3 pb-3 border-b border-border last:border-0 last:pb-0","children":[["$","div",null,{"className":"w-2 h-2 rounded-full bg-blue-500 mt-2"}],["$","div",null,{"className":"flex-1","children":[["$","p",null,{"className":"text-sm font-medium","children":"Contract Renewal Check"}],["$","p",null,{"className":"text-xs text-muted-foreground","children":"Mar 2026"}]]}],["$","span",null,{"className":"text-xs px-2 py-1 rounded-full bg-secondary text-secondary-foreground","children":"work"}]]}]
|
||||||
|
19:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||||
|
1c:I[92064,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"IconMark"]
|
||||||
|
17:null
|
||||||
|
1b:[["$","title","0",{"children":"Mission Control | TopDogLabs"}],["$","meta","1",{"name":"description","content":"Central hub for activity, tasks, goals, and tools"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.0b3bf435.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L1c","3",{}]]
|
||||||
6
dist/__next._head.txt
vendored
Normal file
6
dist/__next._head.txt
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
1:"$Sreact.fragment"
|
||||||
|
2:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"ViewportBoundary"]
|
||||||
|
3:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"MetadataBoundary"]
|
||||||
|
4:"$Sreact.suspense"
|
||||||
|
5:I[92064,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"IconMark"]
|
||||||
|
0:{"buildId":"BaNBduHEWTzurUV8mpacN","rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Mission Control | TopDogLabs"}],["$","meta","1",{"name":"description","content":"Central hub for activity, tasks, goals, and tools"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.0b3bf435.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L5","3",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false}
|
||||||
5
dist/__next._index.txt
vendored
Normal file
5
dist/__next._index.txt
vendored
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
1:"$Sreact.fragment"
|
||||||
|
2:I[96757,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"default"]
|
||||||
|
3:I[7805,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"default"]
|
||||||
|
:HL["/_next/static/chunks/fa936e037dd092b4.css","style"]
|
||||||
|
0:{"buildId":"BaNBduHEWTzurUV8mpacN","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/fa936e037dd092b4.css","precedence":"next"}]],["$","html",null,{"lang":"en","className":"dark","children":["$","body",null,{"className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable antialiased bg-background","children":["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}]}]}]]}],"loading":null,"isPartial":false}
|
||||||
4
dist/__next._tree.txt
vendored
Normal file
4
dist/__next._tree.txt
vendored
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
:HL["/_next/static/chunks/fa936e037dd092b4.css","style"]
|
||||||
|
:HL["/_next/static/media/797e433ab948586e-s.p.dbea232f.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||||
|
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||||
|
0:{"buildId":"BaNBduHEWTzurUV8mpacN","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"__PAGE__","paramType":null,"paramKey":"__PAGE__","hasRuntimePrefetch":false,"slots":null,"isRootLayout":false}},"isRootLayout":true},"staleTime":300}
|
||||||
11
dist/_next/static/BaNBduHEWTzurUV8mpacN/_buildManifest.js
vendored
Normal file
11
dist/_next/static/BaNBduHEWTzurUV8mpacN/_buildManifest.js
vendored
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
self.__BUILD_MANIFEST = {
|
||||||
|
"__rewrites": {
|
||||||
|
"afterFiles": [],
|
||||||
|
"beforeFiles": [],
|
||||||
|
"fallback": []
|
||||||
|
},
|
||||||
|
"sortedPages": [
|
||||||
|
"/_app",
|
||||||
|
"/_error"
|
||||||
|
]
|
||||||
|
};self.__BUILD_MANIFEST_CB && self.__BUILD_MANIFEST_CB()
|
||||||
1
dist/_next/static/BaNBduHEWTzurUV8mpacN/_clientMiddlewareManifest.json
vendored
Normal file
1
dist/_next/static/BaNBduHEWTzurUV8mpacN/_clientMiddlewareManifest.json
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
[]
|
||||||
1
dist/_next/static/BaNBduHEWTzurUV8mpacN/_ssgManifest.js
vendored
Normal file
1
dist/_next/static/BaNBduHEWTzurUV8mpacN/_ssgManifest.js
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
self.__SSG_MANIFEST=new Set([]);self.__SSG_MANIFEST_CB&&self.__SSG_MANIFEST_CB()
|
||||||
1
dist/_next/static/chunks/05acb8b0bd6792f1.js
vendored
Normal file
1
dist/_next/static/chunks/05acb8b0bd6792f1.js
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
(globalThis.TURBOPACK||(globalThis.TURBOPACK=[])).push(["object"==typeof document?document.currentScript:void 0,61336,(e,t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"warnOnce",{enumerable:!0,get:function(){return n}});let n=e=>{}}]);
|
||||||
1
dist/_next/static/chunks/17c2e942c16e9743.js
vendored
Normal file
1
dist/_next/static/chunks/17c2e942c16e9743.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1
dist/_next/static/chunks/62e9970b2d7e976b.js
vendored
Normal file
1
dist/_next/static/chunks/62e9970b2d7e976b.js
vendored
Normal file
File diff suppressed because one or more lines are too long
5
dist/_next/static/chunks/91b41192b4a98cf1.js
vendored
Normal file
5
dist/_next/static/chunks/91b41192b4a98cf1.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1
dist/_next/static/chunks/a6dad97d9634a72d.js
vendored
Normal file
1
dist/_next/static/chunks/a6dad97d9634a72d.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1
dist/_next/static/chunks/a6dad97d9634a72d.js.map
vendored
Normal file
1
dist/_next/static/chunks/a6dad97d9634a72d.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
1
dist/_next/static/chunks/aea8ffae850f0f32.js
vendored
Normal file
1
dist/_next/static/chunks/aea8ffae850f0f32.js
vendored
Normal file
File diff suppressed because one or more lines are too long
5
dist/_next/static/chunks/e6714e118f8fdaf5.js
vendored
Normal file
5
dist/_next/static/chunks/e6714e118f8fdaf5.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1
dist/_next/static/chunks/e855a97db51ad6c7.js
vendored
Normal file
1
dist/_next/static/chunks/e855a97db51ad6c7.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1
dist/_next/static/chunks/f3cc14630ba6215c.js
vendored
Normal file
1
dist/_next/static/chunks/f3cc14630ba6215c.js
vendored
Normal file
File diff suppressed because one or more lines are too long
3
dist/_next/static/chunks/fa936e037dd092b4.css
vendored
Normal file
3
dist/_next/static/chunks/fa936e037dd092b4.css
vendored
Normal file
File diff suppressed because one or more lines are too long
4
dist/_next/static/chunks/turbopack-e6bffc868b2518dc.js
vendored
Normal file
4
dist/_next/static/chunks/turbopack-e6bffc868b2518dc.js
vendored
Normal file
File diff suppressed because one or more lines are too long
BIN
dist/_next/static/media/4fa387ec64143e14-s.c1fdd6c2.woff2
vendored
Normal file
BIN
dist/_next/static/media/4fa387ec64143e14-s.c1fdd6c2.woff2
vendored
Normal file
Binary file not shown.
BIN
dist/_next/static/media/7178b3e590c64307-s.b97b3418.woff2
vendored
Normal file
BIN
dist/_next/static/media/7178b3e590c64307-s.b97b3418.woff2
vendored
Normal file
Binary file not shown.
BIN
dist/_next/static/media/797e433ab948586e-s.p.dbea232f.woff2
vendored
Normal file
BIN
dist/_next/static/media/797e433ab948586e-s.p.dbea232f.woff2
vendored
Normal file
Binary file not shown.
BIN
dist/_next/static/media/8a480f0b521d4e75-s.8e0177b5.woff2
vendored
Normal file
BIN
dist/_next/static/media/8a480f0b521d4e75-s.8e0177b5.woff2
vendored
Normal file
Binary file not shown.
BIN
dist/_next/static/media/bbc41e54d2fcbd21-s.799d8ef8.woff2
vendored
Normal file
BIN
dist/_next/static/media/bbc41e54d2fcbd21-s.799d8ef8.woff2
vendored
Normal file
Binary file not shown.
BIN
dist/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2
vendored
Normal file
BIN
dist/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2
vendored
Normal file
Binary file not shown.
BIN
dist/_next/static/media/favicon.0b3bf435.ico
vendored
Normal file
BIN
dist/_next/static/media/favicon.0b3bf435.ico
vendored
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 25 KiB |
1
dist/_not-found.html
vendored
Normal file
1
dist/_not-found.html
vendored
Normal file
File diff suppressed because one or more lines are too long
14
dist/_not-found.txt
vendored
Normal file
14
dist/_not-found.txt
vendored
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
1:"$Sreact.fragment"
|
||||||
|
2:I[96757,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"default"]
|
||||||
|
3:I[7805,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"default"]
|
||||||
|
4:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"OutletBoundary"]
|
||||||
|
5:"$Sreact.suspense"
|
||||||
|
7:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"ViewportBoundary"]
|
||||||
|
9:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"MetadataBoundary"]
|
||||||
|
b:I[95111,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"default"]
|
||||||
|
:HL["/_next/static/chunks/fa936e037dd092b4.css","style"]
|
||||||
|
0:{"P":null,"b":"BaNBduHEWTzurUV8mpacN","c":["","_not-found"],"q":"","i":false,"f":[[["",{"children":["/_not-found",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/fa936e037dd092b4.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]],["$","html",null,{"lang":"en","className":"dark","children":["$","body",null,{"className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable antialiased bg-background","children":["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:style","children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:children:props:children:1:props:style","children":404}],["$","div",null,{"style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:children:props:children:2:props:style","children":["$","h2",null,{"style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:children:props:children:2:props:children:props:style","children":"This page could not be found."}]}]]}]}]],null,["$","$L4",null,{"children":["$","$5",null,{"name":"Next.MetadataOutlet","children":"$@6"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$L7",null,{"children":"$L8"}],["$","div",null,{"hidden":true,"children":["$","$L9",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$La"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$b","$undefined"],"S":true}
|
||||||
|
8:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||||
|
c:I[92064,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"IconMark"]
|
||||||
|
6:null
|
||||||
|
a:[["$","title","0",{"children":"Mission Control | TopDogLabs"}],["$","meta","1",{"name":"description","content":"Central hub for activity, tasks, goals, and tools"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.0b3bf435.ico","sizes":"256x256","type":"image/x-icon"}],["$","$Lc","3",{}]]
|
||||||
14
dist/_not-found/__next._full.txt
vendored
Normal file
14
dist/_not-found/__next._full.txt
vendored
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
1:"$Sreact.fragment"
|
||||||
|
2:I[96757,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"default"]
|
||||||
|
3:I[7805,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"default"]
|
||||||
|
4:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"OutletBoundary"]
|
||||||
|
5:"$Sreact.suspense"
|
||||||
|
7:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"ViewportBoundary"]
|
||||||
|
9:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"MetadataBoundary"]
|
||||||
|
b:I[95111,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"default"]
|
||||||
|
:HL["/_next/static/chunks/fa936e037dd092b4.css","style"]
|
||||||
|
0:{"P":null,"b":"BaNBduHEWTzurUV8mpacN","c":["","_not-found"],"q":"","i":false,"f":[[["",{"children":["/_not-found",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/fa936e037dd092b4.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]],["$","html",null,{"lang":"en","className":"dark","children":["$","body",null,{"className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable antialiased bg-background","children":["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:style","children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:children:props:children:1:props:style","children":404}],["$","div",null,{"style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:children:props:children:2:props:style","children":["$","h2",null,{"style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:notFound:0:1:props:children:props:children:2:props:children:props:style","children":"This page could not be found."}]}]]}]}]],null,["$","$L4",null,{"children":["$","$5",null,{"name":"Next.MetadataOutlet","children":"$@6"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$L7",null,{"children":"$L8"}],["$","div",null,{"hidden":true,"children":["$","$L9",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$La"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$b","$undefined"],"S":true}
|
||||||
|
8:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||||
|
c:I[92064,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"IconMark"]
|
||||||
|
6:null
|
||||||
|
a:[["$","title","0",{"children":"Mission Control | TopDogLabs"}],["$","meta","1",{"name":"description","content":"Central hub for activity, tasks, goals, and tools"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.0b3bf435.ico","sizes":"256x256","type":"image/x-icon"}],["$","$Lc","3",{}]]
|
||||||
6
dist/_not-found/__next._head.txt
vendored
Normal file
6
dist/_not-found/__next._head.txt
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
1:"$Sreact.fragment"
|
||||||
|
2:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"ViewportBoundary"]
|
||||||
|
3:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"MetadataBoundary"]
|
||||||
|
4:"$Sreact.suspense"
|
||||||
|
5:I[92064,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"IconMark"]
|
||||||
|
0:{"buildId":"BaNBduHEWTzurUV8mpacN","rsc":["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Mission Control | TopDogLabs"}],["$","meta","1",{"name":"description","content":"Central hub for activity, tasks, goals, and tools"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.0b3bf435.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L5","3",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false}
|
||||||
5
dist/_not-found/__next._index.txt
vendored
Normal file
5
dist/_not-found/__next._index.txt
vendored
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
1:"$Sreact.fragment"
|
||||||
|
2:I[96757,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"default"]
|
||||||
|
3:I[7805,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"default"]
|
||||||
|
:HL["/_next/static/chunks/fa936e037dd092b4.css","style"]
|
||||||
|
0:{"buildId":"BaNBduHEWTzurUV8mpacN","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/fa936e037dd092b4.css","precedence":"next"}]],["$","html",null,{"lang":"en","className":"dark","children":["$","body",null,{"className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable antialiased bg-background","children":["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}]}]}]]}],"loading":null,"isPartial":false}
|
||||||
5
dist/_not-found/__next._not-found.__PAGE__.txt
vendored
Normal file
5
dist/_not-found/__next._not-found.__PAGE__.txt
vendored
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
1:"$Sreact.fragment"
|
||||||
|
2:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"OutletBoundary"]
|
||||||
|
3:"$Sreact.suspense"
|
||||||
|
0:{"buildId":"BaNBduHEWTzurUV8mpacN","rsc":["$","$1","c",{"children":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],null,["$","$L2",null,{"children":["$","$3",null,{"name":"Next.MetadataOutlet","children":"$@4"}]}]]}],"loading":null,"isPartial":false}
|
||||||
|
4:null
|
||||||
4
dist/_not-found/__next._not-found.txt
vendored
Normal file
4
dist/_not-found/__next._not-found.txt
vendored
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
1:"$Sreact.fragment"
|
||||||
|
2:I[96757,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"default"]
|
||||||
|
3:I[7805,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"default"]
|
||||||
|
0:{"buildId":"BaNBduHEWTzurUV8mpacN","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
|
||||||
2
dist/_not-found/__next._tree.txt
vendored
Normal file
2
dist/_not-found/__next._tree.txt
vendored
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
:HL["/_next/static/chunks/fa936e037dd092b4.css","style"]
|
||||||
|
0:{"buildId":"BaNBduHEWTzurUV8mpacN","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"/_not-found","paramType":null,"paramKey":"/_not-found","hasRuntimePrefetch":false,"slots":{"children":{"name":"__PAGE__","paramType":null,"paramKey":"__PAGE__","hasRuntimePrefetch":false,"slots":null,"isRootLayout":false}},"isRootLayout":false}},"isRootLayout":true},"staleTime":300}
|
||||||
1
dist/activity.html
vendored
Normal file
1
dist/activity.html
vendored
Normal file
File diff suppressed because one or more lines are too long
32
dist/activity.txt
vendored
Normal file
32
dist/activity.txt
vendored
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
1:"$Sreact.fragment"
|
||||||
|
2:I[96757,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"default"]
|
||||||
|
3:I[7805,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"default"]
|
||||||
|
4:I[89567,["/_next/static/chunks/aea8ffae850f0f32.js","/_next/static/chunks/91b41192b4a98cf1.js"],"DashboardLayout"]
|
||||||
|
5:I[56006,["/_next/static/chunks/aea8ffae850f0f32.js","/_next/static/chunks/91b41192b4a98cf1.js"],"ScrollArea"]
|
||||||
|
14:I[95111,[],"default"]
|
||||||
|
:HL["/_next/static/chunks/fa936e037dd092b4.css","style"]
|
||||||
|
:HL["/_next/static/media/797e433ab948586e-s.p.dbea232f.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||||
|
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||||
|
0:{"P":null,"b":"BaNBduHEWTzurUV8mpacN","c":["","activity"],"q":"","i":false,"f":[[["",{"children":["activity",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/fa936e037dd092b4.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]],["$","html",null,{"lang":"en","className":"dark","children":["$","body",null,{"className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable antialiased bg-background","children":["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L4",null,{"children":["$","div",null,{"className":"space-y-6","children":[["$","div",null,{"children":[["$","h1",null,{"className":"text-3xl font-bold tracking-tight","children":"Activity Feed"}],["$","p",null,{"className":"text-muted-foreground mt-1","children":"Everything that's happening in your mission control."}]]}],["$","div",null,{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":[["$","div",null,{"data-slot":"card-header","className":"@container/card-header grid auto-rows-min grid-rows-[auto_auto] items-start gap-2 px-6 has-data-[slot=card-action]:grid-cols-[1fr_auto] [.border-b]:pb-6","children":["$","div",null,{"data-slot":"card-title","className":"leading-none font-semibold flex items-center gap-2","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-activity w-5 h-5","aria-hidden":"true","children":[["$","path","169zse",{"d":"M22 12h-2.48a2 2 0 0 0-1.93 1.46l-2.35 8.36a.25.25 0 0 1-.48 0L9.24 2.18a.25.25 0 0 0-.48 0l-2.35 8.36A2 2 0 0 1 4.49 12H2"}],"$undefined"]}],"Recent Activity"]}]}],["$","div",null,{"data-slot":"card-content","className":"px-6","children":["$","$L5",null,{"className":"h-[600px] pr-4","children":["$","div",null,{"className":"space-y-6","children":[["$","div","1",{"className":"flex gap-4 pb-6 border-b border-border last:border-0","children":[["$","div",null,{"className":"w-10 h-10 rounded-full flex items-center justify-center shrink-0 bg-blue-500/10 text-blue-500","children":["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-circle-check w-5 h-5","aria-hidden":"true","children":[["$","circle","1mglay",{"cx":"12","cy":"12","r":"10"}],["$","path","dzmm74",{"d":"m9 12 2 2 4-4"}],"$undefined"]}]}],["$","div",null,{"className":"flex-1 space-y-1","children":[["$","div",null,{"className":"flex items-center gap-2","children":[["$","h4",null,{"className":"font-medium","children":"Morning briefing completed"}],"$L6"]}],"$L7","$L8"]}]]}],"$L9","$La","$Lb","$Lc","$Ld","$Le","$Lf"]}]}]}]]}]]}]}],["$L10","$L11"],"$L12"]}],{},null,false,false]},null,false,false]},null,false,false],"$L13",false]],"m":"$undefined","G":["$14",[]],"S":true}
|
||||||
|
15:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"OutletBoundary"]
|
||||||
|
16:"$Sreact.suspense"
|
||||||
|
18:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"ViewportBoundary"]
|
||||||
|
1a:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"MetadataBoundary"]
|
||||||
|
6:["$","span",null,{"data-slot":"badge","data-variant":"secondary","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden bg-secondary text-secondary-foreground [a&]:hover:bg-secondary/90 text-xs","children":"system"}]
|
||||||
|
7:["$","p",null,{"className":"text-sm text-muted-foreground","children":"Checked calendar, email, reminders, and disk usage"}]
|
||||||
|
8:["$","p",null,{"className":"text-xs text-muted-foreground","children":"Today at 7:15 AM"}]
|
||||||
|
9:["$","div","2",{"className":"flex gap-4 pb-6 border-b border-border last:border-0","children":[["$","div",null,{"className":"w-10 h-10 rounded-full flex items-center justify-center shrink-0 bg-green-500/10 text-green-500","children":["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-file-text w-5 h-5","aria-hidden":"true","children":[["$","path","1oefj6",{"d":"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"}],["$","path","wfsgrz",{"d":"M14 2v5a1 1 0 0 0 1 1h5"}],["$","path","b1mrlr",{"d":"M10 9H8"}],["$","path","t4e002",{"d":"M16 13H8"}],["$","path","z1uh3a",{"d":"M16 17H8"}],"$undefined"]}]}],["$","div",null,{"className":"flex-1 space-y-1","children":[["$","div",null,{"className":"flex items-center gap-2","children":[["$","h4",null,{"className":"font-medium","children":"Downloads organized"}],["$","span",null,{"data-slot":"badge","data-variant":"secondary","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden bg-secondary text-secondary-foreground [a&]:hover:bg-secondary/90 text-xs","children":"file"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground","children":"Sorted 81 files into Images (18), Documents (31), Archives (32)"}],["$","p",null,{"className":"text-xs text-muted-foreground","children":"Today at 9:30 AM"}]]}]]}]
|
||||||
|
a:["$","div","3",{"className":"flex gap-4 pb-6 border-b border-border last:border-0","children":[["$","div",null,{"className":"w-10 h-10 rounded-full flex items-center justify-center shrink-0 bg-purple-500/10 text-purple-500","children":["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-wrench w-5 h-5","aria-hidden":"true","children":[["$","path","1ngwbx",{"d":"M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.106-3.105c.32-.322.863-.22.983.218a6 6 0 0 1-8.259 7.057l-7.91 7.91a1 1 0 0 1-2.999-3l7.91-7.91a6 6 0 0 1 7.057-8.259c.438.12.54.662.219.984z"}],"$undefined"]}]}],["$","div",null,{"className":"flex-1 space-y-1","children":[["$","div",null,{"className":"flex items-center gap-2","children":[["$","h4",null,{"className":"font-medium","children":"Created 6 new skills"}],["$","span",null,{"data-slot":"badge","data-variant":"secondary","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden bg-secondary text-secondary-foreground [a&]:hover:bg-secondary/90 text-xs","children":"tool"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground","children":"File System, Browser Automation, Calendar, Email, Knowledge Base, Daily Automation"}],["$","p",null,{"className":"text-xs text-muted-foreground","children":"Yesterday at 5:00 PM"}]]}]]}]
|
||||||
|
b:["$","div","4",{"className":"flex gap-4 pb-6 border-b border-border last:border-0","children":[["$","div",null,{"className":"w-10 h-10 rounded-full flex items-center justify-center shrink-0 bg-yellow-500/10 text-yellow-500","children":["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-file-text w-5 h-5","aria-hidden":"true","children":[["$","path","1oefj6",{"d":"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"}],["$","path","wfsgrz",{"d":"M14 2v5a1 1 0 0 0 1 1h5"}],["$","path","b1mrlr",{"d":"M10 9H8"}],["$","path","t4e002",{"d":"M16 13H8"}],["$","path","z1uh3a",{"d":"M16 17H8"}],"$undefined"]}]}],["$","div",null,{"className":"flex-1 space-y-1","children":[["$","div",null,{"className":"flex items-center gap-2","children":[["$","h4",null,{"className":"font-medium","children":"Updated USER.md"}],["$","span",null,{"data-slot":"badge","data-variant":"secondary","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden bg-secondary text-secondary-foreground [a&]:hover:bg-secondary/90 text-xs","children":"doc"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground","children":"Added family details, daily routine, and project status"}],["$","p",null,{"className":"text-xs text-muted-foreground","children":"Yesterday at 4:30 PM"}]]}]]}]
|
||||||
|
c:["$","div","5",{"className":"flex gap-4 pb-6 border-b border-border last:border-0","children":[["$","div",null,{"className":"w-10 h-10 rounded-full flex items-center justify-center shrink-0 bg-pink-500/10 text-pink-500","children":["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-message-square w-5 h-5","aria-hidden":"true","children":[["$","path","18887p",{"d":"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z"}],"$undefined"]}]}],["$","div",null,{"className":"flex-1 space-y-1","children":[["$","div",null,{"className":"flex items-center gap-2","children":[["$","h4",null,{"className":"font-medium","children":"Brain dump completed"}],["$","span",null,{"data-slot":"badge","data-variant":"secondary","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden bg-secondary text-secondary-foreground [a&]:hover:bg-secondary/90 text-xs","children":"communication"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground","children":"Captured interests, career, goals, family, and preferences"}],["$","p",null,{"className":"text-xs text-muted-foreground","children":"Yesterday at 3:00 PM"}]]}]]}]
|
||||||
|
d:["$","div","6",{"className":"flex gap-4 pb-6 border-b border-border last:border-0","children":[["$","div",null,{"className":"w-10 h-10 rounded-full flex items-center justify-center shrink-0 bg-blue-500/10 text-blue-500","children":["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-calendar w-5 h-5","aria-hidden":"true","children":[["$","path","1cmpym",{"d":"M8 2v4"}],["$","path","4m81vk",{"d":"M16 2v4"}],["$","rect","1hopcy",{"width":"18","height":"18","x":"3","y":"4","rx":"2"}],["$","path","8toen8",{"d":"M3 10h18"}],"$undefined"]}]}],["$","div",null,{"className":"flex-1 space-y-1","children":[["$","div",null,{"className":"flex items-center gap-2","children":[["$","h4",null,{"className":"font-medium","children":"Daily automation scheduled"}],["$","span",null,{"data-slot":"badge","data-variant":"secondary","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden bg-secondary text-secondary-foreground [a&]:hover:bg-secondary/90 text-xs","children":"system"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground","children":"Morning briefing cron job set for 7:15 AM daily"}],["$","p",null,{"className":"text-xs text-muted-foreground","children":"Yesterday at 2:45 PM"}]]}]]}]
|
||||||
|
e:["$","div","7",{"className":"flex gap-4 pb-6 border-b border-border last:border-0","children":[["$","div",null,{"className":"w-10 h-10 rounded-full flex items-center justify-center shrink-0 bg-green-500/10 text-green-500","children":["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-file-text w-5 h-5","aria-hidden":"true","children":[["$","path","1oefj6",{"d":"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"}],["$","path","wfsgrz",{"d":"M14 2v5a1 1 0 0 0 1 1h5"}],["$","path","b1mrlr",{"d":"M10 9H8"}],["$","path","t4e002",{"d":"M16 13H8"}],["$","path","z1uh3a",{"d":"M16 17H8"}],"$undefined"]}]}],["$","div",null,{"className":"flex-1 space-y-1","children":[["$","div",null,{"className":"flex items-center gap-2","children":[["$","h4",null,{"className":"font-medium","children":"Created DAILY_TOOLS_SETUP.md"}],["$","span",null,{"data-slot":"badge","data-variant":"secondary","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden bg-secondary text-secondary-foreground [a&]:hover:bg-secondary/90 text-xs","children":"file"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground","children":"Documented all skill integrations and setup instructions"}],["$","p",null,{"className":"text-xs text-muted-foreground","children":"Yesterday at 2:00 PM"}]]}]]}]
|
||||||
|
f:["$","div","8",{"className":"flex gap-4 pb-6 border-b border-border last:border-0","children":[["$","div",null,{"className":"w-10 h-10 rounded-full flex items-center justify-center shrink-0 bg-purple-500/10 text-purple-500","children":["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-wrench w-5 h-5","aria-hidden":"true","children":[["$","path","1ngwbx",{"d":"M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.106-3.105c.32-.322.863-.22.983.218a6 6 0 0 1-8.259 7.057l-7.91 7.91a1 1 0 0 1-2.999-3l7.91-7.91a6 6 0 0 1 7.057-8.259c.438.12.54.662.219.984z"}],"$undefined"]}]}],["$","div",null,{"className":"flex-1 space-y-1","children":[["$","div",null,{"className":"flex items-center gap-2","children":[["$","h4",null,{"className":"font-medium","children":"Installed icalBuddy"}],["$","span",null,{"data-slot":"badge","data-variant":"secondary","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden bg-secondary text-secondary-foreground [a&]:hover:bg-secondary/90 text-xs","children":"tool"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground","children":"Calendar integration now working with Apple Calendar"}],["$","p",null,{"className":"text-xs text-muted-foreground","children":"Yesterday at 1:30 PM"}]]}]]}]
|
||||||
|
10:["$","script","script-0",{"src":"/_next/static/chunks/aea8ffae850f0f32.js","async":true,"nonce":"$undefined"}]
|
||||||
|
11:["$","script","script-1",{"src":"/_next/static/chunks/91b41192b4a98cf1.js","async":true,"nonce":"$undefined"}]
|
||||||
|
12:["$","$L15",null,{"children":["$","$16",null,{"name":"Next.MetadataOutlet","children":"$@17"}]}]
|
||||||
|
13:["$","$1","h",{"children":[null,["$","$L18",null,{"children":"$L19"}],["$","div",null,{"hidden":true,"children":["$","$L1a",null,{"children":["$","$16",null,{"name":"Next.Metadata","children":"$L1b"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}]
|
||||||
|
19:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||||
|
1c:I[92064,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"IconMark"]
|
||||||
|
17:null
|
||||||
|
1b:[["$","title","0",{"children":"Mission Control | TopDogLabs"}],["$","meta","1",{"name":"description","content":"Central hub for activity, tasks, goals, and tools"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.0b3bf435.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L1c","3",{}]]
|
||||||
32
dist/activity/__next._full.txt
vendored
Normal file
32
dist/activity/__next._full.txt
vendored
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
1:"$Sreact.fragment"
|
||||||
|
2:I[96757,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"default"]
|
||||||
|
3:I[7805,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"default"]
|
||||||
|
4:I[89567,["/_next/static/chunks/aea8ffae850f0f32.js","/_next/static/chunks/91b41192b4a98cf1.js"],"DashboardLayout"]
|
||||||
|
5:I[56006,["/_next/static/chunks/aea8ffae850f0f32.js","/_next/static/chunks/91b41192b4a98cf1.js"],"ScrollArea"]
|
||||||
|
14:I[95111,[],"default"]
|
||||||
|
:HL["/_next/static/chunks/fa936e037dd092b4.css","style"]
|
||||||
|
:HL["/_next/static/media/797e433ab948586e-s.p.dbea232f.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||||
|
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||||
|
0:{"P":null,"b":"BaNBduHEWTzurUV8mpacN","c":["","activity"],"q":"","i":false,"f":[[["",{"children":["activity",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/fa936e037dd092b4.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]],["$","html",null,{"lang":"en","className":"dark","children":["$","body",null,{"className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable antialiased bg-background","children":["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L4",null,{"children":["$","div",null,{"className":"space-y-6","children":[["$","div",null,{"children":[["$","h1",null,{"className":"text-3xl font-bold tracking-tight","children":"Activity Feed"}],["$","p",null,{"className":"text-muted-foreground mt-1","children":"Everything that's happening in your mission control."}]]}],["$","div",null,{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":[["$","div",null,{"data-slot":"card-header","className":"@container/card-header grid auto-rows-min grid-rows-[auto_auto] items-start gap-2 px-6 has-data-[slot=card-action]:grid-cols-[1fr_auto] [.border-b]:pb-6","children":["$","div",null,{"data-slot":"card-title","className":"leading-none font-semibold flex items-center gap-2","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-activity w-5 h-5","aria-hidden":"true","children":[["$","path","169zse",{"d":"M22 12h-2.48a2 2 0 0 0-1.93 1.46l-2.35 8.36a.25.25 0 0 1-.48 0L9.24 2.18a.25.25 0 0 0-.48 0l-2.35 8.36A2 2 0 0 1 4.49 12H2"}],"$undefined"]}],"Recent Activity"]}]}],["$","div",null,{"data-slot":"card-content","className":"px-6","children":["$","$L5",null,{"className":"h-[600px] pr-4","children":["$","div",null,{"className":"space-y-6","children":[["$","div","1",{"className":"flex gap-4 pb-6 border-b border-border last:border-0","children":[["$","div",null,{"className":"w-10 h-10 rounded-full flex items-center justify-center shrink-0 bg-blue-500/10 text-blue-500","children":["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-circle-check w-5 h-5","aria-hidden":"true","children":[["$","circle","1mglay",{"cx":"12","cy":"12","r":"10"}],["$","path","dzmm74",{"d":"m9 12 2 2 4-4"}],"$undefined"]}]}],["$","div",null,{"className":"flex-1 space-y-1","children":[["$","div",null,{"className":"flex items-center gap-2","children":[["$","h4",null,{"className":"font-medium","children":"Morning briefing completed"}],"$L6"]}],"$L7","$L8"]}]]}],"$L9","$La","$Lb","$Lc","$Ld","$Le","$Lf"]}]}]}]]}]]}]}],["$L10","$L11"],"$L12"]}],{},null,false,false]},null,false,false]},null,false,false],"$L13",false]],"m":"$undefined","G":["$14",[]],"S":true}
|
||||||
|
15:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"OutletBoundary"]
|
||||||
|
16:"$Sreact.suspense"
|
||||||
|
18:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"ViewportBoundary"]
|
||||||
|
1a:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"MetadataBoundary"]
|
||||||
|
6:["$","span",null,{"data-slot":"badge","data-variant":"secondary","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden bg-secondary text-secondary-foreground [a&]:hover:bg-secondary/90 text-xs","children":"system"}]
|
||||||
|
7:["$","p",null,{"className":"text-sm text-muted-foreground","children":"Checked calendar, email, reminders, and disk usage"}]
|
||||||
|
8:["$","p",null,{"className":"text-xs text-muted-foreground","children":"Today at 7:15 AM"}]
|
||||||
|
9:["$","div","2",{"className":"flex gap-4 pb-6 border-b border-border last:border-0","children":[["$","div",null,{"className":"w-10 h-10 rounded-full flex items-center justify-center shrink-0 bg-green-500/10 text-green-500","children":["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-file-text w-5 h-5","aria-hidden":"true","children":[["$","path","1oefj6",{"d":"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"}],["$","path","wfsgrz",{"d":"M14 2v5a1 1 0 0 0 1 1h5"}],["$","path","b1mrlr",{"d":"M10 9H8"}],["$","path","t4e002",{"d":"M16 13H8"}],["$","path","z1uh3a",{"d":"M16 17H8"}],"$undefined"]}]}],["$","div",null,{"className":"flex-1 space-y-1","children":[["$","div",null,{"className":"flex items-center gap-2","children":[["$","h4",null,{"className":"font-medium","children":"Downloads organized"}],["$","span",null,{"data-slot":"badge","data-variant":"secondary","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden bg-secondary text-secondary-foreground [a&]:hover:bg-secondary/90 text-xs","children":"file"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground","children":"Sorted 81 files into Images (18), Documents (31), Archives (32)"}],["$","p",null,{"className":"text-xs text-muted-foreground","children":"Today at 9:30 AM"}]]}]]}]
|
||||||
|
a:["$","div","3",{"className":"flex gap-4 pb-6 border-b border-border last:border-0","children":[["$","div",null,{"className":"w-10 h-10 rounded-full flex items-center justify-center shrink-0 bg-purple-500/10 text-purple-500","children":["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-wrench w-5 h-5","aria-hidden":"true","children":[["$","path","1ngwbx",{"d":"M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.106-3.105c.32-.322.863-.22.983.218a6 6 0 0 1-8.259 7.057l-7.91 7.91a1 1 0 0 1-2.999-3l7.91-7.91a6 6 0 0 1 7.057-8.259c.438.12.54.662.219.984z"}],"$undefined"]}]}],["$","div",null,{"className":"flex-1 space-y-1","children":[["$","div",null,{"className":"flex items-center gap-2","children":[["$","h4",null,{"className":"font-medium","children":"Created 6 new skills"}],["$","span",null,{"data-slot":"badge","data-variant":"secondary","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden bg-secondary text-secondary-foreground [a&]:hover:bg-secondary/90 text-xs","children":"tool"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground","children":"File System, Browser Automation, Calendar, Email, Knowledge Base, Daily Automation"}],["$","p",null,{"className":"text-xs text-muted-foreground","children":"Yesterday at 5:00 PM"}]]}]]}]
|
||||||
|
b:["$","div","4",{"className":"flex gap-4 pb-6 border-b border-border last:border-0","children":[["$","div",null,{"className":"w-10 h-10 rounded-full flex items-center justify-center shrink-0 bg-yellow-500/10 text-yellow-500","children":["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-file-text w-5 h-5","aria-hidden":"true","children":[["$","path","1oefj6",{"d":"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"}],["$","path","wfsgrz",{"d":"M14 2v5a1 1 0 0 0 1 1h5"}],["$","path","b1mrlr",{"d":"M10 9H8"}],["$","path","t4e002",{"d":"M16 13H8"}],["$","path","z1uh3a",{"d":"M16 17H8"}],"$undefined"]}]}],["$","div",null,{"className":"flex-1 space-y-1","children":[["$","div",null,{"className":"flex items-center gap-2","children":[["$","h4",null,{"className":"font-medium","children":"Updated USER.md"}],["$","span",null,{"data-slot":"badge","data-variant":"secondary","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden bg-secondary text-secondary-foreground [a&]:hover:bg-secondary/90 text-xs","children":"doc"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground","children":"Added family details, daily routine, and project status"}],["$","p",null,{"className":"text-xs text-muted-foreground","children":"Yesterday at 4:30 PM"}]]}]]}]
|
||||||
|
c:["$","div","5",{"className":"flex gap-4 pb-6 border-b border-border last:border-0","children":[["$","div",null,{"className":"w-10 h-10 rounded-full flex items-center justify-center shrink-0 bg-pink-500/10 text-pink-500","children":["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-message-square w-5 h-5","aria-hidden":"true","children":[["$","path","18887p",{"d":"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z"}],"$undefined"]}]}],["$","div",null,{"className":"flex-1 space-y-1","children":[["$","div",null,{"className":"flex items-center gap-2","children":[["$","h4",null,{"className":"font-medium","children":"Brain dump completed"}],["$","span",null,{"data-slot":"badge","data-variant":"secondary","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden bg-secondary text-secondary-foreground [a&]:hover:bg-secondary/90 text-xs","children":"communication"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground","children":"Captured interests, career, goals, family, and preferences"}],["$","p",null,{"className":"text-xs text-muted-foreground","children":"Yesterday at 3:00 PM"}]]}]]}]
|
||||||
|
d:["$","div","6",{"className":"flex gap-4 pb-6 border-b border-border last:border-0","children":[["$","div",null,{"className":"w-10 h-10 rounded-full flex items-center justify-center shrink-0 bg-blue-500/10 text-blue-500","children":["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-calendar w-5 h-5","aria-hidden":"true","children":[["$","path","1cmpym",{"d":"M8 2v4"}],["$","path","4m81vk",{"d":"M16 2v4"}],["$","rect","1hopcy",{"width":"18","height":"18","x":"3","y":"4","rx":"2"}],["$","path","8toen8",{"d":"M3 10h18"}],"$undefined"]}]}],["$","div",null,{"className":"flex-1 space-y-1","children":[["$","div",null,{"className":"flex items-center gap-2","children":[["$","h4",null,{"className":"font-medium","children":"Daily automation scheduled"}],["$","span",null,{"data-slot":"badge","data-variant":"secondary","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden bg-secondary text-secondary-foreground [a&]:hover:bg-secondary/90 text-xs","children":"system"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground","children":"Morning briefing cron job set for 7:15 AM daily"}],["$","p",null,{"className":"text-xs text-muted-foreground","children":"Yesterday at 2:45 PM"}]]}]]}]
|
||||||
|
e:["$","div","7",{"className":"flex gap-4 pb-6 border-b border-border last:border-0","children":[["$","div",null,{"className":"w-10 h-10 rounded-full flex items-center justify-center shrink-0 bg-green-500/10 text-green-500","children":["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-file-text w-5 h-5","aria-hidden":"true","children":[["$","path","1oefj6",{"d":"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"}],["$","path","wfsgrz",{"d":"M14 2v5a1 1 0 0 0 1 1h5"}],["$","path","b1mrlr",{"d":"M10 9H8"}],["$","path","t4e002",{"d":"M16 13H8"}],["$","path","z1uh3a",{"d":"M16 17H8"}],"$undefined"]}]}],["$","div",null,{"className":"flex-1 space-y-1","children":[["$","div",null,{"className":"flex items-center gap-2","children":[["$","h4",null,{"className":"font-medium","children":"Created DAILY_TOOLS_SETUP.md"}],["$","span",null,{"data-slot":"badge","data-variant":"secondary","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden bg-secondary text-secondary-foreground [a&]:hover:bg-secondary/90 text-xs","children":"file"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground","children":"Documented all skill integrations and setup instructions"}],["$","p",null,{"className":"text-xs text-muted-foreground","children":"Yesterday at 2:00 PM"}]]}]]}]
|
||||||
|
f:["$","div","8",{"className":"flex gap-4 pb-6 border-b border-border last:border-0","children":[["$","div",null,{"className":"w-10 h-10 rounded-full flex items-center justify-center shrink-0 bg-purple-500/10 text-purple-500","children":["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-wrench w-5 h-5","aria-hidden":"true","children":[["$","path","1ngwbx",{"d":"M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.106-3.105c.32-.322.863-.22.983.218a6 6 0 0 1-8.259 7.057l-7.91 7.91a1 1 0 0 1-2.999-3l7.91-7.91a6 6 0 0 1 7.057-8.259c.438.12.54.662.219.984z"}],"$undefined"]}]}],["$","div",null,{"className":"flex-1 space-y-1","children":[["$","div",null,{"className":"flex items-center gap-2","children":[["$","h4",null,{"className":"font-medium","children":"Installed icalBuddy"}],["$","span",null,{"data-slot":"badge","data-variant":"secondary","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden bg-secondary text-secondary-foreground [a&]:hover:bg-secondary/90 text-xs","children":"tool"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground","children":"Calendar integration now working with Apple Calendar"}],["$","p",null,{"className":"text-xs text-muted-foreground","children":"Yesterday at 1:30 PM"}]]}]]}]
|
||||||
|
10:["$","script","script-0",{"src":"/_next/static/chunks/aea8ffae850f0f32.js","async":true,"nonce":"$undefined"}]
|
||||||
|
11:["$","script","script-1",{"src":"/_next/static/chunks/91b41192b4a98cf1.js","async":true,"nonce":"$undefined"}]
|
||||||
|
12:["$","$L15",null,{"children":["$","$16",null,{"name":"Next.MetadataOutlet","children":"$@17"}]}]
|
||||||
|
13:["$","$1","h",{"children":[null,["$","$L18",null,{"children":"$L19"}],["$","div",null,{"hidden":true,"children":["$","$L1a",null,{"children":["$","$16",null,{"name":"Next.Metadata","children":"$L1b"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}]
|
||||||
|
19:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||||
|
1c:I[92064,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"IconMark"]
|
||||||
|
17:null
|
||||||
|
1b:[["$","title","0",{"children":"Mission Control | TopDogLabs"}],["$","meta","1",{"name":"description","content":"Central hub for activity, tasks, goals, and tools"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.0b3bf435.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L1c","3",{}]]
|
||||||
6
dist/activity/__next._head.txt
vendored
Normal file
6
dist/activity/__next._head.txt
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
1:"$Sreact.fragment"
|
||||||
|
2:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"ViewportBoundary"]
|
||||||
|
3:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"MetadataBoundary"]
|
||||||
|
4:"$Sreact.suspense"
|
||||||
|
5:I[92064,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"IconMark"]
|
||||||
|
0:{"buildId":"BaNBduHEWTzurUV8mpacN","rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Mission Control | TopDogLabs"}],["$","meta","1",{"name":"description","content":"Central hub for activity, tasks, goals, and tools"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.0b3bf435.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L5","3",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false}
|
||||||
5
dist/activity/__next._index.txt
vendored
Normal file
5
dist/activity/__next._index.txt
vendored
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
1:"$Sreact.fragment"
|
||||||
|
2:I[96757,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"default"]
|
||||||
|
3:I[7805,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"default"]
|
||||||
|
:HL["/_next/static/chunks/fa936e037dd092b4.css","style"]
|
||||||
|
0:{"buildId":"BaNBduHEWTzurUV8mpacN","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/fa936e037dd092b4.css","precedence":"next"}]],["$","html",null,{"lang":"en","className":"dark","children":["$","body",null,{"className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable antialiased bg-background","children":["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}]}]}]]}],"loading":null,"isPartial":false}
|
||||||
4
dist/activity/__next._tree.txt
vendored
Normal file
4
dist/activity/__next._tree.txt
vendored
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
:HL["/_next/static/chunks/fa936e037dd092b4.css","style"]
|
||||||
|
:HL["/_next/static/media/797e433ab948586e-s.p.dbea232f.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||||
|
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||||
|
0:{"buildId":"BaNBduHEWTzurUV8mpacN","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"activity","paramType":null,"paramKey":"activity","hasRuntimePrefetch":false,"slots":{"children":{"name":"__PAGE__","paramType":null,"paramKey":"__PAGE__","hasRuntimePrefetch":false,"slots":null,"isRootLayout":false}},"isRootLayout":false}},"isRootLayout":true},"staleTime":300}
|
||||||
20
dist/activity/__next.activity.__PAGE__.txt
vendored
Normal file
20
dist/activity/__next.activity.__PAGE__.txt
vendored
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
1:"$Sreact.fragment"
|
||||||
|
2:I[89567,["/_next/static/chunks/aea8ffae850f0f32.js","/_next/static/chunks/91b41192b4a98cf1.js"],"DashboardLayout"]
|
||||||
|
3:I[56006,["/_next/static/chunks/aea8ffae850f0f32.js","/_next/static/chunks/91b41192b4a98cf1.js"],"ScrollArea"]
|
||||||
|
11:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"OutletBoundary"]
|
||||||
|
12:"$Sreact.suspense"
|
||||||
|
0:{"buildId":"BaNBduHEWTzurUV8mpacN","rsc":["$","$1","c",{"children":[["$","$L2",null,{"children":["$","div",null,{"className":"space-y-6","children":[["$","div",null,{"children":[["$","h1",null,{"className":"text-3xl font-bold tracking-tight","children":"Activity Feed"}],["$","p",null,{"className":"text-muted-foreground mt-1","children":"Everything that's happening in your mission control."}]]}],["$","div",null,{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":[["$","div",null,{"data-slot":"card-header","className":"@container/card-header grid auto-rows-min grid-rows-[auto_auto] items-start gap-2 px-6 has-data-[slot=card-action]:grid-cols-[1fr_auto] [.border-b]:pb-6","children":["$","div",null,{"data-slot":"card-title","className":"leading-none font-semibold flex items-center gap-2","children":[["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-activity w-5 h-5","aria-hidden":"true","children":[["$","path","169zse",{"d":"M22 12h-2.48a2 2 0 0 0-1.93 1.46l-2.35 8.36a.25.25 0 0 1-.48 0L9.24 2.18a.25.25 0 0 0-.48 0l-2.35 8.36A2 2 0 0 1 4.49 12H2"}],"$undefined"]}],"Recent Activity"]}]}],["$","div",null,{"data-slot":"card-content","className":"px-6","children":["$","$L3",null,{"className":"h-[600px] pr-4","children":["$","div",null,{"className":"space-y-6","children":[["$","div","1",{"className":"flex gap-4 pb-6 border-b border-border last:border-0","children":[["$","div",null,{"className":"w-10 h-10 rounded-full flex items-center justify-center shrink-0 bg-blue-500/10 text-blue-500","children":["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-circle-check w-5 h-5","aria-hidden":"true","children":[["$","circle","1mglay",{"cx":"12","cy":"12","r":"10"}],["$","path","dzmm74",{"d":"m9 12 2 2 4-4"}],"$undefined"]}]}],["$","div",null,{"className":"flex-1 space-y-1","children":[["$","div",null,{"className":"flex items-center gap-2","children":[["$","h4",null,{"className":"font-medium","children":"Morning briefing completed"}],["$","span",null,{"data-slot":"badge","data-variant":"secondary","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden bg-secondary text-secondary-foreground [a&]:hover:bg-secondary/90 text-xs","children":"system"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground","children":"Checked calendar, email, reminders, and disk usage"}],["$","p",null,{"className":"text-xs text-muted-foreground","children":"Today at 7:15 AM"}]]}]]}],["$","div","2",{"className":"flex gap-4 pb-6 border-b border-border last:border-0","children":[["$","div",null,{"className":"w-10 h-10 rounded-full flex items-center justify-center shrink-0 bg-green-500/10 text-green-500","children":["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-file-text w-5 h-5","aria-hidden":"true","children":[["$","path","1oefj6",{"d":"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"}],["$","path","wfsgrz",{"d":"M14 2v5a1 1 0 0 0 1 1h5"}],["$","path","b1mrlr",{"d":"M10 9H8"}],["$","path","t4e002",{"d":"M16 13H8"}],["$","path","z1uh3a",{"d":"M16 17H8"}],"$undefined"]}]}],["$","div",null,{"className":"flex-1 space-y-1","children":[["$","div",null,{"className":"flex items-center gap-2","children":["$L4","$L5"]}],"$L6","$L7"]}]]}],"$L8","$L9","$La","$Lb","$Lc","$Ld"]}]}]}]]}]]}]}],["$Le","$Lf"],"$L10"]}],"loading":null,"isPartial":false}
|
||||||
|
4:["$","h4",null,{"className":"font-medium","children":"Downloads organized"}]
|
||||||
|
5:["$","span",null,{"data-slot":"badge","data-variant":"secondary","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden bg-secondary text-secondary-foreground [a&]:hover:bg-secondary/90 text-xs","children":"file"}]
|
||||||
|
6:["$","p",null,{"className":"text-sm text-muted-foreground","children":"Sorted 81 files into Images (18), Documents (31), Archives (32)"}]
|
||||||
|
7:["$","p",null,{"className":"text-xs text-muted-foreground","children":"Today at 9:30 AM"}]
|
||||||
|
8:["$","div","3",{"className":"flex gap-4 pb-6 border-b border-border last:border-0","children":[["$","div",null,{"className":"w-10 h-10 rounded-full flex items-center justify-center shrink-0 bg-purple-500/10 text-purple-500","children":["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-wrench w-5 h-5","aria-hidden":"true","children":[["$","path","1ngwbx",{"d":"M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.106-3.105c.32-.322.863-.22.983.218a6 6 0 0 1-8.259 7.057l-7.91 7.91a1 1 0 0 1-2.999-3l7.91-7.91a6 6 0 0 1 7.057-8.259c.438.12.54.662.219.984z"}],"$undefined"]}]}],["$","div",null,{"className":"flex-1 space-y-1","children":[["$","div",null,{"className":"flex items-center gap-2","children":[["$","h4",null,{"className":"font-medium","children":"Created 6 new skills"}],["$","span",null,{"data-slot":"badge","data-variant":"secondary","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden bg-secondary text-secondary-foreground [a&]:hover:bg-secondary/90 text-xs","children":"tool"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground","children":"File System, Browser Automation, Calendar, Email, Knowledge Base, Daily Automation"}],["$","p",null,{"className":"text-xs text-muted-foreground","children":"Yesterday at 5:00 PM"}]]}]]}]
|
||||||
|
9:["$","div","4",{"className":"flex gap-4 pb-6 border-b border-border last:border-0","children":[["$","div",null,{"className":"w-10 h-10 rounded-full flex items-center justify-center shrink-0 bg-yellow-500/10 text-yellow-500","children":["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-file-text w-5 h-5","aria-hidden":"true","children":[["$","path","1oefj6",{"d":"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"}],["$","path","wfsgrz",{"d":"M14 2v5a1 1 0 0 0 1 1h5"}],["$","path","b1mrlr",{"d":"M10 9H8"}],["$","path","t4e002",{"d":"M16 13H8"}],["$","path","z1uh3a",{"d":"M16 17H8"}],"$undefined"]}]}],["$","div",null,{"className":"flex-1 space-y-1","children":[["$","div",null,{"className":"flex items-center gap-2","children":[["$","h4",null,{"className":"font-medium","children":"Updated USER.md"}],["$","span",null,{"data-slot":"badge","data-variant":"secondary","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden bg-secondary text-secondary-foreground [a&]:hover:bg-secondary/90 text-xs","children":"doc"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground","children":"Added family details, daily routine, and project status"}],["$","p",null,{"className":"text-xs text-muted-foreground","children":"Yesterday at 4:30 PM"}]]}]]}]
|
||||||
|
a:["$","div","5",{"className":"flex gap-4 pb-6 border-b border-border last:border-0","children":[["$","div",null,{"className":"w-10 h-10 rounded-full flex items-center justify-center shrink-0 bg-pink-500/10 text-pink-500","children":["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-message-square w-5 h-5","aria-hidden":"true","children":[["$","path","18887p",{"d":"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z"}],"$undefined"]}]}],["$","div",null,{"className":"flex-1 space-y-1","children":[["$","div",null,{"className":"flex items-center gap-2","children":[["$","h4",null,{"className":"font-medium","children":"Brain dump completed"}],["$","span",null,{"data-slot":"badge","data-variant":"secondary","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden bg-secondary text-secondary-foreground [a&]:hover:bg-secondary/90 text-xs","children":"communication"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground","children":"Captured interests, career, goals, family, and preferences"}],["$","p",null,{"className":"text-xs text-muted-foreground","children":"Yesterday at 3:00 PM"}]]}]]}]
|
||||||
|
b:["$","div","6",{"className":"flex gap-4 pb-6 border-b border-border last:border-0","children":[["$","div",null,{"className":"w-10 h-10 rounded-full flex items-center justify-center shrink-0 bg-blue-500/10 text-blue-500","children":["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-calendar w-5 h-5","aria-hidden":"true","children":[["$","path","1cmpym",{"d":"M8 2v4"}],["$","path","4m81vk",{"d":"M16 2v4"}],["$","rect","1hopcy",{"width":"18","height":"18","x":"3","y":"4","rx":"2"}],["$","path","8toen8",{"d":"M3 10h18"}],"$undefined"]}]}],["$","div",null,{"className":"flex-1 space-y-1","children":[["$","div",null,{"className":"flex items-center gap-2","children":[["$","h4",null,{"className":"font-medium","children":"Daily automation scheduled"}],["$","span",null,{"data-slot":"badge","data-variant":"secondary","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden bg-secondary text-secondary-foreground [a&]:hover:bg-secondary/90 text-xs","children":"system"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground","children":"Morning briefing cron job set for 7:15 AM daily"}],["$","p",null,{"className":"text-xs text-muted-foreground","children":"Yesterday at 2:45 PM"}]]}]]}]
|
||||||
|
c:["$","div","7",{"className":"flex gap-4 pb-6 border-b border-border last:border-0","children":[["$","div",null,{"className":"w-10 h-10 rounded-full flex items-center justify-center shrink-0 bg-green-500/10 text-green-500","children":["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-file-text w-5 h-5","aria-hidden":"true","children":[["$","path","1oefj6",{"d":"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"}],["$","path","wfsgrz",{"d":"M14 2v5a1 1 0 0 0 1 1h5"}],["$","path","b1mrlr",{"d":"M10 9H8"}],["$","path","t4e002",{"d":"M16 13H8"}],["$","path","z1uh3a",{"d":"M16 17H8"}],"$undefined"]}]}],["$","div",null,{"className":"flex-1 space-y-1","children":[["$","div",null,{"className":"flex items-center gap-2","children":[["$","h4",null,{"className":"font-medium","children":"Created DAILY_TOOLS_SETUP.md"}],["$","span",null,{"data-slot":"badge","data-variant":"secondary","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden bg-secondary text-secondary-foreground [a&]:hover:bg-secondary/90 text-xs","children":"file"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground","children":"Documented all skill integrations and setup instructions"}],["$","p",null,{"className":"text-xs text-muted-foreground","children":"Yesterday at 2:00 PM"}]]}]]}]
|
||||||
|
d:["$","div","8",{"className":"flex gap-4 pb-6 border-b border-border last:border-0","children":[["$","div",null,{"className":"w-10 h-10 rounded-full flex items-center justify-center shrink-0 bg-purple-500/10 text-purple-500","children":["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-wrench w-5 h-5","aria-hidden":"true","children":[["$","path","1ngwbx",{"d":"M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.106-3.105c.32-.322.863-.22.983.218a6 6 0 0 1-8.259 7.057l-7.91 7.91a1 1 0 0 1-2.999-3l7.91-7.91a6 6 0 0 1 7.057-8.259c.438.12.54.662.219.984z"}],"$undefined"]}]}],["$","div",null,{"className":"flex-1 space-y-1","children":[["$","div",null,{"className":"flex items-center gap-2","children":[["$","h4",null,{"className":"font-medium","children":"Installed icalBuddy"}],["$","span",null,{"data-slot":"badge","data-variant":"secondary","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden bg-secondary text-secondary-foreground [a&]:hover:bg-secondary/90 text-xs","children":"tool"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground","children":"Calendar integration now working with Apple Calendar"}],["$","p",null,{"className":"text-xs text-muted-foreground","children":"Yesterday at 1:30 PM"}]]}]]}]
|
||||||
|
e:["$","script","script-0",{"src":"/_next/static/chunks/aea8ffae850f0f32.js","async":true}]
|
||||||
|
f:["$","script","script-1",{"src":"/_next/static/chunks/91b41192b4a98cf1.js","async":true}]
|
||||||
|
10:["$","$L11",null,{"children":["$","$12",null,{"name":"Next.MetadataOutlet","children":"$@13"}]}]
|
||||||
|
13:null
|
||||||
4
dist/activity/__next.activity.txt
vendored
Normal file
4
dist/activity/__next.activity.txt
vendored
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
1:"$Sreact.fragment"
|
||||||
|
2:I[96757,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"default"]
|
||||||
|
3:I[7805,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"default"]
|
||||||
|
0:{"buildId":"BaNBduHEWTzurUV8mpacN","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
|
||||||
1
dist/calendar.html
vendored
Normal file
1
dist/calendar.html
vendored
Normal file
File diff suppressed because one or more lines are too long
32
dist/calendar.txt
vendored
Normal file
32
dist/calendar.txt
vendored
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
1:"$Sreact.fragment"
|
||||||
|
2:I[96757,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"default"]
|
||||||
|
3:I[7805,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"default"]
|
||||||
|
4:I[89567,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/91b41192b4a98cf1.js"],"DashboardLayout"]
|
||||||
|
14:I[95111,[],"default"]
|
||||||
|
:HL["/_next/static/chunks/fa936e037dd092b4.css","style"]
|
||||||
|
:HL["/_next/static/media/797e433ab948586e-s.p.dbea232f.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||||
|
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||||
|
0:{"P":null,"b":"BaNBduHEWTzurUV8mpacN","c":["","calendar"],"q":"","i":false,"f":[[["",{"children":["calendar",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/fa936e037dd092b4.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]],["$","html",null,{"lang":"en","className":"dark","children":["$","body",null,{"className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable antialiased bg-background","children":["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L4",null,{"children":["$","div",null,{"className":"space-y-6","children":[["$","div",null,{"className":"flex flex-col sm:flex-row sm:items-center sm:justify-between gap-4","children":["$","div",null,{"children":[["$","h1",null,{"className":"text-3xl font-bold tracking-tight","children":"Calendar"}],["$","p",null,{"className":"text-muted-foreground mt-1","children":"Friday, February 20, 2026"}]]}]}],["$","div",null,{"className":"grid grid-cols-1 lg:grid-cols-3 gap-6","children":[["$","div",null,{"className":"lg:col-span-2 space-y-4","children":[["$","h2",null,{"className":"text-lg font-semibold","children":"Upcoming Events"}],[["$","div","1",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":["$","div",null,{"data-slot":"card-content","className":"p-4","children":["$","div",null,{"className":"flex items-start gap-4","children":[["$","div",null,{"className":"w-14 h-14 rounded-lg bg-secondary flex flex-col items-center justify-center shrink-0","children":[["$","span",null,{"className":"text-xs text-muted-foreground uppercase","children":"Feb"}],["$","span",null,{"className":"text-lg font-bold","children":"23"}]]}],["$","div",null,{"className":"flex-1 min-w-0","children":[["$","div",null,{"className":"flex items-center gap-2 flex-wrap","children":[["$","h3",null,{"className":"font-semibold","children":"Yearly Anniversary"}],["$","span",null,{"data-slot":"badge","data-variant":"outline","className":"inline-flex items-center justify-center rounded-full border px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden [a&]:hover:bg-accent [a&]:hover:text-accent-foreground bg-pink-500/10 text-pink-500 border-pink-500/20","children":"personal"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground mt-1","children":"Anniversary celebration"}],["$","div",null,{"className":"flex items-center gap-4 mt-2 text-xs text-muted-foreground","children":["$L5","$L6"]}]]}]]}]}]}],"$L7","$L8","$L9","$La","$Lb","$Lc","$Ld","$Le"]]}],"$Lf"]}]]}]}],["$L10","$L11"],"$L12"]}],{},null,false,false]},null,false,false]},null,false,false],"$L13",false]],"m":"$undefined","G":["$14",[]],"S":true}
|
||||||
|
15:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"OutletBoundary"]
|
||||||
|
16:"$Sreact.suspense"
|
||||||
|
18:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"ViewportBoundary"]
|
||||||
|
1a:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"MetadataBoundary"]
|
||||||
|
5:["$","span",null,{"className":"flex items-center gap-1","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-clock w-3 h-3","aria-hidden":"true","children":[["$","circle","1mglay",{"cx":"12","cy":"12","r":"10"}],["$","path","mmk7yg",{"d":"M12 6v6l4 2"}],"$undefined"]}],"All day"]}]
|
||||||
|
6:["$","span",null,{"className":"flex items-center gap-1","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-calendar w-3 h-3","aria-hidden":"true","children":[["$","path","1cmpym",{"d":"M8 2v4"}],["$","path","4m81vk",{"d":"M16 2v4"}],["$","rect","1hopcy",{"width":"18","height":"18","x":"3","y":"4","rx":"2"}],["$","path","8toen8",{"d":"M3 10h18"}],"$undefined"]}],"February 23, 2026"]}]
|
||||||
|
7:["$","div","2",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":["$","div",null,{"data-slot":"card-content","className":"p-4","children":["$","div",null,{"className":"flex items-start gap-4","children":[["$","div",null,{"className":"w-14 h-14 rounded-lg bg-secondary flex flex-col items-center justify-center shrink-0","children":[["$","span",null,{"className":"text-xs text-muted-foreground uppercase","children":"Feb"}],["$","span",null,{"className":"text-lg font-bold","children":"26"}]]}],["$","div",null,{"className":"flex-1 min-w-0","children":[["$","div",null,{"className":"flex items-center gap-2 flex-wrap","children":[["$","h3",null,{"className":"font-semibold","children":"Grabbing Anderson's dogs"}],["$","span",null,{"data-slot":"badge","data-variant":"outline","className":"inline-flex items-center justify-center rounded-full border px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden [a&]:hover:bg-accent [a&]:hover:text-accent-foreground bg-orange-500/10 text-orange-500 border-orange-500/20","children":"task"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground mt-1","children":"Pet sitting duties"}],["$","div",null,{"className":"flex items-center gap-4 mt-2 text-xs text-muted-foreground","children":[["$","span",null,{"className":"flex items-center gap-1","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-clock w-3 h-3","aria-hidden":"true","children":[["$","circle","1mglay",{"cx":"12","cy":"12","r":"10"}],["$","path","mmk7yg",{"d":"M12 6v6l4 2"}],"$undefined"]}],"5:30 PM - 6:30 PM"]}],["$","span",null,{"className":"flex items-center gap-1","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-calendar w-3 h-3","aria-hidden":"true","children":[["$","path","1cmpym",{"d":"M8 2v4"}],["$","path","4m81vk",{"d":"M16 2v4"}],["$","rect","1hopcy",{"width":"18","height":"18","x":"3","y":"4","rx":"2"}],["$","path","8toen8",{"d":"M3 10h18"}],"$undefined"]}],"February 26, 2026"]}]]}]]}]]}]}]}]
|
||||||
|
8:["$","div","3",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":["$","div",null,{"data-slot":"card-content","className":"p-4","children":["$","div",null,{"className":"flex items-start gap-4","children":[["$","div",null,{"className":"w-14 h-14 rounded-lg bg-secondary flex flex-col items-center justify-center shrink-0","children":[["$","span",null,{"className":"text-xs text-muted-foreground uppercase","children":"Eve"}],["$","span",null,{"className":"text-lg font-bold","children":"--"}]]}],["$","div",null,{"className":"flex-1 min-w-0","children":[["$","div",null,{"className":"flex items-center gap-2 flex-wrap","children":[["$","h3",null,{"className":"font-semibold","children":"Daily Standup"}],["$","span",null,{"data-slot":"badge","data-variant":"outline","className":"inline-flex items-center justify-center rounded-full border px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden [a&]:hover:bg-accent [a&]:hover:text-accent-foreground bg-blue-500/10 text-blue-500 border-blue-500/20","children":"work"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground mt-1","children":"Toyota iOS team standup"}],["$","div",null,{"className":"flex items-center gap-4 mt-2 text-xs text-muted-foreground","children":[["$","span",null,{"className":"flex items-center gap-1","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-clock w-3 h-3","aria-hidden":"true","children":[["$","circle","1mglay",{"cx":"12","cy":"12","r":"10"}],["$","path","mmk7yg",{"d":"M12 6v6l4 2"}],"$undefined"]}],"8:30 AM"]}],["$","span",null,{"className":"flex items-center gap-1","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-calendar w-3 h-3","aria-hidden":"true","children":[["$","path","1cmpym",{"d":"M8 2v4"}],["$","path","4m81vk",{"d":"M16 2v4"}],["$","rect","1hopcy",{"width":"18","height":"18","x":"3","y":"4","rx":"2"}],["$","path","8toen8",{"d":"M3 10h18"}],"$undefined"]}],"Every weekday"]}]]}]]}]]}]}]}]
|
||||||
|
9:["$","div","4",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":["$","div",null,{"data-slot":"card-content","className":"p-4","children":["$","div",null,{"className":"flex items-start gap-4","children":[["$","div",null,{"className":"w-14 h-14 rounded-lg bg-secondary flex flex-col items-center justify-center shrink-0","children":[["$","span",null,{"className":"text-xs text-muted-foreground uppercase","children":"Eve"}],["$","span",null,{"className":"text-lg font-bold","children":"--"}]]}],["$","div",null,{"className":"flex-1 min-w-0","children":[["$","div",null,{"className":"flex items-center gap-2 flex-wrap","children":[["$","h3",null,{"className":"font-semibold","children":"Group Workout"}],["$","span",null,{"data-slot":"badge","data-variant":"outline","className":"inline-flex items-center justify-center rounded-full border px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden [a&]:hover:bg-accent [a&]:hover:text-accent-foreground bg-green-500/10 text-green-500 border-green-500/20","children":"health"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground mt-1","children":"Gym session"}],["$","div",null,{"className":"flex items-center gap-4 mt-2 text-xs text-muted-foreground","children":[["$","span",null,{"className":"flex items-center gap-1","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-clock w-3 h-3","aria-hidden":"true","children":[["$","circle","1mglay",{"cx":"12","cy":"12","r":"10"}],["$","path","mmk7yg",{"d":"M12 6v6l4 2"}],"$undefined"]}],"10:00 AM - 11:00 AM"]}],["$","span",null,{"className":"flex items-center gap-1","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-calendar w-3 h-3","aria-hidden":"true","children":[["$","path","1cmpym",{"d":"M8 2v4"}],["$","path","4m81vk",{"d":"M16 2v4"}],["$","rect","1hopcy",{"width":"18","height":"18","x":"3","y":"4","rx":"2"}],["$","path","8toen8",{"d":"M3 10h18"}],"$undefined"]}],"Every weekday"]}]]}]]}]]}]}]}]
|
||||||
|
a:["$","div","5",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":["$","div",null,{"data-slot":"card-content","className":"p-4","children":["$","div",null,{"className":"flex items-start gap-4","children":[["$","div",null,{"className":"w-14 h-14 rounded-lg bg-secondary flex flex-col items-center justify-center shrink-0","children":[["$","span",null,{"className":"text-xs text-muted-foreground uppercase","children":"Eve"}],["$","span",null,{"className":"text-lg font-bold","children":"--"}]]}],["$","div",null,{"className":"flex-1 min-w-0","children":[["$","div",null,{"className":"flex items-center gap-2 flex-wrap","children":[["$","h3",null,{"className":"font-semibold","children":"NWW - Cowboy Club"}],["$","span",null,{"data-slot":"badge","data-variant":"outline","className":"inline-flex items-center justify-center rounded-full border px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden [a&]:hover:bg-accent [a&]:hover:text-accent-foreground bg-purple-500/10 text-purple-500 border-purple-500/20","children":"social"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground mt-1","children":"No Wives Wednesday with cigars"}],["$","div",null,{"className":"flex items-center gap-4 mt-2 text-xs text-muted-foreground","children":[["$","span",null,{"className":"flex items-center gap-1","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-clock w-3 h-3","aria-hidden":"true","children":[["$","circle","1mglay",{"cx":"12","cy":"12","r":"10"}],["$","path","mmk7yg",{"d":"M12 6v6l4 2"}],"$undefined"]}],"Evening"]}],["$","span",null,{"className":"flex items-center gap-1","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-calendar w-3 h-3","aria-hidden":"true","children":[["$","path","1cmpym",{"d":"M8 2v4"}],["$","path","4m81vk",{"d":"M16 2v4"}],["$","rect","1hopcy",{"width":"18","height":"18","x":"3","y":"4","rx":"2"}],["$","path","8toen8",{"d":"M3 10h18"}],"$undefined"]}],"Every Wednesday"]}]]}]]}]]}]}]}]
|
||||||
|
b:["$","div","6",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":["$","div",null,{"data-slot":"card-content","className":"p-4","children":["$","div",null,{"className":"flex items-start gap-4","children":[["$","div",null,{"className":"w-14 h-14 rounded-lg bg-secondary flex flex-col items-center justify-center shrink-0","children":[["$","span",null,{"className":"text-xs text-muted-foreground uppercase","children":"Mar"}],["$","span",null,{"className":"text-lg font-bold","children":"2026"}]]}],["$","div",null,{"className":"flex-1 min-w-0","children":[["$","div",null,{"className":"flex items-center gap-2 flex-wrap","children":[["$","h3",null,{"className":"font-semibold","children":"Contract Renewal"}],["$","span",null,{"data-slot":"badge","data-variant":"outline","className":"inline-flex items-center justify-center rounded-full border px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden [a&]:hover:bg-accent [a&]:hover:text-accent-foreground bg-blue-500/10 text-blue-500 border-blue-500/20","children":"work"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground mt-1","children":"Toyota contract up for renewal"}],["$","div",null,{"className":"flex items-center gap-4 mt-2 text-xs text-muted-foreground","children":[["$","span",null,{"className":"flex items-center gap-1","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-clock w-3 h-3","aria-hidden":"true","children":[["$","circle","1mglay",{"cx":"12","cy":"12","r":"10"}],["$","path","mmk7yg",{"d":"M12 6v6l4 2"}],"$undefined"]}],"TBD"]}],["$","span",null,{"className":"flex items-center gap-1","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-calendar w-3 h-3","aria-hidden":"true","children":[["$","path","1cmpym",{"d":"M8 2v4"}],["$","path","4m81vk",{"d":"M16 2v4"}],["$","rect","1hopcy",{"width":"18","height":"18","x":"3","y":"4","rx":"2"}],["$","path","8toen8",{"d":"M3 10h18"}],"$undefined"]}],"March 2026"]}]]}]]}]]}]}]}]
|
||||||
|
c:["$","div","7",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":["$","div",null,{"data-slot":"card-content","className":"p-4","children":["$","div",null,{"className":"flex items-start gap-4","children":[["$","div",null,{"className":"w-14 h-14 rounded-lg bg-secondary flex flex-col items-center justify-center shrink-0","children":[["$","span",null,{"className":"text-xs text-muted-foreground uppercase","children":"202"}],["$","span",null,{"className":"text-lg font-bold","children":"2026"}]]}],["$","div",null,{"className":"flex-1 min-w-0","children":[["$","div",null,{"className":"flex items-center gap-2 flex-wrap","children":[["$","h3",null,{"className":"font-semibold","children":"Mindy Turns 60"}],["$","span",null,{"data-slot":"badge","data-variant":"outline","className":"inline-flex items-center justify-center rounded-full border px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden [a&]:hover:bg-accent [a&]:hover:text-accent-foreground bg-yellow-500/10 text-yellow-500 border-yellow-500/20","children":"family"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground mt-1","children":"Family milestone birthday"}],["$","div",null,{"className":"flex items-center gap-4 mt-2 text-xs text-muted-foreground","children":[["$","span",null,{"className":"flex items-center gap-1","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-clock w-3 h-3","aria-hidden":"true","children":[["$","circle","1mglay",{"cx":"12","cy":"12","r":"10"}],["$","path","mmk7yg",{"d":"M12 6v6l4 2"}],"$undefined"]}],"TBD"]}],["$","span",null,{"className":"flex items-center gap-1","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-calendar w-3 h-3","aria-hidden":"true","children":[["$","path","1cmpym",{"d":"M8 2v4"}],["$","path","4m81vk",{"d":"M16 2v4"}],["$","rect","1hopcy",{"width":"18","height":"18","x":"3","y":"4","rx":"2"}],["$","path","8toen8",{"d":"M3 10h18"}],"$undefined"]}],"2026"]}]]}]]}]]}]}]}]
|
||||||
|
d:["$","div","8",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":["$","div",null,{"data-slot":"card-content","className":"p-4","children":["$","div",null,{"className":"flex items-start gap-4","children":[["$","div",null,{"className":"w-14 h-14 rounded-lg bg-secondary flex flex-col items-center justify-center shrink-0","children":[["$","span",null,{"className":"text-xs text-muted-foreground uppercase","children":"202"}],["$","span",null,{"className":"text-lg font-bold","children":"2026"}]]}],["$","div",null,{"className":"flex-1 min-w-0","children":[["$","div",null,{"className":"flex items-center gap-2 flex-wrap","children":[["$","h3",null,{"className":"font-semibold","children":"Bailey Turns 35"}],["$","span",null,{"data-slot":"badge","data-variant":"outline","className":"inline-flex items-center justify-center rounded-full border px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden [a&]:hover:bg-accent [a&]:hover:text-accent-foreground bg-yellow-500/10 text-yellow-500 border-yellow-500/20","children":"family"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground mt-1","children":"Family milestone birthday"}],["$","div",null,{"className":"flex items-center gap-4 mt-2 text-xs text-muted-foreground","children":[["$","span",null,{"className":"flex items-center gap-1","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-clock w-3 h-3","aria-hidden":"true","children":[["$","circle","1mglay",{"cx":"12","cy":"12","r":"10"}],["$","path","mmk7yg",{"d":"M12 6v6l4 2"}],"$undefined"]}],"TBD"]}],["$","span",null,{"className":"flex items-center gap-1","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-calendar w-3 h-3","aria-hidden":"true","children":[["$","path","1cmpym",{"d":"M8 2v4"}],["$","path","4m81vk",{"d":"M16 2v4"}],["$","rect","1hopcy",{"width":"18","height":"18","x":"3","y":"4","rx":"2"}],["$","path","8toen8",{"d":"M3 10h18"}],"$undefined"]}],"2026"]}]]}]]}]]}]}]}]
|
||||||
|
e:["$","div","9",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":["$","div",null,{"data-slot":"card-content","className":"p-4","children":["$","div",null,{"className":"flex items-start gap-4","children":[["$","div",null,{"className":"w-14 h-14 rounded-lg bg-secondary flex flex-col items-center justify-center shrink-0","children":[["$","span",null,{"className":"text-xs text-muted-foreground uppercase","children":"202"}],["$","span",null,{"className":"text-lg font-bold","children":"2026"}]]}],["$","div",null,{"className":"flex-1 min-w-0","children":[["$","div",null,{"className":"flex items-center gap-2 flex-wrap","children":[["$","h3",null,{"className":"font-semibold","children":"Taylor Turns 30"}],["$","span",null,{"data-slot":"badge","data-variant":"outline","className":"inline-flex items-center justify-center rounded-full border px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden [a&]:hover:bg-accent [a&]:hover:text-accent-foreground bg-yellow-500/10 text-yellow-500 border-yellow-500/20","children":"family"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground mt-1","children":"Family milestone birthday"}],["$","div",null,{"className":"flex items-center gap-4 mt-2 text-xs text-muted-foreground","children":[["$","span",null,{"className":"flex items-center gap-1","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-clock w-3 h-3","aria-hidden":"true","children":[["$","circle","1mglay",{"cx":"12","cy":"12","r":"10"}],["$","path","mmk7yg",{"d":"M12 6v6l4 2"}],"$undefined"]}],"TBD"]}],["$","span",null,{"className":"flex items-center gap-1","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-calendar w-3 h-3","aria-hidden":"true","children":[["$","path","1cmpym",{"d":"M8 2v4"}],["$","path","4m81vk",{"d":"M16 2v4"}],["$","rect","1hopcy",{"width":"18","height":"18","x":"3","y":"4","rx":"2"}],["$","path","8toen8",{"d":"M3 10h18"}],"$undefined"]}],"2026"]}]]}]]}]]}]}]}]
|
||||||
|
f:["$","div",null,{"className":"space-y-6","children":[["$","div",null,{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":[["$","div",null,{"data-slot":"card-header","className":"@container/card-header grid auto-rows-min grid-rows-[auto_auto] items-start gap-2 px-6 has-data-[slot=card-action]:grid-cols-[1fr_auto] [.border-b]:pb-6","children":["$","div",null,{"data-slot":"card-title","className":"font-semibold text-base","children":"Today's Summary"}]}],["$","div",null,{"data-slot":"card-content","className":"px-6 space-y-4","children":[["$","div",null,{"className":"flex justify-between text-sm","children":[["$","span",null,{"className":"text-muted-foreground","children":"Events"}],["$","span",null,{"className":"font-medium","children":"3"}]]}],["$","div",null,{"className":"flex justify-between text-sm","children":[["$","span",null,{"className":"text-muted-foreground","children":"Tasks"}],["$","span",null,{"className":"font-medium","children":"4"}]]}],["$","div",null,{"className":"flex justify-between text-sm","children":[["$","span",null,{"className":"text-muted-foreground","children":"Reminders"}],["$","span",null,{"className":"font-medium","children":"2"}]]}]]}]]}],["$","div",null,{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":[["$","div",null,{"data-slot":"card-header","className":"@container/card-header grid auto-rows-min grid-rows-[auto_auto] items-start gap-2 px-6 has-data-[slot=card-action]:grid-cols-[1fr_auto] [.border-b]:pb-6","children":["$","div",null,{"data-slot":"card-title","className":"font-semibold text-base","children":"Quick Actions"}]}],["$","div",null,{"data-slot":"card-content","className":"px-6 space-y-2","children":[["$","button",null,{"className":"w-full text-left px-3 py-2 rounded-lg text-sm hover:bg-accent transition-colors","children":"+ Add Event"}],["$","button",null,{"className":"w-full text-left px-3 py-2 rounded-lg text-sm hover:bg-accent transition-colors","children":"+ Add Reminder"}],["$","button",null,{"className":"w-full text-left px-3 py-2 rounded-lg text-sm hover:bg-accent transition-colors","children":"View Full Calendar"}]]}]]}]]}]
|
||||||
|
10:["$","script","script-0",{"src":"/_next/static/chunks/05acb8b0bd6792f1.js","async":true,"nonce":"$undefined"}]
|
||||||
|
11:["$","script","script-1",{"src":"/_next/static/chunks/91b41192b4a98cf1.js","async":true,"nonce":"$undefined"}]
|
||||||
|
12:["$","$L15",null,{"children":["$","$16",null,{"name":"Next.MetadataOutlet","children":"$@17"}]}]
|
||||||
|
13:["$","$1","h",{"children":[null,["$","$L18",null,{"children":"$L19"}],["$","div",null,{"hidden":true,"children":["$","$L1a",null,{"children":["$","$16",null,{"name":"Next.Metadata","children":"$L1b"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}]
|
||||||
|
19:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||||
|
1c:I[92064,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"IconMark"]
|
||||||
|
17:null
|
||||||
|
1b:[["$","title","0",{"children":"Mission Control | TopDogLabs"}],["$","meta","1",{"name":"description","content":"Central hub for activity, tasks, goals, and tools"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.0b3bf435.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L1c","3",{}]]
|
||||||
32
dist/calendar/__next._full.txt
vendored
Normal file
32
dist/calendar/__next._full.txt
vendored
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
1:"$Sreact.fragment"
|
||||||
|
2:I[96757,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"default"]
|
||||||
|
3:I[7805,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"default"]
|
||||||
|
4:I[89567,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/91b41192b4a98cf1.js"],"DashboardLayout"]
|
||||||
|
14:I[95111,[],"default"]
|
||||||
|
:HL["/_next/static/chunks/fa936e037dd092b4.css","style"]
|
||||||
|
:HL["/_next/static/media/797e433ab948586e-s.p.dbea232f.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||||
|
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||||
|
0:{"P":null,"b":"BaNBduHEWTzurUV8mpacN","c":["","calendar"],"q":"","i":false,"f":[[["",{"children":["calendar",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/fa936e037dd092b4.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]],["$","html",null,{"lang":"en","className":"dark","children":["$","body",null,{"className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable antialiased bg-background","children":["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L4",null,{"children":["$","div",null,{"className":"space-y-6","children":[["$","div",null,{"className":"flex flex-col sm:flex-row sm:items-center sm:justify-between gap-4","children":["$","div",null,{"children":[["$","h1",null,{"className":"text-3xl font-bold tracking-tight","children":"Calendar"}],["$","p",null,{"className":"text-muted-foreground mt-1","children":"Friday, February 20, 2026"}]]}]}],["$","div",null,{"className":"grid grid-cols-1 lg:grid-cols-3 gap-6","children":[["$","div",null,{"className":"lg:col-span-2 space-y-4","children":[["$","h2",null,{"className":"text-lg font-semibold","children":"Upcoming Events"}],[["$","div","1",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":["$","div",null,{"data-slot":"card-content","className":"p-4","children":["$","div",null,{"className":"flex items-start gap-4","children":[["$","div",null,{"className":"w-14 h-14 rounded-lg bg-secondary flex flex-col items-center justify-center shrink-0","children":[["$","span",null,{"className":"text-xs text-muted-foreground uppercase","children":"Feb"}],["$","span",null,{"className":"text-lg font-bold","children":"23"}]]}],["$","div",null,{"className":"flex-1 min-w-0","children":[["$","div",null,{"className":"flex items-center gap-2 flex-wrap","children":[["$","h3",null,{"className":"font-semibold","children":"Yearly Anniversary"}],["$","span",null,{"data-slot":"badge","data-variant":"outline","className":"inline-flex items-center justify-center rounded-full border px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden [a&]:hover:bg-accent [a&]:hover:text-accent-foreground bg-pink-500/10 text-pink-500 border-pink-500/20","children":"personal"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground mt-1","children":"Anniversary celebration"}],["$","div",null,{"className":"flex items-center gap-4 mt-2 text-xs text-muted-foreground","children":["$L5","$L6"]}]]}]]}]}]}],"$L7","$L8","$L9","$La","$Lb","$Lc","$Ld","$Le"]]}],"$Lf"]}]]}]}],["$L10","$L11"],"$L12"]}],{},null,false,false]},null,false,false]},null,false,false],"$L13",false]],"m":"$undefined","G":["$14",[]],"S":true}
|
||||||
|
15:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"OutletBoundary"]
|
||||||
|
16:"$Sreact.suspense"
|
||||||
|
18:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"ViewportBoundary"]
|
||||||
|
1a:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"MetadataBoundary"]
|
||||||
|
5:["$","span",null,{"className":"flex items-center gap-1","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-clock w-3 h-3","aria-hidden":"true","children":[["$","circle","1mglay",{"cx":"12","cy":"12","r":"10"}],["$","path","mmk7yg",{"d":"M12 6v6l4 2"}],"$undefined"]}],"All day"]}]
|
||||||
|
6:["$","span",null,{"className":"flex items-center gap-1","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-calendar w-3 h-3","aria-hidden":"true","children":[["$","path","1cmpym",{"d":"M8 2v4"}],["$","path","4m81vk",{"d":"M16 2v4"}],["$","rect","1hopcy",{"width":"18","height":"18","x":"3","y":"4","rx":"2"}],["$","path","8toen8",{"d":"M3 10h18"}],"$undefined"]}],"February 23, 2026"]}]
|
||||||
|
7:["$","div","2",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":["$","div",null,{"data-slot":"card-content","className":"p-4","children":["$","div",null,{"className":"flex items-start gap-4","children":[["$","div",null,{"className":"w-14 h-14 rounded-lg bg-secondary flex flex-col items-center justify-center shrink-0","children":[["$","span",null,{"className":"text-xs text-muted-foreground uppercase","children":"Feb"}],["$","span",null,{"className":"text-lg font-bold","children":"26"}]]}],["$","div",null,{"className":"flex-1 min-w-0","children":[["$","div",null,{"className":"flex items-center gap-2 flex-wrap","children":[["$","h3",null,{"className":"font-semibold","children":"Grabbing Anderson's dogs"}],["$","span",null,{"data-slot":"badge","data-variant":"outline","className":"inline-flex items-center justify-center rounded-full border px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden [a&]:hover:bg-accent [a&]:hover:text-accent-foreground bg-orange-500/10 text-orange-500 border-orange-500/20","children":"task"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground mt-1","children":"Pet sitting duties"}],["$","div",null,{"className":"flex items-center gap-4 mt-2 text-xs text-muted-foreground","children":[["$","span",null,{"className":"flex items-center gap-1","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-clock w-3 h-3","aria-hidden":"true","children":[["$","circle","1mglay",{"cx":"12","cy":"12","r":"10"}],["$","path","mmk7yg",{"d":"M12 6v6l4 2"}],"$undefined"]}],"5:30 PM - 6:30 PM"]}],["$","span",null,{"className":"flex items-center gap-1","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-calendar w-3 h-3","aria-hidden":"true","children":[["$","path","1cmpym",{"d":"M8 2v4"}],["$","path","4m81vk",{"d":"M16 2v4"}],["$","rect","1hopcy",{"width":"18","height":"18","x":"3","y":"4","rx":"2"}],["$","path","8toen8",{"d":"M3 10h18"}],"$undefined"]}],"February 26, 2026"]}]]}]]}]]}]}]}]
|
||||||
|
8:["$","div","3",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":["$","div",null,{"data-slot":"card-content","className":"p-4","children":["$","div",null,{"className":"flex items-start gap-4","children":[["$","div",null,{"className":"w-14 h-14 rounded-lg bg-secondary flex flex-col items-center justify-center shrink-0","children":[["$","span",null,{"className":"text-xs text-muted-foreground uppercase","children":"Eve"}],["$","span",null,{"className":"text-lg font-bold","children":"--"}]]}],["$","div",null,{"className":"flex-1 min-w-0","children":[["$","div",null,{"className":"flex items-center gap-2 flex-wrap","children":[["$","h3",null,{"className":"font-semibold","children":"Daily Standup"}],["$","span",null,{"data-slot":"badge","data-variant":"outline","className":"inline-flex items-center justify-center rounded-full border px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden [a&]:hover:bg-accent [a&]:hover:text-accent-foreground bg-blue-500/10 text-blue-500 border-blue-500/20","children":"work"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground mt-1","children":"Toyota iOS team standup"}],["$","div",null,{"className":"flex items-center gap-4 mt-2 text-xs text-muted-foreground","children":[["$","span",null,{"className":"flex items-center gap-1","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-clock w-3 h-3","aria-hidden":"true","children":[["$","circle","1mglay",{"cx":"12","cy":"12","r":"10"}],["$","path","mmk7yg",{"d":"M12 6v6l4 2"}],"$undefined"]}],"8:30 AM"]}],["$","span",null,{"className":"flex items-center gap-1","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-calendar w-3 h-3","aria-hidden":"true","children":[["$","path","1cmpym",{"d":"M8 2v4"}],["$","path","4m81vk",{"d":"M16 2v4"}],["$","rect","1hopcy",{"width":"18","height":"18","x":"3","y":"4","rx":"2"}],["$","path","8toen8",{"d":"M3 10h18"}],"$undefined"]}],"Every weekday"]}]]}]]}]]}]}]}]
|
||||||
|
9:["$","div","4",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":["$","div",null,{"data-slot":"card-content","className":"p-4","children":["$","div",null,{"className":"flex items-start gap-4","children":[["$","div",null,{"className":"w-14 h-14 rounded-lg bg-secondary flex flex-col items-center justify-center shrink-0","children":[["$","span",null,{"className":"text-xs text-muted-foreground uppercase","children":"Eve"}],["$","span",null,{"className":"text-lg font-bold","children":"--"}]]}],["$","div",null,{"className":"flex-1 min-w-0","children":[["$","div",null,{"className":"flex items-center gap-2 flex-wrap","children":[["$","h3",null,{"className":"font-semibold","children":"Group Workout"}],["$","span",null,{"data-slot":"badge","data-variant":"outline","className":"inline-flex items-center justify-center rounded-full border px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden [a&]:hover:bg-accent [a&]:hover:text-accent-foreground bg-green-500/10 text-green-500 border-green-500/20","children":"health"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground mt-1","children":"Gym session"}],["$","div",null,{"className":"flex items-center gap-4 mt-2 text-xs text-muted-foreground","children":[["$","span",null,{"className":"flex items-center gap-1","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-clock w-3 h-3","aria-hidden":"true","children":[["$","circle","1mglay",{"cx":"12","cy":"12","r":"10"}],["$","path","mmk7yg",{"d":"M12 6v6l4 2"}],"$undefined"]}],"10:00 AM - 11:00 AM"]}],["$","span",null,{"className":"flex items-center gap-1","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-calendar w-3 h-3","aria-hidden":"true","children":[["$","path","1cmpym",{"d":"M8 2v4"}],["$","path","4m81vk",{"d":"M16 2v4"}],["$","rect","1hopcy",{"width":"18","height":"18","x":"3","y":"4","rx":"2"}],["$","path","8toen8",{"d":"M3 10h18"}],"$undefined"]}],"Every weekday"]}]]}]]}]]}]}]}]
|
||||||
|
a:["$","div","5",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":["$","div",null,{"data-slot":"card-content","className":"p-4","children":["$","div",null,{"className":"flex items-start gap-4","children":[["$","div",null,{"className":"w-14 h-14 rounded-lg bg-secondary flex flex-col items-center justify-center shrink-0","children":[["$","span",null,{"className":"text-xs text-muted-foreground uppercase","children":"Eve"}],["$","span",null,{"className":"text-lg font-bold","children":"--"}]]}],["$","div",null,{"className":"flex-1 min-w-0","children":[["$","div",null,{"className":"flex items-center gap-2 flex-wrap","children":[["$","h3",null,{"className":"font-semibold","children":"NWW - Cowboy Club"}],["$","span",null,{"data-slot":"badge","data-variant":"outline","className":"inline-flex items-center justify-center rounded-full border px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden [a&]:hover:bg-accent [a&]:hover:text-accent-foreground bg-purple-500/10 text-purple-500 border-purple-500/20","children":"social"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground mt-1","children":"No Wives Wednesday with cigars"}],["$","div",null,{"className":"flex items-center gap-4 mt-2 text-xs text-muted-foreground","children":[["$","span",null,{"className":"flex items-center gap-1","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-clock w-3 h-3","aria-hidden":"true","children":[["$","circle","1mglay",{"cx":"12","cy":"12","r":"10"}],["$","path","mmk7yg",{"d":"M12 6v6l4 2"}],"$undefined"]}],"Evening"]}],["$","span",null,{"className":"flex items-center gap-1","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-calendar w-3 h-3","aria-hidden":"true","children":[["$","path","1cmpym",{"d":"M8 2v4"}],["$","path","4m81vk",{"d":"M16 2v4"}],["$","rect","1hopcy",{"width":"18","height":"18","x":"3","y":"4","rx":"2"}],["$","path","8toen8",{"d":"M3 10h18"}],"$undefined"]}],"Every Wednesday"]}]]}]]}]]}]}]}]
|
||||||
|
b:["$","div","6",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":["$","div",null,{"data-slot":"card-content","className":"p-4","children":["$","div",null,{"className":"flex items-start gap-4","children":[["$","div",null,{"className":"w-14 h-14 rounded-lg bg-secondary flex flex-col items-center justify-center shrink-0","children":[["$","span",null,{"className":"text-xs text-muted-foreground uppercase","children":"Mar"}],["$","span",null,{"className":"text-lg font-bold","children":"2026"}]]}],["$","div",null,{"className":"flex-1 min-w-0","children":[["$","div",null,{"className":"flex items-center gap-2 flex-wrap","children":[["$","h3",null,{"className":"font-semibold","children":"Contract Renewal"}],["$","span",null,{"data-slot":"badge","data-variant":"outline","className":"inline-flex items-center justify-center rounded-full border px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden [a&]:hover:bg-accent [a&]:hover:text-accent-foreground bg-blue-500/10 text-blue-500 border-blue-500/20","children":"work"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground mt-1","children":"Toyota contract up for renewal"}],["$","div",null,{"className":"flex items-center gap-4 mt-2 text-xs text-muted-foreground","children":[["$","span",null,{"className":"flex items-center gap-1","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-clock w-3 h-3","aria-hidden":"true","children":[["$","circle","1mglay",{"cx":"12","cy":"12","r":"10"}],["$","path","mmk7yg",{"d":"M12 6v6l4 2"}],"$undefined"]}],"TBD"]}],["$","span",null,{"className":"flex items-center gap-1","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-calendar w-3 h-3","aria-hidden":"true","children":[["$","path","1cmpym",{"d":"M8 2v4"}],["$","path","4m81vk",{"d":"M16 2v4"}],["$","rect","1hopcy",{"width":"18","height":"18","x":"3","y":"4","rx":"2"}],["$","path","8toen8",{"d":"M3 10h18"}],"$undefined"]}],"March 2026"]}]]}]]}]]}]}]}]
|
||||||
|
c:["$","div","7",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":["$","div",null,{"data-slot":"card-content","className":"p-4","children":["$","div",null,{"className":"flex items-start gap-4","children":[["$","div",null,{"className":"w-14 h-14 rounded-lg bg-secondary flex flex-col items-center justify-center shrink-0","children":[["$","span",null,{"className":"text-xs text-muted-foreground uppercase","children":"202"}],["$","span",null,{"className":"text-lg font-bold","children":"2026"}]]}],["$","div",null,{"className":"flex-1 min-w-0","children":[["$","div",null,{"className":"flex items-center gap-2 flex-wrap","children":[["$","h3",null,{"className":"font-semibold","children":"Mindy Turns 60"}],["$","span",null,{"data-slot":"badge","data-variant":"outline","className":"inline-flex items-center justify-center rounded-full border px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden [a&]:hover:bg-accent [a&]:hover:text-accent-foreground bg-yellow-500/10 text-yellow-500 border-yellow-500/20","children":"family"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground mt-1","children":"Family milestone birthday"}],["$","div",null,{"className":"flex items-center gap-4 mt-2 text-xs text-muted-foreground","children":[["$","span",null,{"className":"flex items-center gap-1","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-clock w-3 h-3","aria-hidden":"true","children":[["$","circle","1mglay",{"cx":"12","cy":"12","r":"10"}],["$","path","mmk7yg",{"d":"M12 6v6l4 2"}],"$undefined"]}],"TBD"]}],["$","span",null,{"className":"flex items-center gap-1","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-calendar w-3 h-3","aria-hidden":"true","children":[["$","path","1cmpym",{"d":"M8 2v4"}],["$","path","4m81vk",{"d":"M16 2v4"}],["$","rect","1hopcy",{"width":"18","height":"18","x":"3","y":"4","rx":"2"}],["$","path","8toen8",{"d":"M3 10h18"}],"$undefined"]}],"2026"]}]]}]]}]]}]}]}]
|
||||||
|
d:["$","div","8",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":["$","div",null,{"data-slot":"card-content","className":"p-4","children":["$","div",null,{"className":"flex items-start gap-4","children":[["$","div",null,{"className":"w-14 h-14 rounded-lg bg-secondary flex flex-col items-center justify-center shrink-0","children":[["$","span",null,{"className":"text-xs text-muted-foreground uppercase","children":"202"}],["$","span",null,{"className":"text-lg font-bold","children":"2026"}]]}],["$","div",null,{"className":"flex-1 min-w-0","children":[["$","div",null,{"className":"flex items-center gap-2 flex-wrap","children":[["$","h3",null,{"className":"font-semibold","children":"Bailey Turns 35"}],["$","span",null,{"data-slot":"badge","data-variant":"outline","className":"inline-flex items-center justify-center rounded-full border px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden [a&]:hover:bg-accent [a&]:hover:text-accent-foreground bg-yellow-500/10 text-yellow-500 border-yellow-500/20","children":"family"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground mt-1","children":"Family milestone birthday"}],["$","div",null,{"className":"flex items-center gap-4 mt-2 text-xs text-muted-foreground","children":[["$","span",null,{"className":"flex items-center gap-1","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-clock w-3 h-3","aria-hidden":"true","children":[["$","circle","1mglay",{"cx":"12","cy":"12","r":"10"}],["$","path","mmk7yg",{"d":"M12 6v6l4 2"}],"$undefined"]}],"TBD"]}],["$","span",null,{"className":"flex items-center gap-1","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-calendar w-3 h-3","aria-hidden":"true","children":[["$","path","1cmpym",{"d":"M8 2v4"}],["$","path","4m81vk",{"d":"M16 2v4"}],["$","rect","1hopcy",{"width":"18","height":"18","x":"3","y":"4","rx":"2"}],["$","path","8toen8",{"d":"M3 10h18"}],"$undefined"]}],"2026"]}]]}]]}]]}]}]}]
|
||||||
|
e:["$","div","9",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":["$","div",null,{"data-slot":"card-content","className":"p-4","children":["$","div",null,{"className":"flex items-start gap-4","children":[["$","div",null,{"className":"w-14 h-14 rounded-lg bg-secondary flex flex-col items-center justify-center shrink-0","children":[["$","span",null,{"className":"text-xs text-muted-foreground uppercase","children":"202"}],["$","span",null,{"className":"text-lg font-bold","children":"2026"}]]}],["$","div",null,{"className":"flex-1 min-w-0","children":[["$","div",null,{"className":"flex items-center gap-2 flex-wrap","children":[["$","h3",null,{"className":"font-semibold","children":"Taylor Turns 30"}],["$","span",null,{"data-slot":"badge","data-variant":"outline","className":"inline-flex items-center justify-center rounded-full border px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden [a&]:hover:bg-accent [a&]:hover:text-accent-foreground bg-yellow-500/10 text-yellow-500 border-yellow-500/20","children":"family"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground mt-1","children":"Family milestone birthday"}],["$","div",null,{"className":"flex items-center gap-4 mt-2 text-xs text-muted-foreground","children":[["$","span",null,{"className":"flex items-center gap-1","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-clock w-3 h-3","aria-hidden":"true","children":[["$","circle","1mglay",{"cx":"12","cy":"12","r":"10"}],["$","path","mmk7yg",{"d":"M12 6v6l4 2"}],"$undefined"]}],"TBD"]}],["$","span",null,{"className":"flex items-center gap-1","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-calendar w-3 h-3","aria-hidden":"true","children":[["$","path","1cmpym",{"d":"M8 2v4"}],["$","path","4m81vk",{"d":"M16 2v4"}],["$","rect","1hopcy",{"width":"18","height":"18","x":"3","y":"4","rx":"2"}],["$","path","8toen8",{"d":"M3 10h18"}],"$undefined"]}],"2026"]}]]}]]}]]}]}]}]
|
||||||
|
f:["$","div",null,{"className":"space-y-6","children":[["$","div",null,{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":[["$","div",null,{"data-slot":"card-header","className":"@container/card-header grid auto-rows-min grid-rows-[auto_auto] items-start gap-2 px-6 has-data-[slot=card-action]:grid-cols-[1fr_auto] [.border-b]:pb-6","children":["$","div",null,{"data-slot":"card-title","className":"font-semibold text-base","children":"Today's Summary"}]}],["$","div",null,{"data-slot":"card-content","className":"px-6 space-y-4","children":[["$","div",null,{"className":"flex justify-between text-sm","children":[["$","span",null,{"className":"text-muted-foreground","children":"Events"}],["$","span",null,{"className":"font-medium","children":"3"}]]}],["$","div",null,{"className":"flex justify-between text-sm","children":[["$","span",null,{"className":"text-muted-foreground","children":"Tasks"}],["$","span",null,{"className":"font-medium","children":"4"}]]}],["$","div",null,{"className":"flex justify-between text-sm","children":[["$","span",null,{"className":"text-muted-foreground","children":"Reminders"}],["$","span",null,{"className":"font-medium","children":"2"}]]}]]}]]}],["$","div",null,{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":[["$","div",null,{"data-slot":"card-header","className":"@container/card-header grid auto-rows-min grid-rows-[auto_auto] items-start gap-2 px-6 has-data-[slot=card-action]:grid-cols-[1fr_auto] [.border-b]:pb-6","children":["$","div",null,{"data-slot":"card-title","className":"font-semibold text-base","children":"Quick Actions"}]}],["$","div",null,{"data-slot":"card-content","className":"px-6 space-y-2","children":[["$","button",null,{"className":"w-full text-left px-3 py-2 rounded-lg text-sm hover:bg-accent transition-colors","children":"+ Add Event"}],["$","button",null,{"className":"w-full text-left px-3 py-2 rounded-lg text-sm hover:bg-accent transition-colors","children":"+ Add Reminder"}],["$","button",null,{"className":"w-full text-left px-3 py-2 rounded-lg text-sm hover:bg-accent transition-colors","children":"View Full Calendar"}]]}]]}]]}]
|
||||||
|
10:["$","script","script-0",{"src":"/_next/static/chunks/05acb8b0bd6792f1.js","async":true,"nonce":"$undefined"}]
|
||||||
|
11:["$","script","script-1",{"src":"/_next/static/chunks/91b41192b4a98cf1.js","async":true,"nonce":"$undefined"}]
|
||||||
|
12:["$","$L15",null,{"children":["$","$16",null,{"name":"Next.MetadataOutlet","children":"$@17"}]}]
|
||||||
|
13:["$","$1","h",{"children":[null,["$","$L18",null,{"children":"$L19"}],["$","div",null,{"hidden":true,"children":["$","$L1a",null,{"children":["$","$16",null,{"name":"Next.Metadata","children":"$L1b"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}]
|
||||||
|
19:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||||
|
1c:I[92064,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"IconMark"]
|
||||||
|
17:null
|
||||||
|
1b:[["$","title","0",{"children":"Mission Control | TopDogLabs"}],["$","meta","1",{"name":"description","content":"Central hub for activity, tasks, goals, and tools"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.0b3bf435.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L1c","3",{}]]
|
||||||
6
dist/calendar/__next._head.txt
vendored
Normal file
6
dist/calendar/__next._head.txt
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
1:"$Sreact.fragment"
|
||||||
|
2:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"ViewportBoundary"]
|
||||||
|
3:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"MetadataBoundary"]
|
||||||
|
4:"$Sreact.suspense"
|
||||||
|
5:I[92064,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"IconMark"]
|
||||||
|
0:{"buildId":"BaNBduHEWTzurUV8mpacN","rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Mission Control | TopDogLabs"}],["$","meta","1",{"name":"description","content":"Central hub for activity, tasks, goals, and tools"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.0b3bf435.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L5","3",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false}
|
||||||
5
dist/calendar/__next._index.txt
vendored
Normal file
5
dist/calendar/__next._index.txt
vendored
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
1:"$Sreact.fragment"
|
||||||
|
2:I[96757,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"default"]
|
||||||
|
3:I[7805,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"default"]
|
||||||
|
:HL["/_next/static/chunks/fa936e037dd092b4.css","style"]
|
||||||
|
0:{"buildId":"BaNBduHEWTzurUV8mpacN","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/fa936e037dd092b4.css","precedence":"next"}]],["$","html",null,{"lang":"en","className":"dark","children":["$","body",null,{"className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable antialiased bg-background","children":["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}]}]}]]}],"loading":null,"isPartial":false}
|
||||||
4
dist/calendar/__next._tree.txt
vendored
Normal file
4
dist/calendar/__next._tree.txt
vendored
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
:HL["/_next/static/chunks/fa936e037dd092b4.css","style"]
|
||||||
|
:HL["/_next/static/media/797e433ab948586e-s.p.dbea232f.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||||
|
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||||
|
0:{"buildId":"BaNBduHEWTzurUV8mpacN","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"calendar","paramType":null,"paramKey":"calendar","hasRuntimePrefetch":false,"slots":{"children":{"name":"__PAGE__","paramType":null,"paramKey":"__PAGE__","hasRuntimePrefetch":false,"slots":null,"isRootLayout":false}},"isRootLayout":false}},"isRootLayout":true},"staleTime":300}
|
||||||
19
dist/calendar/__next.calendar.__PAGE__.txt
vendored
Normal file
19
dist/calendar/__next.calendar.__PAGE__.txt
vendored
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
1:"$Sreact.fragment"
|
||||||
|
2:I[89567,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/91b41192b4a98cf1.js"],"DashboardLayout"]
|
||||||
|
10:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"OutletBoundary"]
|
||||||
|
11:"$Sreact.suspense"
|
||||||
|
0:{"buildId":"BaNBduHEWTzurUV8mpacN","rsc":["$","$1","c",{"children":[["$","$L2",null,{"children":["$","div",null,{"className":"space-y-6","children":[["$","div",null,{"className":"flex flex-col sm:flex-row sm:items-center sm:justify-between gap-4","children":["$","div",null,{"children":[["$","h1",null,{"className":"text-3xl font-bold tracking-tight","children":"Calendar"}],["$","p",null,{"className":"text-muted-foreground mt-1","children":"Friday, February 20, 2026"}]]}]}],["$","div",null,{"className":"grid grid-cols-1 lg:grid-cols-3 gap-6","children":[["$","div",null,{"className":"lg:col-span-2 space-y-4","children":[["$","h2",null,{"className":"text-lg font-semibold","children":"Upcoming Events"}],[["$","div","1",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":["$","div",null,{"data-slot":"card-content","className":"p-4","children":["$","div",null,{"className":"flex items-start gap-4","children":[["$","div",null,{"className":"w-14 h-14 rounded-lg bg-secondary flex flex-col items-center justify-center shrink-0","children":[["$","span",null,{"className":"text-xs text-muted-foreground uppercase","children":"Feb"}],["$","span",null,{"className":"text-lg font-bold","children":"23"}]]}],["$","div",null,{"className":"flex-1 min-w-0","children":[["$","div",null,{"className":"flex items-center gap-2 flex-wrap","children":[["$","h3",null,{"className":"font-semibold","children":"Yearly Anniversary"}],["$","span",null,{"data-slot":"badge","data-variant":"outline","className":"inline-flex items-center justify-center rounded-full border px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden [a&]:hover:bg-accent [a&]:hover:text-accent-foreground bg-pink-500/10 text-pink-500 border-pink-500/20","children":"personal"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground mt-1","children":"Anniversary celebration"}],["$","div",null,{"className":"flex items-center gap-4 mt-2 text-xs text-muted-foreground","children":[["$","span",null,{"className":"flex items-center gap-1","children":[["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-clock w-3 h-3","aria-hidden":"true","children":[["$","circle","1mglay",{"cx":"12","cy":"12","r":"10"}],["$","path","mmk7yg",{"d":"M12 6v6l4 2"}],"$undefined"]}],"All day"]}],["$","span",null,{"className":"flex items-center gap-1","children":[["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-calendar w-3 h-3","aria-hidden":"true","children":[["$","path","1cmpym",{"d":"M8 2v4"}],["$","path","4m81vk",{"d":"M16 2v4"}],["$","rect","1hopcy",{"width":"18","height":"18","x":"3","y":"4","rx":"2"}],["$","path","8toen8",{"d":"M3 10h18"}],"$undefined"]}],"February 23, 2026"]}]]}]]}]]}]}]}],["$","div","2",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":["$","div",null,{"data-slot":"card-content","className":"p-4","children":["$","div",null,{"className":"flex items-start gap-4","children":[["$","div",null,{"className":"w-14 h-14 rounded-lg bg-secondary flex flex-col items-center justify-center shrink-0","children":[["$","span",null,{"className":"text-xs text-muted-foreground uppercase","children":"Feb"}],["$","span",null,{"className":"text-lg font-bold","children":"26"}]]}],["$","div",null,{"className":"flex-1 min-w-0","children":[["$","div",null,{"className":"flex items-center gap-2 flex-wrap","children":[["$","h3",null,{"className":"font-semibold","children":"Grabbing Anderson's dogs"}],["$","span",null,{"data-slot":"badge","data-variant":"outline","className":"inline-flex items-center justify-center rounded-full border px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden [a&]:hover:bg-accent [a&]:hover:text-accent-foreground bg-orange-500/10 text-orange-500 border-orange-500/20","children":"task"}]]}],"$L3","$L4"]}]]}]}]}],"$L5","$L6","$L7","$L8","$L9","$La","$Lb"]]}],"$Lc"]}]]}]}],["$Ld","$Le"],"$Lf"]}],"loading":null,"isPartial":false}
|
||||||
|
3:["$","p",null,{"className":"text-sm text-muted-foreground mt-1","children":"Pet sitting duties"}]
|
||||||
|
4:["$","div",null,{"className":"flex items-center gap-4 mt-2 text-xs text-muted-foreground","children":[["$","span",null,{"className":"flex items-center gap-1","children":[["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-clock w-3 h-3","aria-hidden":"true","children":[["$","circle","1mglay",{"cx":"12","cy":"12","r":"10"}],["$","path","mmk7yg",{"d":"M12 6v6l4 2"}],"$undefined"]}],"5:30 PM - 6:30 PM"]}],["$","span",null,{"className":"flex items-center gap-1","children":[["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-calendar w-3 h-3","aria-hidden":"true","children":[["$","path","1cmpym",{"d":"M8 2v4"}],["$","path","4m81vk",{"d":"M16 2v4"}],["$","rect","1hopcy",{"width":"18","height":"18","x":"3","y":"4","rx":"2"}],["$","path","8toen8",{"d":"M3 10h18"}],"$undefined"]}],"February 26, 2026"]}]]}]
|
||||||
|
5:["$","div","3",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":["$","div",null,{"data-slot":"card-content","className":"p-4","children":["$","div",null,{"className":"flex items-start gap-4","children":[["$","div",null,{"className":"w-14 h-14 rounded-lg bg-secondary flex flex-col items-center justify-center shrink-0","children":[["$","span",null,{"className":"text-xs text-muted-foreground uppercase","children":"Eve"}],["$","span",null,{"className":"text-lg font-bold","children":"--"}]]}],["$","div",null,{"className":"flex-1 min-w-0","children":[["$","div",null,{"className":"flex items-center gap-2 flex-wrap","children":[["$","h3",null,{"className":"font-semibold","children":"Daily Standup"}],["$","span",null,{"data-slot":"badge","data-variant":"outline","className":"inline-flex items-center justify-center rounded-full border px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden [a&]:hover:bg-accent [a&]:hover:text-accent-foreground bg-blue-500/10 text-blue-500 border-blue-500/20","children":"work"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground mt-1","children":"Toyota iOS team standup"}],["$","div",null,{"className":"flex items-center gap-4 mt-2 text-xs text-muted-foreground","children":[["$","span",null,{"className":"flex items-center gap-1","children":[["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-clock w-3 h-3","aria-hidden":"true","children":[["$","circle","1mglay",{"cx":"12","cy":"12","r":"10"}],["$","path","mmk7yg",{"d":"M12 6v6l4 2"}],"$undefined"]}],"8:30 AM"]}],["$","span",null,{"className":"flex items-center gap-1","children":[["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-calendar w-3 h-3","aria-hidden":"true","children":[["$","path","1cmpym",{"d":"M8 2v4"}],["$","path","4m81vk",{"d":"M16 2v4"}],["$","rect","1hopcy",{"width":"18","height":"18","x":"3","y":"4","rx":"2"}],["$","path","8toen8",{"d":"M3 10h18"}],"$undefined"]}],"Every weekday"]}]]}]]}]]}]}]}]
|
||||||
|
6:["$","div","4",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":["$","div",null,{"data-slot":"card-content","className":"p-4","children":["$","div",null,{"className":"flex items-start gap-4","children":[["$","div",null,{"className":"w-14 h-14 rounded-lg bg-secondary flex flex-col items-center justify-center shrink-0","children":[["$","span",null,{"className":"text-xs text-muted-foreground uppercase","children":"Eve"}],["$","span",null,{"className":"text-lg font-bold","children":"--"}]]}],["$","div",null,{"className":"flex-1 min-w-0","children":[["$","div",null,{"className":"flex items-center gap-2 flex-wrap","children":[["$","h3",null,{"className":"font-semibold","children":"Group Workout"}],["$","span",null,{"data-slot":"badge","data-variant":"outline","className":"inline-flex items-center justify-center rounded-full border px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden [a&]:hover:bg-accent [a&]:hover:text-accent-foreground bg-green-500/10 text-green-500 border-green-500/20","children":"health"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground mt-1","children":"Gym session"}],["$","div",null,{"className":"flex items-center gap-4 mt-2 text-xs text-muted-foreground","children":[["$","span",null,{"className":"flex items-center gap-1","children":[["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-clock w-3 h-3","aria-hidden":"true","children":[["$","circle","1mglay",{"cx":"12","cy":"12","r":"10"}],["$","path","mmk7yg",{"d":"M12 6v6l4 2"}],"$undefined"]}],"10:00 AM - 11:00 AM"]}],["$","span",null,{"className":"flex items-center gap-1","children":[["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-calendar w-3 h-3","aria-hidden":"true","children":[["$","path","1cmpym",{"d":"M8 2v4"}],["$","path","4m81vk",{"d":"M16 2v4"}],["$","rect","1hopcy",{"width":"18","height":"18","x":"3","y":"4","rx":"2"}],["$","path","8toen8",{"d":"M3 10h18"}],"$undefined"]}],"Every weekday"]}]]}]]}]]}]}]}]
|
||||||
|
7:["$","div","5",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":["$","div",null,{"data-slot":"card-content","className":"p-4","children":["$","div",null,{"className":"flex items-start gap-4","children":[["$","div",null,{"className":"w-14 h-14 rounded-lg bg-secondary flex flex-col items-center justify-center shrink-0","children":[["$","span",null,{"className":"text-xs text-muted-foreground uppercase","children":"Eve"}],["$","span",null,{"className":"text-lg font-bold","children":"--"}]]}],["$","div",null,{"className":"flex-1 min-w-0","children":[["$","div",null,{"className":"flex items-center gap-2 flex-wrap","children":[["$","h3",null,{"className":"font-semibold","children":"NWW - Cowboy Club"}],["$","span",null,{"data-slot":"badge","data-variant":"outline","className":"inline-flex items-center justify-center rounded-full border px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden [a&]:hover:bg-accent [a&]:hover:text-accent-foreground bg-purple-500/10 text-purple-500 border-purple-500/20","children":"social"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground mt-1","children":"No Wives Wednesday with cigars"}],["$","div",null,{"className":"flex items-center gap-4 mt-2 text-xs text-muted-foreground","children":[["$","span",null,{"className":"flex items-center gap-1","children":[["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-clock w-3 h-3","aria-hidden":"true","children":[["$","circle","1mglay",{"cx":"12","cy":"12","r":"10"}],["$","path","mmk7yg",{"d":"M12 6v6l4 2"}],"$undefined"]}],"Evening"]}],["$","span",null,{"className":"flex items-center gap-1","children":[["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-calendar w-3 h-3","aria-hidden":"true","children":[["$","path","1cmpym",{"d":"M8 2v4"}],["$","path","4m81vk",{"d":"M16 2v4"}],["$","rect","1hopcy",{"width":"18","height":"18","x":"3","y":"4","rx":"2"}],["$","path","8toen8",{"d":"M3 10h18"}],"$undefined"]}],"Every Wednesday"]}]]}]]}]]}]}]}]
|
||||||
|
8:["$","div","6",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":["$","div",null,{"data-slot":"card-content","className":"p-4","children":["$","div",null,{"className":"flex items-start gap-4","children":[["$","div",null,{"className":"w-14 h-14 rounded-lg bg-secondary flex flex-col items-center justify-center shrink-0","children":[["$","span",null,{"className":"text-xs text-muted-foreground uppercase","children":"Mar"}],["$","span",null,{"className":"text-lg font-bold","children":"2026"}]]}],["$","div",null,{"className":"flex-1 min-w-0","children":[["$","div",null,{"className":"flex items-center gap-2 flex-wrap","children":[["$","h3",null,{"className":"font-semibold","children":"Contract Renewal"}],["$","span",null,{"data-slot":"badge","data-variant":"outline","className":"inline-flex items-center justify-center rounded-full border px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden [a&]:hover:bg-accent [a&]:hover:text-accent-foreground bg-blue-500/10 text-blue-500 border-blue-500/20","children":"work"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground mt-1","children":"Toyota contract up for renewal"}],["$","div",null,{"className":"flex items-center gap-4 mt-2 text-xs text-muted-foreground","children":[["$","span",null,{"className":"flex items-center gap-1","children":[["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-clock w-3 h-3","aria-hidden":"true","children":[["$","circle","1mglay",{"cx":"12","cy":"12","r":"10"}],["$","path","mmk7yg",{"d":"M12 6v6l4 2"}],"$undefined"]}],"TBD"]}],["$","span",null,{"className":"flex items-center gap-1","children":[["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-calendar w-3 h-3","aria-hidden":"true","children":[["$","path","1cmpym",{"d":"M8 2v4"}],["$","path","4m81vk",{"d":"M16 2v4"}],["$","rect","1hopcy",{"width":"18","height":"18","x":"3","y":"4","rx":"2"}],["$","path","8toen8",{"d":"M3 10h18"}],"$undefined"]}],"March 2026"]}]]}]]}]]}]}]}]
|
||||||
|
9:["$","div","7",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":["$","div",null,{"data-slot":"card-content","className":"p-4","children":["$","div",null,{"className":"flex items-start gap-4","children":[["$","div",null,{"className":"w-14 h-14 rounded-lg bg-secondary flex flex-col items-center justify-center shrink-0","children":[["$","span",null,{"className":"text-xs text-muted-foreground uppercase","children":"202"}],["$","span",null,{"className":"text-lg font-bold","children":"2026"}]]}],["$","div",null,{"className":"flex-1 min-w-0","children":[["$","div",null,{"className":"flex items-center gap-2 flex-wrap","children":[["$","h3",null,{"className":"font-semibold","children":"Mindy Turns 60"}],["$","span",null,{"data-slot":"badge","data-variant":"outline","className":"inline-flex items-center justify-center rounded-full border px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden [a&]:hover:bg-accent [a&]:hover:text-accent-foreground bg-yellow-500/10 text-yellow-500 border-yellow-500/20","children":"family"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground mt-1","children":"Family milestone birthday"}],["$","div",null,{"className":"flex items-center gap-4 mt-2 text-xs text-muted-foreground","children":[["$","span",null,{"className":"flex items-center gap-1","children":[["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-clock w-3 h-3","aria-hidden":"true","children":[["$","circle","1mglay",{"cx":"12","cy":"12","r":"10"}],["$","path","mmk7yg",{"d":"M12 6v6l4 2"}],"$undefined"]}],"TBD"]}],["$","span",null,{"className":"flex items-center gap-1","children":[["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-calendar w-3 h-3","aria-hidden":"true","children":[["$","path","1cmpym",{"d":"M8 2v4"}],["$","path","4m81vk",{"d":"M16 2v4"}],["$","rect","1hopcy",{"width":"18","height":"18","x":"3","y":"4","rx":"2"}],["$","path","8toen8",{"d":"M3 10h18"}],"$undefined"]}],"2026"]}]]}]]}]]}]}]}]
|
||||||
|
a:["$","div","8",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":["$","div",null,{"data-slot":"card-content","className":"p-4","children":["$","div",null,{"className":"flex items-start gap-4","children":[["$","div",null,{"className":"w-14 h-14 rounded-lg bg-secondary flex flex-col items-center justify-center shrink-0","children":[["$","span",null,{"className":"text-xs text-muted-foreground uppercase","children":"202"}],["$","span",null,{"className":"text-lg font-bold","children":"2026"}]]}],["$","div",null,{"className":"flex-1 min-w-0","children":[["$","div",null,{"className":"flex items-center gap-2 flex-wrap","children":[["$","h3",null,{"className":"font-semibold","children":"Bailey Turns 35"}],["$","span",null,{"data-slot":"badge","data-variant":"outline","className":"inline-flex items-center justify-center rounded-full border px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden [a&]:hover:bg-accent [a&]:hover:text-accent-foreground bg-yellow-500/10 text-yellow-500 border-yellow-500/20","children":"family"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground mt-1","children":"Family milestone birthday"}],["$","div",null,{"className":"flex items-center gap-4 mt-2 text-xs text-muted-foreground","children":[["$","span",null,{"className":"flex items-center gap-1","children":[["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-clock w-3 h-3","aria-hidden":"true","children":[["$","circle","1mglay",{"cx":"12","cy":"12","r":"10"}],["$","path","mmk7yg",{"d":"M12 6v6l4 2"}],"$undefined"]}],"TBD"]}],["$","span",null,{"className":"flex items-center gap-1","children":[["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-calendar w-3 h-3","aria-hidden":"true","children":[["$","path","1cmpym",{"d":"M8 2v4"}],["$","path","4m81vk",{"d":"M16 2v4"}],["$","rect","1hopcy",{"width":"18","height":"18","x":"3","y":"4","rx":"2"}],["$","path","8toen8",{"d":"M3 10h18"}],"$undefined"]}],"2026"]}]]}]]}]]}]}]}]
|
||||||
|
b:["$","div","9",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":["$","div",null,{"data-slot":"card-content","className":"p-4","children":["$","div",null,{"className":"flex items-start gap-4","children":[["$","div",null,{"className":"w-14 h-14 rounded-lg bg-secondary flex flex-col items-center justify-center shrink-0","children":[["$","span",null,{"className":"text-xs text-muted-foreground uppercase","children":"202"}],["$","span",null,{"className":"text-lg font-bold","children":"2026"}]]}],["$","div",null,{"className":"flex-1 min-w-0","children":[["$","div",null,{"className":"flex items-center gap-2 flex-wrap","children":[["$","h3",null,{"className":"font-semibold","children":"Taylor Turns 30"}],["$","span",null,{"data-slot":"badge","data-variant":"outline","className":"inline-flex items-center justify-center rounded-full border px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden [a&]:hover:bg-accent [a&]:hover:text-accent-foreground bg-yellow-500/10 text-yellow-500 border-yellow-500/20","children":"family"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground mt-1","children":"Family milestone birthday"}],["$","div",null,{"className":"flex items-center gap-4 mt-2 text-xs text-muted-foreground","children":[["$","span",null,{"className":"flex items-center gap-1","children":[["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-clock w-3 h-3","aria-hidden":"true","children":[["$","circle","1mglay",{"cx":"12","cy":"12","r":"10"}],["$","path","mmk7yg",{"d":"M12 6v6l4 2"}],"$undefined"]}],"TBD"]}],["$","span",null,{"className":"flex items-center gap-1","children":[["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-calendar w-3 h-3","aria-hidden":"true","children":[["$","path","1cmpym",{"d":"M8 2v4"}],["$","path","4m81vk",{"d":"M16 2v4"}],["$","rect","1hopcy",{"width":"18","height":"18","x":"3","y":"4","rx":"2"}],["$","path","8toen8",{"d":"M3 10h18"}],"$undefined"]}],"2026"]}]]}]]}]]}]}]}]
|
||||||
|
c:["$","div",null,{"className":"space-y-6","children":[["$","div",null,{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":[["$","div",null,{"data-slot":"card-header","className":"@container/card-header grid auto-rows-min grid-rows-[auto_auto] items-start gap-2 px-6 has-data-[slot=card-action]:grid-cols-[1fr_auto] [.border-b]:pb-6","children":["$","div",null,{"data-slot":"card-title","className":"font-semibold text-base","children":"Today's Summary"}]}],["$","div",null,{"data-slot":"card-content","className":"px-6 space-y-4","children":[["$","div",null,{"className":"flex justify-between text-sm","children":[["$","span",null,{"className":"text-muted-foreground","children":"Events"}],["$","span",null,{"className":"font-medium","children":"3"}]]}],["$","div",null,{"className":"flex justify-between text-sm","children":[["$","span",null,{"className":"text-muted-foreground","children":"Tasks"}],["$","span",null,{"className":"font-medium","children":"4"}]]}],["$","div",null,{"className":"flex justify-between text-sm","children":[["$","span",null,{"className":"text-muted-foreground","children":"Reminders"}],["$","span",null,{"className":"font-medium","children":"2"}]]}]]}]]}],["$","div",null,{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":[["$","div",null,{"data-slot":"card-header","className":"@container/card-header grid auto-rows-min grid-rows-[auto_auto] items-start gap-2 px-6 has-data-[slot=card-action]:grid-cols-[1fr_auto] [.border-b]:pb-6","children":["$","div",null,{"data-slot":"card-title","className":"font-semibold text-base","children":"Quick Actions"}]}],["$","div",null,{"data-slot":"card-content","className":"px-6 space-y-2","children":[["$","button",null,{"className":"w-full text-left px-3 py-2 rounded-lg text-sm hover:bg-accent transition-colors","children":"+ Add Event"}],["$","button",null,{"className":"w-full text-left px-3 py-2 rounded-lg text-sm hover:bg-accent transition-colors","children":"+ Add Reminder"}],["$","button",null,{"className":"w-full text-left px-3 py-2 rounded-lg text-sm hover:bg-accent transition-colors","children":"View Full Calendar"}]]}]]}]]}]
|
||||||
|
d:["$","script","script-0",{"src":"/_next/static/chunks/05acb8b0bd6792f1.js","async":true}]
|
||||||
|
e:["$","script","script-1",{"src":"/_next/static/chunks/91b41192b4a98cf1.js","async":true}]
|
||||||
|
f:["$","$L10",null,{"children":["$","$11",null,{"name":"Next.MetadataOutlet","children":"$@12"}]}]
|
||||||
|
12:null
|
||||||
4
dist/calendar/__next.calendar.txt
vendored
Normal file
4
dist/calendar/__next.calendar.txt
vendored
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
1:"$Sreact.fragment"
|
||||||
|
2:I[96757,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"default"]
|
||||||
|
3:I[7805,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"default"]
|
||||||
|
0:{"buildId":"BaNBduHEWTzurUV8mpacN","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
|
||||||
1
dist/documents.html
vendored
Normal file
1
dist/documents.html
vendored
Normal file
File diff suppressed because one or more lines are too long
35
dist/documents.txt
vendored
Normal file
35
dist/documents.txt
vendored
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
1:"$Sreact.fragment"
|
||||||
|
2:I[96757,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"default"]
|
||||||
|
3:I[7805,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"default"]
|
||||||
|
4:I[89567,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/91b41192b4a98cf1.js"],"DashboardLayout"]
|
||||||
|
f:I[95111,[],"default"]
|
||||||
|
:HL["/_next/static/chunks/fa936e037dd092b4.css","style"]
|
||||||
|
:HL["/_next/static/media/797e433ab948586e-s.p.dbea232f.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||||
|
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||||
|
0:{"P":null,"b":"BaNBduHEWTzurUV8mpacN","c":["","documents"],"q":"","i":false,"f":[[["",{"children":["documents",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/fa936e037dd092b4.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]],["$","html",null,{"lang":"en","className":"dark","children":["$","body",null,{"className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable antialiased bg-background","children":["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L4",null,{"children":["$","div",null,{"className":"space-y-6","children":[["$","div",null,{"className":"flex flex-col sm:flex-row sm:items-center sm:justify-between gap-4","children":[["$","div",null,{"children":[["$","h1",null,{"className":"text-3xl font-bold tracking-tight","children":"Documents"}],["$","p",null,{"className":"text-muted-foreground mt-1","children":"All the files and docs created for your mission."}]]}],["$","button",null,{"data-slot":"button","data-variant":"default","data-size":"default","className":"inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive bg-primary text-primary-foreground hover:bg-primary/90 h-9 px-4 py-2 has-[>svg]:px-3","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-plus w-4 h-4 mr-2","aria-hidden":"true","children":[["$","path","1ays0h",{"d":"M5 12h14"}],["$","path","s699le",{"d":"M12 5v14"}],"$undefined"]}],"New Document"]}]]}],["$","div",null,{"className":"grid grid-cols-1 lg:grid-cols-4 gap-6","children":[["$","div",null,{"className":"lg:col-span-1 space-y-4","children":[["$","div",null,{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":[["$","div",null,{"data-slot":"card-header","className":"@container/card-header grid auto-rows-min grid-rows-[auto_auto] items-start gap-2 px-6 has-data-[slot=card-action]:grid-cols-[1fr_auto] [.border-b]:pb-6","children":["$","div",null,{"data-slot":"card-title","className":"font-semibold text-base","children":"Folders"}]}],["$","div",null,{"data-slot":"card-content","className":"px-6 space-y-1","children":["$L5","$L6","$L7","$L8"]}]]}],"$L9"]}],"$La"]}]]}]}],["$Lb","$Lc"],"$Ld"]}],{},null,false,false]},null,false,false]},null,false,false],"$Le",false]],"m":"$undefined","G":["$f",[]],"S":true}
|
||||||
|
18:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"OutletBoundary"]
|
||||||
|
19:"$Sreact.suspense"
|
||||||
|
1b:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"ViewportBoundary"]
|
||||||
|
1d:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"MetadataBoundary"]
|
||||||
|
5:["$","button","root",{"className":"w-full flex items-center justify-between px-3 py-2 rounded-lg text-sm hover:bg-accent transition-colors","children":[["$","span",null,{"className":"flex items-center gap-2","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-folder w-4 h-4 text-muted-foreground","aria-hidden":"true","children":[["$","path","1kt360",{"d":"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z"}],"$undefined"]}],"root"]}],["$","span",null,{"className":"text-xs text-muted-foreground","children":4}]]}]
|
||||||
|
6:["$","button","docs",{"className":"w-full flex items-center justify-between px-3 py-2 rounded-lg text-sm hover:bg-accent transition-colors","children":[["$","span",null,{"className":"flex items-center gap-2","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-folder w-4 h-4 text-muted-foreground","aria-hidden":"true","children":[["$","path","1kt360",{"d":"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z"}],"$undefined"]}],"docs"]}],["$","span",null,{"className":"text-xs text-muted-foreground","children":1}]]}]
|
||||||
|
7:["$","button","scripts",{"className":"w-full flex items-center justify-between px-3 py-2 rounded-lg text-sm hover:bg-accent transition-colors","children":[["$","span",null,{"className":"flex items-center gap-2","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-folder w-4 h-4 text-muted-foreground","aria-hidden":"true","children":[["$","path","1kt360",{"d":"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z"}],"$undefined"]}],"scripts"]}],["$","span",null,{"className":"text-xs text-muted-foreground","children":2}]]}]
|
||||||
|
8:["$","button","skills",{"className":"w-full flex items-center justify-between px-3 py-2 rounded-lg text-sm hover:bg-accent transition-colors","children":[["$","span",null,{"className":"flex items-center gap-2","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-folder w-4 h-4 text-muted-foreground","aria-hidden":"true","children":[["$","path","1kt360",{"d":"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z"}],"$undefined"]}],"skills"]}],["$","span",null,{"className":"text-xs text-muted-foreground","children":6}]]}]
|
||||||
|
9:["$","div",null,{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":[["$","div",null,{"data-slot":"card-header","className":"@container/card-header grid auto-rows-min grid-rows-[auto_auto] items-start gap-2 px-6 has-data-[slot=card-action]:grid-cols-[1fr_auto] [.border-b]:pb-6","children":["$","div",null,{"data-slot":"card-title","className":"font-semibold text-base","children":"Storage"}]}],["$","div",null,{"data-slot":"card-content","className":"px-6 space-y-4","children":["$","div",null,{"className":"space-y-2","children":[["$","div",null,{"className":"flex justify-between text-sm","children":[["$","span",null,{"className":"text-muted-foreground","children":"Used"}],["$","span",null,{"children":"45.2 GB"}]]}],["$","div",null,{"className":"h-2 bg-secondary rounded-full overflow-hidden","children":["$","div",null,{"className":"h-full w-[45%] bg-gradient-to-r from-blue-500 to-purple-500 rounded-full"}]}],["$","p",null,{"className":"text-xs text-muted-foreground","children":"54.8 GB free of 100 GB"}]]}]}]]}]
|
||||||
|
a:["$","div",null,{"className":"lg:col-span-3 space-y-4","children":[["$","div",null,{"className":"flex gap-2","children":["$","div",null,{"className":"relative flex-1","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-search absolute left-3 top-1/2 -translate-y-1/2 w-4 h-4 text-muted-foreground","aria-hidden":"true","children":[["$","path","14j7rj",{"d":"m21 21-4.34-4.34"}],["$","circle","4ej97u",{"cx":"11","cy":"11","r":"8"}],"$undefined"]}],["$","input",null,{"type":"$undefined","data-slot":"input","className":"file:text-foreground placeholder:text-muted-foreground selection:bg-primary selection:text-primary-foreground dark:bg-input/30 border-input h-9 w-full min-w-0 rounded-md border bg-transparent px-3 py-1 text-base shadow-xs transition-[color,box-shadow] outline-none file:inline-flex file:h-7 file:border-0 file:bg-transparent file:text-sm file:font-medium disabled:pointer-events-none disabled:cursor-not-allowed disabled:opacity-50 md:text-sm focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive pl-9","placeholder":"Search documents..."}]]}]}],["$","div",null,{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":["$","div",null,{"data-slot":"card-content","className":"p-0","children":["$","div",null,{"className":"divide-y divide-border","children":[["$","div","1",{"className":"flex items-center gap-4 p-4 hover:bg-accent/50 transition-colors cursor-pointer","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-file-type w-8 h-8 text-blue-500","aria-hidden":"true","children":[["$","path","1oefj6",{"d":"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"}],["$","path","wfsgrz",{"d":"M14 2v5a1 1 0 0 0 1 1h5"}],["$","path","12mj7e",{"d":"M11 18h2"}],["$","path","3ahymv",{"d":"M12 12v6"}],["$","path","qbrxap",{"d":"M9 13v-.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 .5.5v.5"}],"$undefined"]}],["$","div",null,{"className":"flex-1 min-w-0","children":[["$","div",null,{"className":"flex items-center gap-2","children":[["$","h4",null,{"className":"font-medium truncate","children":"USER.md"}],["$","span",null,{"data-slot":"badge","data-variant":"secondary","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 font-medium w-fit whitespace-nowrap [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden bg-secondary text-secondary-foreground [a&]:hover:bg-secondary/90 text-xs shrink-0","children":"root"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground truncate","children":"User profile and preferences"}]]}],["$","div",null,{"className":"hidden sm:block text-right text-sm text-muted-foreground","children":[["$","p",null,{"children":"4.2 KB"}],["$","p",null,{"className":"text-xs","children":"Today"}]]}],["$","button",null,{"data-slot":"button","data-variant":"ghost","data-size":"icon","className":"inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50 size-9","children":"$L10"}]]}],"$L11","$L12","$L13","$L14","$L15","$L16","$L17"]}]}]}]]}]
|
||||||
|
b:["$","script","script-0",{"src":"/_next/static/chunks/05acb8b0bd6792f1.js","async":true,"nonce":"$undefined"}]
|
||||||
|
c:["$","script","script-1",{"src":"/_next/static/chunks/91b41192b4a98cf1.js","async":true,"nonce":"$undefined"}]
|
||||||
|
d:["$","$L18",null,{"children":["$","$19",null,{"name":"Next.MetadataOutlet","children":"$@1a"}]}]
|
||||||
|
e:["$","$1","h",{"children":[null,["$","$L1b",null,{"children":"$L1c"}],["$","div",null,{"hidden":true,"children":["$","$L1d",null,{"children":["$","$19",null,{"name":"Next.Metadata","children":"$L1e"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}]
|
||||||
|
10:["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-ellipsis-vertical w-4 h-4","aria-hidden":"true","children":[["$","circle","41hilf",{"cx":"12","cy":"12","r":"1"}],["$","circle","gxeob9",{"cx":"12","cy":"5","r":"1"}],["$","circle","lyex9k",{"cx":"12","cy":"19","r":"1"}],"$undefined"]}]
|
||||||
|
11:["$","div","2",{"className":"flex items-center gap-4 p-4 hover:bg-accent/50 transition-colors cursor-pointer","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-file-type w-8 h-8 text-blue-500","aria-hidden":"true","children":[["$","path","1oefj6",{"d":"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"}],["$","path","wfsgrz",{"d":"M14 2v5a1 1 0 0 0 1 1h5"}],["$","path","12mj7e",{"d":"M11 18h2"}],["$","path","3ahymv",{"d":"M12 12v6"}],["$","path","qbrxap",{"d":"M9 13v-.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 .5.5v.5"}],"$undefined"]}],["$","div",null,{"className":"flex-1 min-w-0","children":[["$","div",null,{"className":"flex items-center gap-2","children":[["$","h4",null,{"className":"font-medium truncate","children":"SOUL.md"}],["$","span",null,{"data-slot":"badge","data-variant":"secondary","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 font-medium w-fit whitespace-nowrap [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden bg-secondary text-secondary-foreground [a&]:hover:bg-secondary/90 text-xs shrink-0","children":"root"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground truncate","children":"Assistant personality configuration"}]]}],["$","div",null,{"className":"hidden sm:block text-right text-sm text-muted-foreground","children":[["$","p",null,{"children":"2.1 KB"}],["$","p",null,{"className":"text-xs","children":"Today"}]]}],["$","button",null,{"data-slot":"button","data-variant":"ghost","data-size":"icon","className":"inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50 size-9","children":["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-ellipsis-vertical w-4 h-4","aria-hidden":"true","children":[["$","circle","41hilf",{"cx":"12","cy":"12","r":"1"}],["$","circle","gxeob9",{"cx":"12","cy":"5","r":"1"}],["$","circle","lyex9k",{"cx":"12","cy":"19","r":"1"}],"$undefined"]}]}]]}]
|
||||||
|
12:["$","div","3",{"className":"flex items-center gap-4 p-4 hover:bg-accent/50 transition-colors cursor-pointer","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-file-type w-8 h-8 text-blue-500","aria-hidden":"true","children":[["$","path","1oefj6",{"d":"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"}],["$","path","wfsgrz",{"d":"M14 2v5a1 1 0 0 0 1 1h5"}],["$","path","12mj7e",{"d":"M11 18h2"}],["$","path","3ahymv",{"d":"M12 12v6"}],["$","path","qbrxap",{"d":"M9 13v-.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 .5.5v.5"}],"$undefined"]}],["$","div",null,{"className":"flex-1 min-w-0","children":[["$","div",null,{"className":"flex items-center gap-2","children":[["$","h4",null,{"className":"font-medium truncate","children":"DAILY_TOOLS_SETUP.md"}],["$","span",null,{"data-slot":"badge","data-variant":"secondary","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 font-medium w-fit whitespace-nowrap [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden bg-secondary text-secondary-foreground [a&]:hover:bg-secondary/90 text-xs shrink-0","children":"docs"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground truncate","children":"Tool integration documentation"}]]}],["$","div",null,{"className":"hidden sm:block text-right text-sm text-muted-foreground","children":[["$","p",null,{"children":"6.8 KB"}],["$","p",null,{"className":"text-xs","children":"Yesterday"}]]}],["$","button",null,{"data-slot":"button","data-variant":"ghost","data-size":"icon","className":"inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50 size-9","children":["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-ellipsis-vertical w-4 h-4","aria-hidden":"true","children":[["$","circle","41hilf",{"cx":"12","cy":"12","r":"1"}],["$","circle","gxeob9",{"cx":"12","cy":"5","r":"1"}],["$","circle","lyex9k",{"cx":"12","cy":"19","r":"1"}],"$undefined"]}]}]]}]
|
||||||
|
13:["$","div","4",{"className":"flex items-center gap-4 p-4 hover:bg-accent/50 transition-colors cursor-pointer","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-file-type w-8 h-8 text-blue-500","aria-hidden":"true","children":[["$","path","1oefj6",{"d":"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"}],["$","path","wfsgrz",{"d":"M14 2v5a1 1 0 0 0 1 1h5"}],["$","path","12mj7e",{"d":"M11 18h2"}],["$","path","3ahymv",{"d":"M12 12v6"}],["$","path","qbrxap",{"d":"M9 13v-.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 .5.5v.5"}],"$undefined"]}],["$","div",null,{"className":"flex-1 min-w-0","children":[["$","div",null,{"className":"flex items-center gap-2","children":[["$","h4",null,{"className":"font-medium truncate","children":"AGENTS.md"}],["$","span",null,{"data-slot":"badge","data-variant":"secondary","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 font-medium w-fit whitespace-nowrap [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden bg-secondary text-secondary-foreground [a&]:hover:bg-secondary/90 text-xs shrink-0","children":"root"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground truncate","children":"Workspace guidelines"}]]}],["$","div",null,{"className":"hidden sm:block text-right text-sm text-muted-foreground","children":[["$","p",null,{"children":"3.5 KB"}],["$","p",null,{"className":"text-xs","children":"2 days ago"}]]}],["$","button",null,{"data-slot":"button","data-variant":"ghost","data-size":"icon","className":"inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50 size-9","children":["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-ellipsis-vertical w-4 h-4","aria-hidden":"true","children":[["$","circle","41hilf",{"cx":"12","cy":"12","r":"1"}],["$","circle","gxeob9",{"cx":"12","cy":"5","r":"1"}],["$","circle","lyex9k",{"cx":"12","cy":"19","r":"1"}],"$undefined"]}]}]]}]
|
||||||
|
14:["$","div","5",{"className":"flex items-center gap-4 p-4 hover:bg-accent/50 transition-colors cursor-pointer","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-file-code w-8 h-8 text-green-500","aria-hidden":"true","children":[["$","path","1oefj6",{"d":"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"}],["$","path","wfsgrz",{"d":"M14 2v5a1 1 0 0 0 1 1h5"}],["$","path","1tg20x",{"d":"M10 12.5 8 15l2 2.5"}],["$","path","yinavb",{"d":"m14 12.5 2 2.5-2 2.5"}],"$undefined"]}],["$","div",null,{"className":"flex-1 min-w-0","children":[["$","div",null,{"className":"flex items-center gap-2","children":[["$","h4",null,{"className":"font-medium truncate","children":"organize_downloads.sh"}],["$","span",null,{"data-slot":"badge","data-variant":"secondary","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 font-medium w-fit whitespace-nowrap [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden bg-secondary text-secondary-foreground [a&]:hover:bg-secondary/90 text-xs shrink-0","children":"scripts"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground truncate","children":"File organization script"}]]}],["$","div",null,{"className":"hidden sm:block text-right text-sm text-muted-foreground","children":[["$","p",null,{"children":"2.2 KB"}],["$","p",null,{"className":"text-xs","children":"Yesterday"}]]}],["$","button",null,{"data-slot":"button","data-variant":"ghost","data-size":"icon","className":"inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50 size-9","children":["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-ellipsis-vertical w-4 h-4","aria-hidden":"true","children":[["$","circle","41hilf",{"cx":"12","cy":"12","r":"1"}],["$","circle","gxeob9",{"cx":"12","cy":"5","r":"1"}],["$","circle","lyex9k",{"cx":"12","cy":"19","r":"1"}],"$undefined"]}]}]]}]
|
||||||
|
15:["$","div","6",{"className":"flex items-center gap-4 p-4 hover:bg-accent/50 transition-colors cursor-pointer","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-file-code w-8 h-8 text-green-500","aria-hidden":"true","children":[["$","path","1oefj6",{"d":"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"}],["$","path","wfsgrz",{"d":"M14 2v5a1 1 0 0 0 1 1h5"}],["$","path","1tg20x",{"d":"M10 12.5 8 15l2 2.5"}],["$","path","yinavb",{"d":"m14 12.5 2 2.5-2 2.5"}],"$undefined"]}],["$","div",null,{"className":"flex-1 min-w-0","children":[["$","div",null,{"className":"flex items-center gap-2","children":[["$","h4",null,{"className":"font-medium truncate","children":"morning_brief.sh"}],["$","span",null,{"data-slot":"badge","data-variant":"secondary","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 font-medium w-fit whitespace-nowrap [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden bg-secondary text-secondary-foreground [a&]:hover:bg-secondary/90 text-xs shrink-0","children":"scripts"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground truncate","children":"Daily automation script"}]]}],["$","div",null,{"className":"hidden sm:block text-right text-sm text-muted-foreground","children":[["$","p",null,{"children":"3.1 KB"}],["$","p",null,{"className":"text-xs","children":"Yesterday"}]]}],["$","button",null,{"data-slot":"button","data-variant":"ghost","data-size":"icon","className":"inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50 size-9","children":["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-ellipsis-vertical w-4 h-4","aria-hidden":"true","children":[["$","circle","41hilf",{"cx":"12","cy":"12","r":"1"}],["$","circle","gxeob9",{"cx":"12","cy":"5","r":"1"}],["$","circle","lyex9k",{"cx":"12","cy":"19","r":"1"}],"$undefined"]}]}]]}]
|
||||||
|
16:["$","div","7",{"className":"flex items-center gap-4 p-4 hover:bg-accent/50 transition-colors cursor-pointer","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-file-text w-8 h-8 text-yellow-500","aria-hidden":"true","children":[["$","path","1oefj6",{"d":"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"}],["$","path","wfsgrz",{"d":"M14 2v5a1 1 0 0 0 1 1h5"}],["$","path","b1mrlr",{"d":"M10 9H8"}],["$","path","t4e002",{"d":"M16 13H8"}],["$","path","z1uh3a",{"d":"M16 17H8"}],"$undefined"]}],["$","div",null,{"className":"flex-1 min-w-0","children":[["$","div",null,{"className":"flex items-center gap-2","children":[["$","h4",null,{"className":"font-medium truncate","children":"file-system-assistant.skill"}],["$","span",null,{"data-slot":"badge","data-variant":"secondary","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 font-medium w-fit whitespace-nowrap [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden bg-secondary text-secondary-foreground [a&]:hover:bg-secondary/90 text-xs shrink-0","children":"skills"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground truncate","children":"Packaged skill file"}]]}],["$","div",null,{"className":"hidden sm:block text-right text-sm text-muted-foreground","children":[["$","p",null,{"children":"12 KB"}],["$","p",null,{"className":"text-xs","children":"Yesterday"}]]}],["$","button",null,{"data-slot":"button","data-variant":"ghost","data-size":"icon","className":"inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50 size-9","children":["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-ellipsis-vertical w-4 h-4","aria-hidden":"true","children":[["$","circle","41hilf",{"cx":"12","cy":"12","r":"1"}],["$","circle","gxeob9",{"cx":"12","cy":"5","r":"1"}],["$","circle","lyex9k",{"cx":"12","cy":"19","r":"1"}],"$undefined"]}]}]]}]
|
||||||
|
17:["$","div","8",{"className":"flex items-center gap-4 p-4 hover:bg-accent/50 transition-colors cursor-pointer","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-file-text w-8 h-8 text-yellow-500","aria-hidden":"true","children":[["$","path","1oefj6",{"d":"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"}],["$","path","wfsgrz",{"d":"M14 2v5a1 1 0 0 0 1 1h5"}],["$","path","b1mrlr",{"d":"M10 9H8"}],["$","path","t4e002",{"d":"M16 13H8"}],["$","path","z1uh3a",{"d":"M16 17H8"}],"$undefined"]}],["$","div",null,{"className":"flex-1 min-w-0","children":[["$","div",null,{"className":"flex items-center gap-2","children":[["$","h4",null,{"className":"font-medium truncate","children":"email-assistant.skill"}],["$","span",null,{"data-slot":"badge","data-variant":"secondary","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 font-medium w-fit whitespace-nowrap [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden bg-secondary text-secondary-foreground [a&]:hover:bg-secondary/90 text-xs shrink-0","children":"skills"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground truncate","children":"Packaged skill file"}]]}],["$","div",null,{"className":"hidden sm:block text-right text-sm text-muted-foreground","children":[["$","p",null,{"children":"15 KB"}],["$","p",null,{"className":"text-xs","children":"Yesterday"}]]}],["$","button",null,{"data-slot":"button","data-variant":"ghost","data-size":"icon","className":"inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50 size-9","children":["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-ellipsis-vertical w-4 h-4","aria-hidden":"true","children":[["$","circle","41hilf",{"cx":"12","cy":"12","r":"1"}],["$","circle","gxeob9",{"cx":"12","cy":"5","r":"1"}],["$","circle","lyex9k",{"cx":"12","cy":"19","r":"1"}],"$undefined"]}]}]]}]
|
||||||
|
1c:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||||
|
1f:I[92064,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"IconMark"]
|
||||||
|
1a:null
|
||||||
|
1e:[["$","title","0",{"children":"Mission Control | TopDogLabs"}],["$","meta","1",{"name":"description","content":"Central hub for activity, tasks, goals, and tools"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.0b3bf435.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L1f","3",{}]]
|
||||||
35
dist/documents/__next._full.txt
vendored
Normal file
35
dist/documents/__next._full.txt
vendored
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
1:"$Sreact.fragment"
|
||||||
|
2:I[96757,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"default"]
|
||||||
|
3:I[7805,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"default"]
|
||||||
|
4:I[89567,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/91b41192b4a98cf1.js"],"DashboardLayout"]
|
||||||
|
f:I[95111,[],"default"]
|
||||||
|
:HL["/_next/static/chunks/fa936e037dd092b4.css","style"]
|
||||||
|
:HL["/_next/static/media/797e433ab948586e-s.p.dbea232f.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||||
|
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||||
|
0:{"P":null,"b":"BaNBduHEWTzurUV8mpacN","c":["","documents"],"q":"","i":false,"f":[[["",{"children":["documents",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/fa936e037dd092b4.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]],["$","html",null,{"lang":"en","className":"dark","children":["$","body",null,{"className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable antialiased bg-background","children":["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L4",null,{"children":["$","div",null,{"className":"space-y-6","children":[["$","div",null,{"className":"flex flex-col sm:flex-row sm:items-center sm:justify-between gap-4","children":[["$","div",null,{"children":[["$","h1",null,{"className":"text-3xl font-bold tracking-tight","children":"Documents"}],["$","p",null,{"className":"text-muted-foreground mt-1","children":"All the files and docs created for your mission."}]]}],["$","button",null,{"data-slot":"button","data-variant":"default","data-size":"default","className":"inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive bg-primary text-primary-foreground hover:bg-primary/90 h-9 px-4 py-2 has-[>svg]:px-3","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-plus w-4 h-4 mr-2","aria-hidden":"true","children":[["$","path","1ays0h",{"d":"M5 12h14"}],["$","path","s699le",{"d":"M12 5v14"}],"$undefined"]}],"New Document"]}]]}],["$","div",null,{"className":"grid grid-cols-1 lg:grid-cols-4 gap-6","children":[["$","div",null,{"className":"lg:col-span-1 space-y-4","children":[["$","div",null,{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":[["$","div",null,{"data-slot":"card-header","className":"@container/card-header grid auto-rows-min grid-rows-[auto_auto] items-start gap-2 px-6 has-data-[slot=card-action]:grid-cols-[1fr_auto] [.border-b]:pb-6","children":["$","div",null,{"data-slot":"card-title","className":"font-semibold text-base","children":"Folders"}]}],["$","div",null,{"data-slot":"card-content","className":"px-6 space-y-1","children":["$L5","$L6","$L7","$L8"]}]]}],"$L9"]}],"$La"]}]]}]}],["$Lb","$Lc"],"$Ld"]}],{},null,false,false]},null,false,false]},null,false,false],"$Le",false]],"m":"$undefined","G":["$f",[]],"S":true}
|
||||||
|
18:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"OutletBoundary"]
|
||||||
|
19:"$Sreact.suspense"
|
||||||
|
1b:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"ViewportBoundary"]
|
||||||
|
1d:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"MetadataBoundary"]
|
||||||
|
5:["$","button","root",{"className":"w-full flex items-center justify-between px-3 py-2 rounded-lg text-sm hover:bg-accent transition-colors","children":[["$","span",null,{"className":"flex items-center gap-2","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-folder w-4 h-4 text-muted-foreground","aria-hidden":"true","children":[["$","path","1kt360",{"d":"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z"}],"$undefined"]}],"root"]}],["$","span",null,{"className":"text-xs text-muted-foreground","children":4}]]}]
|
||||||
|
6:["$","button","docs",{"className":"w-full flex items-center justify-between px-3 py-2 rounded-lg text-sm hover:bg-accent transition-colors","children":[["$","span",null,{"className":"flex items-center gap-2","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-folder w-4 h-4 text-muted-foreground","aria-hidden":"true","children":[["$","path","1kt360",{"d":"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z"}],"$undefined"]}],"docs"]}],["$","span",null,{"className":"text-xs text-muted-foreground","children":1}]]}]
|
||||||
|
7:["$","button","scripts",{"className":"w-full flex items-center justify-between px-3 py-2 rounded-lg text-sm hover:bg-accent transition-colors","children":[["$","span",null,{"className":"flex items-center gap-2","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-folder w-4 h-4 text-muted-foreground","aria-hidden":"true","children":[["$","path","1kt360",{"d":"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z"}],"$undefined"]}],"scripts"]}],["$","span",null,{"className":"text-xs text-muted-foreground","children":2}]]}]
|
||||||
|
8:["$","button","skills",{"className":"w-full flex items-center justify-between px-3 py-2 rounded-lg text-sm hover:bg-accent transition-colors","children":[["$","span",null,{"className":"flex items-center gap-2","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-folder w-4 h-4 text-muted-foreground","aria-hidden":"true","children":[["$","path","1kt360",{"d":"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z"}],"$undefined"]}],"skills"]}],["$","span",null,{"className":"text-xs text-muted-foreground","children":6}]]}]
|
||||||
|
9:["$","div",null,{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":[["$","div",null,{"data-slot":"card-header","className":"@container/card-header grid auto-rows-min grid-rows-[auto_auto] items-start gap-2 px-6 has-data-[slot=card-action]:grid-cols-[1fr_auto] [.border-b]:pb-6","children":["$","div",null,{"data-slot":"card-title","className":"font-semibold text-base","children":"Storage"}]}],["$","div",null,{"data-slot":"card-content","className":"px-6 space-y-4","children":["$","div",null,{"className":"space-y-2","children":[["$","div",null,{"className":"flex justify-between text-sm","children":[["$","span",null,{"className":"text-muted-foreground","children":"Used"}],["$","span",null,{"children":"45.2 GB"}]]}],["$","div",null,{"className":"h-2 bg-secondary rounded-full overflow-hidden","children":["$","div",null,{"className":"h-full w-[45%] bg-gradient-to-r from-blue-500 to-purple-500 rounded-full"}]}],["$","p",null,{"className":"text-xs text-muted-foreground","children":"54.8 GB free of 100 GB"}]]}]}]]}]
|
||||||
|
a:["$","div",null,{"className":"lg:col-span-3 space-y-4","children":[["$","div",null,{"className":"flex gap-2","children":["$","div",null,{"className":"relative flex-1","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-search absolute left-3 top-1/2 -translate-y-1/2 w-4 h-4 text-muted-foreground","aria-hidden":"true","children":[["$","path","14j7rj",{"d":"m21 21-4.34-4.34"}],["$","circle","4ej97u",{"cx":"11","cy":"11","r":"8"}],"$undefined"]}],["$","input",null,{"type":"$undefined","data-slot":"input","className":"file:text-foreground placeholder:text-muted-foreground selection:bg-primary selection:text-primary-foreground dark:bg-input/30 border-input h-9 w-full min-w-0 rounded-md border bg-transparent px-3 py-1 text-base shadow-xs transition-[color,box-shadow] outline-none file:inline-flex file:h-7 file:border-0 file:bg-transparent file:text-sm file:font-medium disabled:pointer-events-none disabled:cursor-not-allowed disabled:opacity-50 md:text-sm focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive pl-9","placeholder":"Search documents..."}]]}]}],["$","div",null,{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":["$","div",null,{"data-slot":"card-content","className":"p-0","children":["$","div",null,{"className":"divide-y divide-border","children":[["$","div","1",{"className":"flex items-center gap-4 p-4 hover:bg-accent/50 transition-colors cursor-pointer","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-file-type w-8 h-8 text-blue-500","aria-hidden":"true","children":[["$","path","1oefj6",{"d":"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"}],["$","path","wfsgrz",{"d":"M14 2v5a1 1 0 0 0 1 1h5"}],["$","path","12mj7e",{"d":"M11 18h2"}],["$","path","3ahymv",{"d":"M12 12v6"}],["$","path","qbrxap",{"d":"M9 13v-.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 .5.5v.5"}],"$undefined"]}],["$","div",null,{"className":"flex-1 min-w-0","children":[["$","div",null,{"className":"flex items-center gap-2","children":[["$","h4",null,{"className":"font-medium truncate","children":"USER.md"}],["$","span",null,{"data-slot":"badge","data-variant":"secondary","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 font-medium w-fit whitespace-nowrap [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden bg-secondary text-secondary-foreground [a&]:hover:bg-secondary/90 text-xs shrink-0","children":"root"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground truncate","children":"User profile and preferences"}]]}],["$","div",null,{"className":"hidden sm:block text-right text-sm text-muted-foreground","children":[["$","p",null,{"children":"4.2 KB"}],["$","p",null,{"className":"text-xs","children":"Today"}]]}],["$","button",null,{"data-slot":"button","data-variant":"ghost","data-size":"icon","className":"inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50 size-9","children":"$L10"}]]}],"$L11","$L12","$L13","$L14","$L15","$L16","$L17"]}]}]}]]}]
|
||||||
|
b:["$","script","script-0",{"src":"/_next/static/chunks/05acb8b0bd6792f1.js","async":true,"nonce":"$undefined"}]
|
||||||
|
c:["$","script","script-1",{"src":"/_next/static/chunks/91b41192b4a98cf1.js","async":true,"nonce":"$undefined"}]
|
||||||
|
d:["$","$L18",null,{"children":["$","$19",null,{"name":"Next.MetadataOutlet","children":"$@1a"}]}]
|
||||||
|
e:["$","$1","h",{"children":[null,["$","$L1b",null,{"children":"$L1c"}],["$","div",null,{"hidden":true,"children":["$","$L1d",null,{"children":["$","$19",null,{"name":"Next.Metadata","children":"$L1e"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}]
|
||||||
|
10:["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-ellipsis-vertical w-4 h-4","aria-hidden":"true","children":[["$","circle","41hilf",{"cx":"12","cy":"12","r":"1"}],["$","circle","gxeob9",{"cx":"12","cy":"5","r":"1"}],["$","circle","lyex9k",{"cx":"12","cy":"19","r":"1"}],"$undefined"]}]
|
||||||
|
11:["$","div","2",{"className":"flex items-center gap-4 p-4 hover:bg-accent/50 transition-colors cursor-pointer","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-file-type w-8 h-8 text-blue-500","aria-hidden":"true","children":[["$","path","1oefj6",{"d":"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"}],["$","path","wfsgrz",{"d":"M14 2v5a1 1 0 0 0 1 1h5"}],["$","path","12mj7e",{"d":"M11 18h2"}],["$","path","3ahymv",{"d":"M12 12v6"}],["$","path","qbrxap",{"d":"M9 13v-.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 .5.5v.5"}],"$undefined"]}],["$","div",null,{"className":"flex-1 min-w-0","children":[["$","div",null,{"className":"flex items-center gap-2","children":[["$","h4",null,{"className":"font-medium truncate","children":"SOUL.md"}],["$","span",null,{"data-slot":"badge","data-variant":"secondary","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 font-medium w-fit whitespace-nowrap [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden bg-secondary text-secondary-foreground [a&]:hover:bg-secondary/90 text-xs shrink-0","children":"root"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground truncate","children":"Assistant personality configuration"}]]}],["$","div",null,{"className":"hidden sm:block text-right text-sm text-muted-foreground","children":[["$","p",null,{"children":"2.1 KB"}],["$","p",null,{"className":"text-xs","children":"Today"}]]}],["$","button",null,{"data-slot":"button","data-variant":"ghost","data-size":"icon","className":"inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50 size-9","children":["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-ellipsis-vertical w-4 h-4","aria-hidden":"true","children":[["$","circle","41hilf",{"cx":"12","cy":"12","r":"1"}],["$","circle","gxeob9",{"cx":"12","cy":"5","r":"1"}],["$","circle","lyex9k",{"cx":"12","cy":"19","r":"1"}],"$undefined"]}]}]]}]
|
||||||
|
12:["$","div","3",{"className":"flex items-center gap-4 p-4 hover:bg-accent/50 transition-colors cursor-pointer","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-file-type w-8 h-8 text-blue-500","aria-hidden":"true","children":[["$","path","1oefj6",{"d":"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"}],["$","path","wfsgrz",{"d":"M14 2v5a1 1 0 0 0 1 1h5"}],["$","path","12mj7e",{"d":"M11 18h2"}],["$","path","3ahymv",{"d":"M12 12v6"}],["$","path","qbrxap",{"d":"M9 13v-.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 .5.5v.5"}],"$undefined"]}],["$","div",null,{"className":"flex-1 min-w-0","children":[["$","div",null,{"className":"flex items-center gap-2","children":[["$","h4",null,{"className":"font-medium truncate","children":"DAILY_TOOLS_SETUP.md"}],["$","span",null,{"data-slot":"badge","data-variant":"secondary","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 font-medium w-fit whitespace-nowrap [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden bg-secondary text-secondary-foreground [a&]:hover:bg-secondary/90 text-xs shrink-0","children":"docs"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground truncate","children":"Tool integration documentation"}]]}],["$","div",null,{"className":"hidden sm:block text-right text-sm text-muted-foreground","children":[["$","p",null,{"children":"6.8 KB"}],["$","p",null,{"className":"text-xs","children":"Yesterday"}]]}],["$","button",null,{"data-slot":"button","data-variant":"ghost","data-size":"icon","className":"inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50 size-9","children":["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-ellipsis-vertical w-4 h-4","aria-hidden":"true","children":[["$","circle","41hilf",{"cx":"12","cy":"12","r":"1"}],["$","circle","gxeob9",{"cx":"12","cy":"5","r":"1"}],["$","circle","lyex9k",{"cx":"12","cy":"19","r":"1"}],"$undefined"]}]}]]}]
|
||||||
|
13:["$","div","4",{"className":"flex items-center gap-4 p-4 hover:bg-accent/50 transition-colors cursor-pointer","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-file-type w-8 h-8 text-blue-500","aria-hidden":"true","children":[["$","path","1oefj6",{"d":"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"}],["$","path","wfsgrz",{"d":"M14 2v5a1 1 0 0 0 1 1h5"}],["$","path","12mj7e",{"d":"M11 18h2"}],["$","path","3ahymv",{"d":"M12 12v6"}],["$","path","qbrxap",{"d":"M9 13v-.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 .5.5v.5"}],"$undefined"]}],["$","div",null,{"className":"flex-1 min-w-0","children":[["$","div",null,{"className":"flex items-center gap-2","children":[["$","h4",null,{"className":"font-medium truncate","children":"AGENTS.md"}],["$","span",null,{"data-slot":"badge","data-variant":"secondary","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 font-medium w-fit whitespace-nowrap [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden bg-secondary text-secondary-foreground [a&]:hover:bg-secondary/90 text-xs shrink-0","children":"root"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground truncate","children":"Workspace guidelines"}]]}],["$","div",null,{"className":"hidden sm:block text-right text-sm text-muted-foreground","children":[["$","p",null,{"children":"3.5 KB"}],["$","p",null,{"className":"text-xs","children":"2 days ago"}]]}],["$","button",null,{"data-slot":"button","data-variant":"ghost","data-size":"icon","className":"inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50 size-9","children":["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-ellipsis-vertical w-4 h-4","aria-hidden":"true","children":[["$","circle","41hilf",{"cx":"12","cy":"12","r":"1"}],["$","circle","gxeob9",{"cx":"12","cy":"5","r":"1"}],["$","circle","lyex9k",{"cx":"12","cy":"19","r":"1"}],"$undefined"]}]}]]}]
|
||||||
|
14:["$","div","5",{"className":"flex items-center gap-4 p-4 hover:bg-accent/50 transition-colors cursor-pointer","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-file-code w-8 h-8 text-green-500","aria-hidden":"true","children":[["$","path","1oefj6",{"d":"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"}],["$","path","wfsgrz",{"d":"M14 2v5a1 1 0 0 0 1 1h5"}],["$","path","1tg20x",{"d":"M10 12.5 8 15l2 2.5"}],["$","path","yinavb",{"d":"m14 12.5 2 2.5-2 2.5"}],"$undefined"]}],["$","div",null,{"className":"flex-1 min-w-0","children":[["$","div",null,{"className":"flex items-center gap-2","children":[["$","h4",null,{"className":"font-medium truncate","children":"organize_downloads.sh"}],["$","span",null,{"data-slot":"badge","data-variant":"secondary","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 font-medium w-fit whitespace-nowrap [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden bg-secondary text-secondary-foreground [a&]:hover:bg-secondary/90 text-xs shrink-0","children":"scripts"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground truncate","children":"File organization script"}]]}],["$","div",null,{"className":"hidden sm:block text-right text-sm text-muted-foreground","children":[["$","p",null,{"children":"2.2 KB"}],["$","p",null,{"className":"text-xs","children":"Yesterday"}]]}],["$","button",null,{"data-slot":"button","data-variant":"ghost","data-size":"icon","className":"inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50 size-9","children":["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-ellipsis-vertical w-4 h-4","aria-hidden":"true","children":[["$","circle","41hilf",{"cx":"12","cy":"12","r":"1"}],["$","circle","gxeob9",{"cx":"12","cy":"5","r":"1"}],["$","circle","lyex9k",{"cx":"12","cy":"19","r":"1"}],"$undefined"]}]}]]}]
|
||||||
|
15:["$","div","6",{"className":"flex items-center gap-4 p-4 hover:bg-accent/50 transition-colors cursor-pointer","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-file-code w-8 h-8 text-green-500","aria-hidden":"true","children":[["$","path","1oefj6",{"d":"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"}],["$","path","wfsgrz",{"d":"M14 2v5a1 1 0 0 0 1 1h5"}],["$","path","1tg20x",{"d":"M10 12.5 8 15l2 2.5"}],["$","path","yinavb",{"d":"m14 12.5 2 2.5-2 2.5"}],"$undefined"]}],["$","div",null,{"className":"flex-1 min-w-0","children":[["$","div",null,{"className":"flex items-center gap-2","children":[["$","h4",null,{"className":"font-medium truncate","children":"morning_brief.sh"}],["$","span",null,{"data-slot":"badge","data-variant":"secondary","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 font-medium w-fit whitespace-nowrap [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden bg-secondary text-secondary-foreground [a&]:hover:bg-secondary/90 text-xs shrink-0","children":"scripts"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground truncate","children":"Daily automation script"}]]}],["$","div",null,{"className":"hidden sm:block text-right text-sm text-muted-foreground","children":[["$","p",null,{"children":"3.1 KB"}],["$","p",null,{"className":"text-xs","children":"Yesterday"}]]}],["$","button",null,{"data-slot":"button","data-variant":"ghost","data-size":"icon","className":"inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50 size-9","children":["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-ellipsis-vertical w-4 h-4","aria-hidden":"true","children":[["$","circle","41hilf",{"cx":"12","cy":"12","r":"1"}],["$","circle","gxeob9",{"cx":"12","cy":"5","r":"1"}],["$","circle","lyex9k",{"cx":"12","cy":"19","r":"1"}],"$undefined"]}]}]]}]
|
||||||
|
16:["$","div","7",{"className":"flex items-center gap-4 p-4 hover:bg-accent/50 transition-colors cursor-pointer","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-file-text w-8 h-8 text-yellow-500","aria-hidden":"true","children":[["$","path","1oefj6",{"d":"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"}],["$","path","wfsgrz",{"d":"M14 2v5a1 1 0 0 0 1 1h5"}],["$","path","b1mrlr",{"d":"M10 9H8"}],["$","path","t4e002",{"d":"M16 13H8"}],["$","path","z1uh3a",{"d":"M16 17H8"}],"$undefined"]}],["$","div",null,{"className":"flex-1 min-w-0","children":[["$","div",null,{"className":"flex items-center gap-2","children":[["$","h4",null,{"className":"font-medium truncate","children":"file-system-assistant.skill"}],["$","span",null,{"data-slot":"badge","data-variant":"secondary","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 font-medium w-fit whitespace-nowrap [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden bg-secondary text-secondary-foreground [a&]:hover:bg-secondary/90 text-xs shrink-0","children":"skills"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground truncate","children":"Packaged skill file"}]]}],["$","div",null,{"className":"hidden sm:block text-right text-sm text-muted-foreground","children":[["$","p",null,{"children":"12 KB"}],["$","p",null,{"className":"text-xs","children":"Yesterday"}]]}],["$","button",null,{"data-slot":"button","data-variant":"ghost","data-size":"icon","className":"inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50 size-9","children":["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-ellipsis-vertical w-4 h-4","aria-hidden":"true","children":[["$","circle","41hilf",{"cx":"12","cy":"12","r":"1"}],["$","circle","gxeob9",{"cx":"12","cy":"5","r":"1"}],["$","circle","lyex9k",{"cx":"12","cy":"19","r":"1"}],"$undefined"]}]}]]}]
|
||||||
|
17:["$","div","8",{"className":"flex items-center gap-4 p-4 hover:bg-accent/50 transition-colors cursor-pointer","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-file-text w-8 h-8 text-yellow-500","aria-hidden":"true","children":[["$","path","1oefj6",{"d":"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"}],["$","path","wfsgrz",{"d":"M14 2v5a1 1 0 0 0 1 1h5"}],["$","path","b1mrlr",{"d":"M10 9H8"}],["$","path","t4e002",{"d":"M16 13H8"}],["$","path","z1uh3a",{"d":"M16 17H8"}],"$undefined"]}],["$","div",null,{"className":"flex-1 min-w-0","children":[["$","div",null,{"className":"flex items-center gap-2","children":[["$","h4",null,{"className":"font-medium truncate","children":"email-assistant.skill"}],["$","span",null,{"data-slot":"badge","data-variant":"secondary","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 font-medium w-fit whitespace-nowrap [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden bg-secondary text-secondary-foreground [a&]:hover:bg-secondary/90 text-xs shrink-0","children":"skills"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground truncate","children":"Packaged skill file"}]]}],["$","div",null,{"className":"hidden sm:block text-right text-sm text-muted-foreground","children":[["$","p",null,{"children":"15 KB"}],["$","p",null,{"className":"text-xs","children":"Yesterday"}]]}],["$","button",null,{"data-slot":"button","data-variant":"ghost","data-size":"icon","className":"inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50 size-9","children":["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-ellipsis-vertical w-4 h-4","aria-hidden":"true","children":[["$","circle","41hilf",{"cx":"12","cy":"12","r":"1"}],["$","circle","gxeob9",{"cx":"12","cy":"5","r":"1"}],["$","circle","lyex9k",{"cx":"12","cy":"19","r":"1"}],"$undefined"]}]}]]}]
|
||||||
|
1c:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||||
|
1f:I[92064,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"IconMark"]
|
||||||
|
1a:null
|
||||||
|
1e:[["$","title","0",{"children":"Mission Control | TopDogLabs"}],["$","meta","1",{"name":"description","content":"Central hub for activity, tasks, goals, and tools"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.0b3bf435.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L1f","3",{}]]
|
||||||
6
dist/documents/__next._head.txt
vendored
Normal file
6
dist/documents/__next._head.txt
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
1:"$Sreact.fragment"
|
||||||
|
2:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"ViewportBoundary"]
|
||||||
|
3:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"MetadataBoundary"]
|
||||||
|
4:"$Sreact.suspense"
|
||||||
|
5:I[92064,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"IconMark"]
|
||||||
|
0:{"buildId":"BaNBduHEWTzurUV8mpacN","rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Mission Control | TopDogLabs"}],["$","meta","1",{"name":"description","content":"Central hub for activity, tasks, goals, and tools"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.0b3bf435.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L5","3",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false}
|
||||||
5
dist/documents/__next._index.txt
vendored
Normal file
5
dist/documents/__next._index.txt
vendored
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
1:"$Sreact.fragment"
|
||||||
|
2:I[96757,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"default"]
|
||||||
|
3:I[7805,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"default"]
|
||||||
|
:HL["/_next/static/chunks/fa936e037dd092b4.css","style"]
|
||||||
|
0:{"buildId":"BaNBduHEWTzurUV8mpacN","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/fa936e037dd092b4.css","precedence":"next"}]],["$","html",null,{"lang":"en","className":"dark","children":["$","body",null,{"className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable antialiased bg-background","children":["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}]}]}]]}],"loading":null,"isPartial":false}
|
||||||
4
dist/documents/__next._tree.txt
vendored
Normal file
4
dist/documents/__next._tree.txt
vendored
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
:HL["/_next/static/chunks/fa936e037dd092b4.css","style"]
|
||||||
|
:HL["/_next/static/media/797e433ab948586e-s.p.dbea232f.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||||
|
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||||
|
0:{"buildId":"BaNBduHEWTzurUV8mpacN","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"documents","paramType":null,"paramKey":"documents","hasRuntimePrefetch":false,"slots":{"children":{"name":"__PAGE__","paramType":null,"paramKey":"__PAGE__","hasRuntimePrefetch":false,"slots":null,"isRootLayout":false}},"isRootLayout":false}},"isRootLayout":true},"staleTime":300}
|
||||||
22
dist/documents/__next.documents.__PAGE__.txt
vendored
Normal file
22
dist/documents/__next.documents.__PAGE__.txt
vendored
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
1:"$Sreact.fragment"
|
||||||
|
2:I[89567,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/91b41192b4a98cf1.js"],"DashboardLayout"]
|
||||||
|
13:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"OutletBoundary"]
|
||||||
|
14:"$Sreact.suspense"
|
||||||
|
0:{"buildId":"BaNBduHEWTzurUV8mpacN","rsc":["$","$1","c",{"children":[["$","$L2",null,{"children":["$","div",null,{"className":"space-y-6","children":[["$","div",null,{"className":"flex flex-col sm:flex-row sm:items-center sm:justify-between gap-4","children":[["$","div",null,{"children":[["$","h1",null,{"className":"text-3xl font-bold tracking-tight","children":"Documents"}],["$","p",null,{"className":"text-muted-foreground mt-1","children":"All the files and docs created for your mission."}]]}],["$","button",null,{"data-slot":"button","data-variant":"default","data-size":"default","className":"inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive bg-primary text-primary-foreground hover:bg-primary/90 h-9 px-4 py-2 has-[>svg]:px-3","children":[["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-plus w-4 h-4 mr-2","aria-hidden":"true","children":[["$","path","1ays0h",{"d":"M5 12h14"}],["$","path","s699le",{"d":"M12 5v14"}],"$undefined"]}],"New Document"]}]]}],["$","div",null,{"className":"grid grid-cols-1 lg:grid-cols-4 gap-6","children":[["$","div",null,{"className":"lg:col-span-1 space-y-4","children":[["$","div",null,{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":[["$","div",null,{"data-slot":"card-header","className":"@container/card-header grid auto-rows-min grid-rows-[auto_auto] items-start gap-2 px-6 has-data-[slot=card-action]:grid-cols-[1fr_auto] [.border-b]:pb-6","children":["$","div",null,{"data-slot":"card-title","className":"font-semibold text-base","children":"Folders"}]}],["$","div",null,{"data-slot":"card-content","className":"px-6 space-y-1","children":[["$","button","root",{"className":"w-full flex items-center justify-between px-3 py-2 rounded-lg text-sm hover:bg-accent transition-colors","children":[["$","span",null,{"className":"flex items-center gap-2","children":[["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-folder w-4 h-4 text-muted-foreground","aria-hidden":"true","children":[["$","path","1kt360",{"d":"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z"}],"$undefined"]}],"root"]}],["$","span",null,{"className":"text-xs text-muted-foreground","children":4}]]}],["$","button","docs",{"className":"w-full flex items-center justify-between px-3 py-2 rounded-lg text-sm hover:bg-accent transition-colors","children":[["$","span",null,{"className":"flex items-center gap-2","children":[["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-folder w-4 h-4 text-muted-foreground","aria-hidden":"true","children":[["$","path","1kt360",{"d":"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z"}],"$undefined"]}],"docs"]}],["$","span",null,{"className":"text-xs text-muted-foreground","children":1}]]}],["$","button","scripts",{"className":"w-full flex items-center justify-between px-3 py-2 rounded-lg text-sm hover:bg-accent transition-colors","children":[["$","span",null,{"className":"flex items-center gap-2","children":[["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-folder w-4 h-4 text-muted-foreground","aria-hidden":"true","children":["$L3","$undefined"]}],"scripts"]}],"$L4"]}],"$L5"]}]]}],"$L6"]}],"$L7"]}]]}]}],["$L8","$L9"],"$La"]}],"loading":null,"isPartial":false}
|
||||||
|
3:["$","path","1kt360",{"d":"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z"}]
|
||||||
|
4:["$","span",null,{"className":"text-xs text-muted-foreground","children":2}]
|
||||||
|
5:["$","button","skills",{"className":"w-full flex items-center justify-between px-3 py-2 rounded-lg text-sm hover:bg-accent transition-colors","children":[["$","span",null,{"className":"flex items-center gap-2","children":[["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-folder w-4 h-4 text-muted-foreground","aria-hidden":"true","children":[["$","path","1kt360",{"d":"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z"}],"$undefined"]}],"skills"]}],["$","span",null,{"className":"text-xs text-muted-foreground","children":6}]]}]
|
||||||
|
6:["$","div",null,{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":[["$","div",null,{"data-slot":"card-header","className":"@container/card-header grid auto-rows-min grid-rows-[auto_auto] items-start gap-2 px-6 has-data-[slot=card-action]:grid-cols-[1fr_auto] [.border-b]:pb-6","children":["$","div",null,{"data-slot":"card-title","className":"font-semibold text-base","children":"Storage"}]}],["$","div",null,{"data-slot":"card-content","className":"px-6 space-y-4","children":["$","div",null,{"className":"space-y-2","children":[["$","div",null,{"className":"flex justify-between text-sm","children":[["$","span",null,{"className":"text-muted-foreground","children":"Used"}],["$","span",null,{"children":"45.2 GB"}]]}],["$","div",null,{"className":"h-2 bg-secondary rounded-full overflow-hidden","children":["$","div",null,{"className":"h-full w-[45%] bg-gradient-to-r from-blue-500 to-purple-500 rounded-full"}]}],["$","p",null,{"className":"text-xs text-muted-foreground","children":"54.8 GB free of 100 GB"}]]}]}]]}]
|
||||||
|
7:["$","div",null,{"className":"lg:col-span-3 space-y-4","children":[["$","div",null,{"className":"flex gap-2","children":["$","div",null,{"className":"relative flex-1","children":[["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-search absolute left-3 top-1/2 -translate-y-1/2 w-4 h-4 text-muted-foreground","aria-hidden":"true","children":[["$","path","14j7rj",{"d":"m21 21-4.34-4.34"}],["$","circle","4ej97u",{"cx":"11","cy":"11","r":"8"}],"$undefined"]}],["$","input",null,{"data-slot":"input","className":"file:text-foreground placeholder:text-muted-foreground selection:bg-primary selection:text-primary-foreground dark:bg-input/30 border-input h-9 w-full min-w-0 rounded-md border bg-transparent px-3 py-1 text-base shadow-xs transition-[color,box-shadow] outline-none file:inline-flex file:h-7 file:border-0 file:bg-transparent file:text-sm file:font-medium disabled:pointer-events-none disabled:cursor-not-allowed disabled:opacity-50 md:text-sm focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive pl-9","placeholder":"Search documents..."}]]}]}],["$","div",null,{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":["$","div",null,{"data-slot":"card-content","className":"p-0","children":["$","div",null,{"className":"divide-y divide-border","children":[["$","div","1",{"className":"flex items-center gap-4 p-4 hover:bg-accent/50 transition-colors cursor-pointer","children":[["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-file-type w-8 h-8 text-blue-500","aria-hidden":"true","children":[["$","path","1oefj6",{"d":"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"}],["$","path","wfsgrz",{"d":"M14 2v5a1 1 0 0 0 1 1h5"}],["$","path","12mj7e",{"d":"M11 18h2"}],["$","path","3ahymv",{"d":"M12 12v6"}],["$","path","qbrxap",{"d":"M9 13v-.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 .5.5v.5"}],"$undefined"]}],["$","div",null,{"className":"flex-1 min-w-0","children":[["$","div",null,{"className":"flex items-center gap-2","children":[["$","h4",null,{"className":"font-medium truncate","children":"USER.md"}],["$","span",null,{"data-slot":"badge","data-variant":"secondary","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 font-medium w-fit whitespace-nowrap [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden bg-secondary text-secondary-foreground [a&]:hover:bg-secondary/90 text-xs shrink-0","children":"root"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground truncate","children":"User profile and preferences"}]]}],["$","div",null,{"className":"hidden sm:block text-right text-sm text-muted-foreground","children":[["$","p",null,{"children":"4.2 KB"}],["$","p",null,{"className":"text-xs","children":"Today"}]]}],["$","button",null,{"data-slot":"button","data-variant":"ghost","data-size":"icon","className":"inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50 size-9","children":"$Lb"}]]}],"$Lc","$Ld","$Le","$Lf","$L10","$L11","$L12"]}]}]}]]}]
|
||||||
|
8:["$","script","script-0",{"src":"/_next/static/chunks/05acb8b0bd6792f1.js","async":true}]
|
||||||
|
9:["$","script","script-1",{"src":"/_next/static/chunks/91b41192b4a98cf1.js","async":true}]
|
||||||
|
a:["$","$L13",null,{"children":["$","$14",null,{"name":"Next.MetadataOutlet","children":"$@15"}]}]
|
||||||
|
b:["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-ellipsis-vertical w-4 h-4","aria-hidden":"true","children":[["$","circle","41hilf",{"cx":"12","cy":"12","r":"1"}],["$","circle","gxeob9",{"cx":"12","cy":"5","r":"1"}],["$","circle","lyex9k",{"cx":"12","cy":"19","r":"1"}],"$undefined"]}]
|
||||||
|
c:["$","div","2",{"className":"flex items-center gap-4 p-4 hover:bg-accent/50 transition-colors cursor-pointer","children":[["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-file-type w-8 h-8 text-blue-500","aria-hidden":"true","children":[["$","path","1oefj6",{"d":"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"}],["$","path","wfsgrz",{"d":"M14 2v5a1 1 0 0 0 1 1h5"}],["$","path","12mj7e",{"d":"M11 18h2"}],["$","path","3ahymv",{"d":"M12 12v6"}],["$","path","qbrxap",{"d":"M9 13v-.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 .5.5v.5"}],"$undefined"]}],["$","div",null,{"className":"flex-1 min-w-0","children":[["$","div",null,{"className":"flex items-center gap-2","children":[["$","h4",null,{"className":"font-medium truncate","children":"SOUL.md"}],["$","span",null,{"data-slot":"badge","data-variant":"secondary","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 font-medium w-fit whitespace-nowrap [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden bg-secondary text-secondary-foreground [a&]:hover:bg-secondary/90 text-xs shrink-0","children":"root"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground truncate","children":"Assistant personality configuration"}]]}],["$","div",null,{"className":"hidden sm:block text-right text-sm text-muted-foreground","children":[["$","p",null,{"children":"2.1 KB"}],["$","p",null,{"className":"text-xs","children":"Today"}]]}],["$","button",null,{"data-slot":"button","data-variant":"ghost","data-size":"icon","className":"inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50 size-9","children":["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-ellipsis-vertical w-4 h-4","aria-hidden":"true","children":[["$","circle","41hilf",{"cx":"12","cy":"12","r":"1"}],["$","circle","gxeob9",{"cx":"12","cy":"5","r":"1"}],["$","circle","lyex9k",{"cx":"12","cy":"19","r":"1"}],"$undefined"]}]}]]}]
|
||||||
|
d:["$","div","3",{"className":"flex items-center gap-4 p-4 hover:bg-accent/50 transition-colors cursor-pointer","children":[["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-file-type w-8 h-8 text-blue-500","aria-hidden":"true","children":[["$","path","1oefj6",{"d":"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"}],["$","path","wfsgrz",{"d":"M14 2v5a1 1 0 0 0 1 1h5"}],["$","path","12mj7e",{"d":"M11 18h2"}],["$","path","3ahymv",{"d":"M12 12v6"}],["$","path","qbrxap",{"d":"M9 13v-.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 .5.5v.5"}],"$undefined"]}],["$","div",null,{"className":"flex-1 min-w-0","children":[["$","div",null,{"className":"flex items-center gap-2","children":[["$","h4",null,{"className":"font-medium truncate","children":"DAILY_TOOLS_SETUP.md"}],["$","span",null,{"data-slot":"badge","data-variant":"secondary","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 font-medium w-fit whitespace-nowrap [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden bg-secondary text-secondary-foreground [a&]:hover:bg-secondary/90 text-xs shrink-0","children":"docs"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground truncate","children":"Tool integration documentation"}]]}],["$","div",null,{"className":"hidden sm:block text-right text-sm text-muted-foreground","children":[["$","p",null,{"children":"6.8 KB"}],["$","p",null,{"className":"text-xs","children":"Yesterday"}]]}],["$","button",null,{"data-slot":"button","data-variant":"ghost","data-size":"icon","className":"inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50 size-9","children":["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-ellipsis-vertical w-4 h-4","aria-hidden":"true","children":[["$","circle","41hilf",{"cx":"12","cy":"12","r":"1"}],["$","circle","gxeob9",{"cx":"12","cy":"5","r":"1"}],["$","circle","lyex9k",{"cx":"12","cy":"19","r":"1"}],"$undefined"]}]}]]}]
|
||||||
|
e:["$","div","4",{"className":"flex items-center gap-4 p-4 hover:bg-accent/50 transition-colors cursor-pointer","children":[["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-file-type w-8 h-8 text-blue-500","aria-hidden":"true","children":[["$","path","1oefj6",{"d":"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"}],["$","path","wfsgrz",{"d":"M14 2v5a1 1 0 0 0 1 1h5"}],["$","path","12mj7e",{"d":"M11 18h2"}],["$","path","3ahymv",{"d":"M12 12v6"}],["$","path","qbrxap",{"d":"M9 13v-.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 .5.5v.5"}],"$undefined"]}],["$","div",null,{"className":"flex-1 min-w-0","children":[["$","div",null,{"className":"flex items-center gap-2","children":[["$","h4",null,{"className":"font-medium truncate","children":"AGENTS.md"}],["$","span",null,{"data-slot":"badge","data-variant":"secondary","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 font-medium w-fit whitespace-nowrap [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden bg-secondary text-secondary-foreground [a&]:hover:bg-secondary/90 text-xs shrink-0","children":"root"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground truncate","children":"Workspace guidelines"}]]}],["$","div",null,{"className":"hidden sm:block text-right text-sm text-muted-foreground","children":[["$","p",null,{"children":"3.5 KB"}],["$","p",null,{"className":"text-xs","children":"2 days ago"}]]}],["$","button",null,{"data-slot":"button","data-variant":"ghost","data-size":"icon","className":"inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50 size-9","children":["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-ellipsis-vertical w-4 h-4","aria-hidden":"true","children":[["$","circle","41hilf",{"cx":"12","cy":"12","r":"1"}],["$","circle","gxeob9",{"cx":"12","cy":"5","r":"1"}],["$","circle","lyex9k",{"cx":"12","cy":"19","r":"1"}],"$undefined"]}]}]]}]
|
||||||
|
f:["$","div","5",{"className":"flex items-center gap-4 p-4 hover:bg-accent/50 transition-colors cursor-pointer","children":[["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-file-code w-8 h-8 text-green-500","aria-hidden":"true","children":[["$","path","1oefj6",{"d":"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"}],["$","path","wfsgrz",{"d":"M14 2v5a1 1 0 0 0 1 1h5"}],["$","path","1tg20x",{"d":"M10 12.5 8 15l2 2.5"}],["$","path","yinavb",{"d":"m14 12.5 2 2.5-2 2.5"}],"$undefined"]}],["$","div",null,{"className":"flex-1 min-w-0","children":[["$","div",null,{"className":"flex items-center gap-2","children":[["$","h4",null,{"className":"font-medium truncate","children":"organize_downloads.sh"}],["$","span",null,{"data-slot":"badge","data-variant":"secondary","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 font-medium w-fit whitespace-nowrap [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden bg-secondary text-secondary-foreground [a&]:hover:bg-secondary/90 text-xs shrink-0","children":"scripts"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground truncate","children":"File organization script"}]]}],["$","div",null,{"className":"hidden sm:block text-right text-sm text-muted-foreground","children":[["$","p",null,{"children":"2.2 KB"}],["$","p",null,{"className":"text-xs","children":"Yesterday"}]]}],["$","button",null,{"data-slot":"button","data-variant":"ghost","data-size":"icon","className":"inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50 size-9","children":["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-ellipsis-vertical w-4 h-4","aria-hidden":"true","children":[["$","circle","41hilf",{"cx":"12","cy":"12","r":"1"}],["$","circle","gxeob9",{"cx":"12","cy":"5","r":"1"}],["$","circle","lyex9k",{"cx":"12","cy":"19","r":"1"}],"$undefined"]}]}]]}]
|
||||||
|
10:["$","div","6",{"className":"flex items-center gap-4 p-4 hover:bg-accent/50 transition-colors cursor-pointer","children":[["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-file-code w-8 h-8 text-green-500","aria-hidden":"true","children":[["$","path","1oefj6",{"d":"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"}],["$","path","wfsgrz",{"d":"M14 2v5a1 1 0 0 0 1 1h5"}],["$","path","1tg20x",{"d":"M10 12.5 8 15l2 2.5"}],["$","path","yinavb",{"d":"m14 12.5 2 2.5-2 2.5"}],"$undefined"]}],["$","div",null,{"className":"flex-1 min-w-0","children":[["$","div",null,{"className":"flex items-center gap-2","children":[["$","h4",null,{"className":"font-medium truncate","children":"morning_brief.sh"}],["$","span",null,{"data-slot":"badge","data-variant":"secondary","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 font-medium w-fit whitespace-nowrap [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden bg-secondary text-secondary-foreground [a&]:hover:bg-secondary/90 text-xs shrink-0","children":"scripts"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground truncate","children":"Daily automation script"}]]}],["$","div",null,{"className":"hidden sm:block text-right text-sm text-muted-foreground","children":[["$","p",null,{"children":"3.1 KB"}],["$","p",null,{"className":"text-xs","children":"Yesterday"}]]}],["$","button",null,{"data-slot":"button","data-variant":"ghost","data-size":"icon","className":"inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50 size-9","children":["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-ellipsis-vertical w-4 h-4","aria-hidden":"true","children":[["$","circle","41hilf",{"cx":"12","cy":"12","r":"1"}],["$","circle","gxeob9",{"cx":"12","cy":"5","r":"1"}],["$","circle","lyex9k",{"cx":"12","cy":"19","r":"1"}],"$undefined"]}]}]]}]
|
||||||
|
11:["$","div","7",{"className":"flex items-center gap-4 p-4 hover:bg-accent/50 transition-colors cursor-pointer","children":[["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-file-text w-8 h-8 text-yellow-500","aria-hidden":"true","children":[["$","path","1oefj6",{"d":"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"}],["$","path","wfsgrz",{"d":"M14 2v5a1 1 0 0 0 1 1h5"}],["$","path","b1mrlr",{"d":"M10 9H8"}],["$","path","t4e002",{"d":"M16 13H8"}],["$","path","z1uh3a",{"d":"M16 17H8"}],"$undefined"]}],["$","div",null,{"className":"flex-1 min-w-0","children":[["$","div",null,{"className":"flex items-center gap-2","children":[["$","h4",null,{"className":"font-medium truncate","children":"file-system-assistant.skill"}],["$","span",null,{"data-slot":"badge","data-variant":"secondary","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 font-medium w-fit whitespace-nowrap [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden bg-secondary text-secondary-foreground [a&]:hover:bg-secondary/90 text-xs shrink-0","children":"skills"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground truncate","children":"Packaged skill file"}]]}],["$","div",null,{"className":"hidden sm:block text-right text-sm text-muted-foreground","children":[["$","p",null,{"children":"12 KB"}],["$","p",null,{"className":"text-xs","children":"Yesterday"}]]}],["$","button",null,{"data-slot":"button","data-variant":"ghost","data-size":"icon","className":"inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50 size-9","children":["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-ellipsis-vertical w-4 h-4","aria-hidden":"true","children":[["$","circle","41hilf",{"cx":"12","cy":"12","r":"1"}],["$","circle","gxeob9",{"cx":"12","cy":"5","r":"1"}],["$","circle","lyex9k",{"cx":"12","cy":"19","r":"1"}],"$undefined"]}]}]]}]
|
||||||
|
12:["$","div","8",{"className":"flex items-center gap-4 p-4 hover:bg-accent/50 transition-colors cursor-pointer","children":[["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-file-text w-8 h-8 text-yellow-500","aria-hidden":"true","children":[["$","path","1oefj6",{"d":"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"}],["$","path","wfsgrz",{"d":"M14 2v5a1 1 0 0 0 1 1h5"}],["$","path","b1mrlr",{"d":"M10 9H8"}],["$","path","t4e002",{"d":"M16 13H8"}],["$","path","z1uh3a",{"d":"M16 17H8"}],"$undefined"]}],["$","div",null,{"className":"flex-1 min-w-0","children":[["$","div",null,{"className":"flex items-center gap-2","children":[["$","h4",null,{"className":"font-medium truncate","children":"email-assistant.skill"}],["$","span",null,{"data-slot":"badge","data-variant":"secondary","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 font-medium w-fit whitespace-nowrap [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden bg-secondary text-secondary-foreground [a&]:hover:bg-secondary/90 text-xs shrink-0","children":"skills"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground truncate","children":"Packaged skill file"}]]}],["$","div",null,{"className":"hidden sm:block text-right text-sm text-muted-foreground","children":[["$","p",null,{"children":"15 KB"}],["$","p",null,{"className":"text-xs","children":"Yesterday"}]]}],["$","button",null,{"data-slot":"button","data-variant":"ghost","data-size":"icon","className":"inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50 size-9","children":["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-ellipsis-vertical w-4 h-4","aria-hidden":"true","children":[["$","circle","41hilf",{"cx":"12","cy":"12","r":"1"}],["$","circle","gxeob9",{"cx":"12","cy":"5","r":"1"}],["$","circle","lyex9k",{"cx":"12","cy":"19","r":"1"}],"$undefined"]}]}]]}]
|
||||||
|
15:null
|
||||||
4
dist/documents/__next.documents.txt
vendored
Normal file
4
dist/documents/__next.documents.txt
vendored
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
1:"$Sreact.fragment"
|
||||||
|
2:I[96757,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"default"]
|
||||||
|
3:I[7805,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"default"]
|
||||||
|
0:{"buildId":"BaNBduHEWTzurUV8mpacN","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
|
||||||
BIN
dist/favicon.ico
vendored
Normal file
BIN
dist/favicon.ico
vendored
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 25 KiB |
1
dist/file.svg
vendored
Normal file
1
dist/file.svg
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg fill="none" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.5 13.5V5.41a1 1 0 0 0-.3-.7L9.8.29A1 1 0 0 0 9.08 0H1.5v13.5A2.5 2.5 0 0 0 4 16h8a2.5 2.5 0 0 0 2.5-2.5m-1.5 0v-7H8v-5H3v12a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1M9.5 5V2.12L12.38 5zM5.13 5h-.62v1.25h2.12V5zm-.62 3h7.12v1.25H4.5zm.62 3h-.62v1.25h7.12V11z" clip-rule="evenodd" fill="#666" fill-rule="evenodd"/></svg>
|
||||||
|
After Width: | Height: | Size: 391 B |
1
dist/globe.svg
vendored
Normal file
1
dist/globe.svg
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><g clip-path="url(#a)"><path fill-rule="evenodd" clip-rule="evenodd" d="M10.27 14.1a6.5 6.5 0 0 0 3.67-3.45q-1.24.21-2.7.34-.31 1.83-.97 3.1M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16m.48-1.52a7 7 0 0 1-.96 0H7.5a4 4 0 0 1-.84-1.32q-.38-.89-.63-2.08a40 40 0 0 0 3.92 0q-.25 1.2-.63 2.08a4 4 0 0 1-.84 1.31zm2.94-4.76q1.66-.15 2.95-.43a7 7 0 0 0 0-2.58q-1.3-.27-2.95-.43a18 18 0 0 1 0 3.44m-1.27-3.54a17 17 0 0 1 0 3.64 39 39 0 0 1-4.3 0 17 17 0 0 1 0-3.64 39 39 0 0 1 4.3 0m1.1-1.17q1.45.13 2.69.34a6.5 6.5 0 0 0-3.67-3.44q.65 1.26.98 3.1M8.48 1.5l.01.02q.41.37.84 1.31.38.89.63 2.08a40 40 0 0 0-3.92 0q.25-1.2.63-2.08a4 4 0 0 1 .85-1.32 7 7 0 0 1 .96 0m-2.75.4a6.5 6.5 0 0 0-3.67 3.44 29 29 0 0 1 2.7-.34q.31-1.83.97-3.1M4.58 6.28q-1.66.16-2.95.43a7 7 0 0 0 0 2.58q1.3.27 2.95.43a18 18 0 0 1 0-3.44m.17 4.71q-1.45-.12-2.69-.34a6.5 6.5 0 0 0 3.67 3.44q-.65-1.27-.98-3.1" fill="#666"/></g><defs><clipPath id="a"><path fill="#fff" d="M0 0h16v16H0z"/></clipPath></defs></svg>
|
||||||
|
After Width: | Height: | Size: 1.0 KiB |
1
dist/index.html
vendored
Normal file
1
dist/index.html
vendored
Normal file
File diff suppressed because one or more lines are too long
32
dist/index.txt
vendored
Normal file
32
dist/index.txt
vendored
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
1:"$Sreact.fragment"
|
||||||
|
2:I[96757,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"default"]
|
||||||
|
3:I[7805,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"default"]
|
||||||
|
4:I[89567,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/91b41192b4a98cf1.js"],"DashboardLayout"]
|
||||||
|
10:I[95111,[],"default"]
|
||||||
|
:HL["/_next/static/chunks/fa936e037dd092b4.css","style"]
|
||||||
|
:HL["/_next/static/media/797e433ab948586e-s.p.dbea232f.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||||
|
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||||
|
0:{"P":null,"b":"BaNBduHEWTzurUV8mpacN","c":["",""],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/fa936e037dd092b4.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]],["$","html",null,{"lang":"en","className":"dark","children":["$","body",null,{"className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable antialiased bg-background","children":["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}],{"children":[["$","$1","c",{"children":[["$","$L4",null,{"children":["$","div",null,{"className":"space-y-8","children":[["$","div",null,{"children":[["$","h1",null,{"className":"text-3xl font-bold tracking-tight","children":"Dashboard"}],["$","p",null,{"className":"text-muted-foreground mt-1","children":"Welcome back, Matt. Here's your mission overview."}]]}],["$","div",null,{"className":"grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-4","children":[["$","div","Active Tasks",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":[["$","div",null,{"data-slot":"card-header","className":"@container/card-header auto-rows-min grid-rows-[auto_auto] gap-2 px-6 has-data-[slot=card-action]:grid-cols-[1fr_auto] [.border-b]:pb-6 flex flex-row items-center justify-between pb-2","children":[["$","div",null,{"data-slot":"card-title","className":"text-sm font-medium text-muted-foreground","children":"Active Tasks"}],["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-circle-check w-4 h-4 text-muted-foreground","aria-hidden":"true","children":[["$","circle","1mglay",{"cx":"12","cy":"12","r":"10"}],["$","path","dzmm74",{"d":"m9 12 2 2 4-4"}],"$undefined"]}]]}],["$","div",null,{"data-slot":"card-content","className":"px-6","children":[["$","div",null,{"className":"text-2xl font-bold","children":"12"}],["$","p",null,{"className":"text-xs text-muted-foreground mt-1","children":"+3 today"}]]}]]}],["$","div","Goals Progress",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":[["$","div",null,{"data-slot":"card-header","className":"@container/card-header auto-rows-min grid-rows-[auto_auto] gap-2 px-6 has-data-[slot=card-action]:grid-cols-[1fr_auto] [.border-b]:pb-6 flex flex-row items-center justify-between pb-2","children":[["$","div",null,{"data-slot":"card-title","className":"text-sm font-medium text-muted-foreground","children":"Goals Progress"}],["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-target w-4 h-4 text-muted-foreground","aria-hidden":"true","children":[["$","circle","1mglay",{"cx":"12","cy":"12","r":"10"}],"$L5","$L6","$undefined"]}]]}],"$L7"]}],"$L8","$L9"]}],"$La","$Lb"]}]}],["$Lc","$Ld"],"$Le"]}],{},null,false,false]},null,false,false],"$Lf",false]],"m":"$undefined","G":["$10",[]],"S":true}
|
||||||
|
15:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"OutletBoundary"]
|
||||||
|
16:"$Sreact.suspense"
|
||||||
|
18:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"ViewportBoundary"]
|
||||||
|
1a:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"MetadataBoundary"]
|
||||||
|
5:["$","circle","1vlfrh",{"cx":"12","cy":"12","r":"6"}]
|
||||||
|
6:["$","circle","1c9p78",{"cx":"12","cy":"12","r":"2"}]
|
||||||
|
7:["$","div",null,{"data-slot":"card-content","className":"px-6","children":[["$","div",null,{"className":"text-2xl font-bold","children":"64%"}],["$","p",null,{"className":"text-xs text-muted-foreground mt-1","children":"+8% this week"}]]}]
|
||||||
|
8:["$","div","Apps Built",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":[["$","div",null,{"data-slot":"card-header","className":"@container/card-header auto-rows-min grid-rows-[auto_auto] gap-2 px-6 has-data-[slot=card-action]:grid-cols-[1fr_auto] [.border-b]:pb-6 flex flex-row items-center justify-between pb-2","children":[["$","div",null,{"data-slot":"card-title","className":"text-sm font-medium text-muted-foreground","children":"Apps Built"}],["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-trending-up w-4 h-4 text-muted-foreground","aria-hidden":"true","children":[["$","path","box55l",{"d":"M16 7h6v6"}],["$","path","1t1m79",{"d":"m22 7-8.5 8.5-5-5L2 17"}],"$undefined"]}]]}],["$","div",null,{"data-slot":"card-content","className":"px-6","children":[["$","div",null,{"className":"text-2xl font-bold","children":"6"}],["$","p",null,{"className":"text-xs text-muted-foreground mt-1","children":"2 in App Store"}]]}]]}]
|
||||||
|
9:["$","div","Year Progress",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":[["$","div",null,{"data-slot":"card-header","className":"@container/card-header auto-rows-min grid-rows-[auto_auto] gap-2 px-6 has-data-[slot=card-action]:grid-cols-[1fr_auto] [.border-b]:pb-6 flex flex-row items-center justify-between pb-2","children":[["$","div",null,{"data-slot":"card-title","className":"text-sm font-medium text-muted-foreground","children":"Year Progress"}],["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-clock w-4 h-4 text-muted-foreground","aria-hidden":"true","children":[["$","circle","1mglay",{"cx":"12","cy":"12","r":"10"}],["$","path","mmk7yg",{"d":"M12 6v6l4 2"}],"$undefined"]}]]}],["$","div",null,{"data-slot":"card-content","className":"px-6","children":[["$","div",null,{"className":"text-2xl font-bold","children":"14%"}],["$","p",null,{"className":"text-xs text-muted-foreground mt-1","children":"Day 51 of 365"}]]}]]}]
|
||||||
|
a:["$","div",null,{"className":"grid grid-cols-1 lg:grid-cols-2 gap-6","children":[["$","div",null,{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":[["$","div",null,{"data-slot":"card-header","className":"@container/card-header grid auto-rows-min grid-rows-[auto_auto] items-start gap-2 px-6 has-data-[slot=card-action]:grid-cols-[1fr_auto] [.border-b]:pb-6","children":["$","div",null,{"data-slot":"card-title","className":"leading-none font-semibold flex items-center gap-2","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-activity w-5 h-5","aria-hidden":"true","children":[["$","path","169zse",{"d":"M22 12h-2.48a2 2 0 0 0-1.93 1.46l-2.35 8.36a.25.25 0 0 1-.48 0L9.24 2.18a.25.25 0 0 0-.48 0l-2.35 8.36A2 2 0 0 1 4.49 12H2"}],"$undefined"]}],"Recent Activity"]}]}],["$","div",null,{"data-slot":"card-content","className":"px-6","children":["$","div",null,{"className":"space-y-4","children":[["$","div","0",{"className":"flex items-start gap-3 pb-3 border-b border-border last:border-0 last:pb-0","children":[["$","div",null,{"className":"w-2 h-2 rounded-full bg-primary mt-2"}],["$","div",null,{"className":"flex-1","children":[["$","p",null,{"className":"text-sm font-medium","children":"Organized Downloads"}],["$","p",null,{"className":"text-xs text-muted-foreground","children":"2 hours ago"}]]}]]}],["$","div","1",{"className":"flex items-start gap-3 pb-3 border-b border-border last:border-0 last:pb-0","children":[["$","div",null,{"className":"w-2 h-2 rounded-full bg-primary mt-2"}],["$","div",null,{"className":"flex-1","children":[["$","p",null,{"className":"text-sm font-medium","children":"Completed morning briefing"}],["$","p",null,{"className":"text-xs text-muted-foreground","children":"5 hours ago"}]]}]]}],["$","div","2",{"className":"flex items-start gap-3 pb-3 border-b border-border last:border-0 last:pb-0","children":[["$","div",null,{"className":"w-2 h-2 rounded-full bg-primary mt-2"}],["$","div",null,{"className":"flex-1","children":[["$","p",null,{"className":"text-sm font-medium","children":"Created 5 new skills"}],["$","p",null,{"className":"text-xs text-muted-foreground","children":"1 day ago"}]]}]]}],["$","div","3",{"className":"flex items-start gap-3 pb-3 border-b border-border last:border-0 last:pb-0","children":[["$","div",null,{"className":"w-2 h-2 rounded-full bg-primary mt-2"}],["$","div",null,{"className":"flex-1","children":[["$","p",null,{"className":"text-sm font-medium","children":"Updated USER.md"}],["$","p",null,{"className":"text-xs text-muted-foreground","children":"2 days ago"}]]}]]}]]}]}]]}],["$","div",null,{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":[["$","div",null,{"data-slot":"card-header","className":"@container/card-header grid auto-rows-min grid-rows-[auto_auto] items-start gap-2 px-6 has-data-[slot=card-action]:grid-cols-[1fr_auto] [.border-b]:pb-6","children":["$","div",null,{"data-slot":"card-title","className":"leading-none font-semibold flex items-center gap-2","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-calendar w-5 h-5","aria-hidden":"true","children":[["$","path","1cmpym",{"d":"M8 2v4"}],["$","path","4m81vk",{"d":"M16 2v4"}],["$","rect","1hopcy",{"width":"18","height":"18","x":"3","y":"4","rx":"2"}],["$","path","8toen8",{"d":"M3 10h18"}],"$undefined"]}],"Upcoming Events"]}]}],["$","div",null,{"data-slot":"card-content","className":"px-6","children":["$","div",null,{"className":"space-y-4","children":[["$","div","0",{"className":"flex items-start gap-3 pb-3 border-b border-border last:border-0 last:pb-0","children":[["$","div",null,{"className":"w-2 h-2 rounded-full bg-blue-500 mt-2"}],["$","div",null,{"className":"flex-1","children":[["$","p",null,{"className":"text-sm font-medium","children":"Yearly Anniversary"}],"$L11"]}],"$L12"]}],"$L13","$L14"]}]}]]}]]}]
|
||||||
|
b:["$","div",null,{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":[["$","div",null,{"data-slot":"card-header","className":"@container/card-header grid auto-rows-min grid-rows-[auto_auto] items-start gap-2 px-6 has-data-[slot=card-action]:grid-cols-[1fr_auto] [.border-b]:pb-6","children":["$","div",null,{"data-slot":"card-title","className":"leading-none font-semibold","children":"Mission Progress"}]}],["$","div",null,{"data-slot":"card-content","className":"px-6","children":["$","div",null,{"className":"space-y-4","children":[["$","div",null,{"children":[["$","div",null,{"className":"flex justify-between text-sm mb-2","children":[["$","span",null,{"children":"Retirement Goal"}],["$","span",null,{"className":"text-muted-foreground","children":"50% complete"}]]}],["$","div",null,{"className":"h-2 bg-secondary rounded-full overflow-hidden","children":["$","div",null,{"className":"h-full w-1/2 bg-gradient-to-r from-blue-500 to-purple-500 rounded-full"}]}]]}],["$","div",null,{"children":[["$","div",null,{"className":"flex justify-between text-sm mb-2","children":[["$","span",null,{"children":"iOS Apps Portfolio"}],["$","span",null,{"className":"text-muted-foreground","children":"6 apps built"}]]}],["$","div",null,{"className":"h-2 bg-secondary rounded-full overflow-hidden","children":["$","div",null,{"className":"h-full w-3/4 bg-gradient-to-r from-green-500 to-emerald-500 rounded-full"}]}]]}],["$","div",null,{"children":[["$","div",null,{"className":"flex justify-between text-sm mb-2","children":[["$","span",null,{"children":"Side Hustle Revenue"}],["$","span",null,{"className":"text-muted-foreground","children":"Just getting started"}]]}],["$","div",null,{"className":"h-2 bg-secondary rounded-full overflow-hidden","children":["$","div",null,{"className":"h-full w-[5%] bg-gradient-to-r from-orange-500 to-red-500 rounded-full"}]}]]}]]}]}]]}]
|
||||||
|
c:["$","script","script-0",{"src":"/_next/static/chunks/05acb8b0bd6792f1.js","async":true,"nonce":"$undefined"}]
|
||||||
|
d:["$","script","script-1",{"src":"/_next/static/chunks/91b41192b4a98cf1.js","async":true,"nonce":"$undefined"}]
|
||||||
|
e:["$","$L15",null,{"children":["$","$16",null,{"name":"Next.MetadataOutlet","children":"$@17"}]}]
|
||||||
|
f:["$","$1","h",{"children":[null,["$","$L18",null,{"children":"$L19"}],["$","div",null,{"hidden":true,"children":["$","$L1a",null,{"children":["$","$16",null,{"name":"Next.Metadata","children":"$L1b"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}]
|
||||||
|
11:["$","p",null,{"className":"text-xs text-muted-foreground","children":"Feb 23"}]
|
||||||
|
12:["$","span",null,{"className":"text-xs px-2 py-1 rounded-full bg-secondary text-secondary-foreground","children":"personal"}]
|
||||||
|
13:["$","div","1",{"className":"flex items-start gap-3 pb-3 border-b border-border last:border-0 last:pb-0","children":[["$","div",null,{"className":"w-2 h-2 rounded-full bg-blue-500 mt-2"}],["$","div",null,{"className":"flex-1","children":[["$","p",null,{"className":"text-sm font-medium","children":"Grabbing Anderson's dogs"}],["$","p",null,{"className":"text-xs text-muted-foreground","children":"Feb 26, 5:30 PM"}]]}],["$","span",null,{"className":"text-xs px-2 py-1 rounded-full bg-secondary text-secondary-foreground","children":"task"}]]}]
|
||||||
|
14:["$","div","2",{"className":"flex items-start gap-3 pb-3 border-b border-border last:border-0 last:pb-0","children":[["$","div",null,{"className":"w-2 h-2 rounded-full bg-blue-500 mt-2"}],["$","div",null,{"className":"flex-1","children":[["$","p",null,{"className":"text-sm font-medium","children":"Contract Renewal Check"}],["$","p",null,{"className":"text-xs text-muted-foreground","children":"Mar 2026"}]]}],["$","span",null,{"className":"text-xs px-2 py-1 rounded-full bg-secondary text-secondary-foreground","children":"work"}]]}]
|
||||||
|
19:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||||
|
1c:I[92064,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"IconMark"]
|
||||||
|
17:null
|
||||||
|
1b:[["$","title","0",{"children":"Mission Control | TopDogLabs"}],["$","meta","1",{"name":"description","content":"Central hub for activity, tasks, goals, and tools"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.0b3bf435.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L1c","3",{}]]
|
||||||
1
dist/mission.html
vendored
Normal file
1
dist/mission.html
vendored
Normal file
File diff suppressed because one or more lines are too long
34
dist/mission.txt
vendored
Normal file
34
dist/mission.txt
vendored
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
1:"$Sreact.fragment"
|
||||||
|
2:I[96757,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"default"]
|
||||||
|
3:I[7805,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"default"]
|
||||||
|
4:I[89567,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/91b41192b4a98cf1.js"],"DashboardLayout"]
|
||||||
|
10:I[95111,[],"default"]
|
||||||
|
:HL["/_next/static/chunks/fa936e037dd092b4.css","style"]
|
||||||
|
:HL["/_next/static/media/797e433ab948586e-s.p.dbea232f.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||||
|
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||||
|
0:{"P":null,"b":"BaNBduHEWTzurUV8mpacN","c":["","mission"],"q":"","i":false,"f":[[["",{"children":["mission",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/fa936e037dd092b4.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]],["$","html",null,{"lang":"en","className":"dark","children":["$","body",null,{"className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable antialiased bg-background","children":["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L4",null,{"children":["$","div",null,{"className":"space-y-8","children":[["$","div",null,{"children":[["$","h1",null,{"className":"text-3xl font-bold tracking-tight","children":"The Mission"}],["$","p",null,{"className":"text-muted-foreground mt-1","children":"Your goals, values, and the path to freedom."}]]}],["$","div",null,{"data-slot":"card","className":"text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm bg-gradient-to-br from-blue-500/5 via-purple-500/5 to-pink-500/5 border-blue-500/20","children":["$","div",null,{"data-slot":"card-content","className":"p-6","children":[["$","h2",null,{"className":"text-xl font-bold mb-3","children":"The Mission"}],["$","p",null,{"className":"text-lg leading-relaxed text-muted-foreground","children":"Build a sustainable side hustle through iOS apps to achieve financial independence, travel with Heidi, take care of family, and retire on my own terms — all while staying healthy and having fun."}]]}]}],["$","div",null,{"className":"grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-4","children":[["$","div","Apps Built",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":[["$","div",null,{"data-slot":"card-header","className":"@container/card-header auto-rows-min grid-rows-[auto_auto] gap-2 px-6 has-data-[slot=card-action]:grid-cols-[1fr_auto] [.border-b]:pb-6 flex flex-row items-center justify-between pb-2","children":[["$","div",null,{"data-slot":"card-title","className":"text-sm font-medium text-muted-foreground","children":"Apps Built"}],["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-briefcase w-4 h-4 text-muted-foreground","aria-hidden":"true","children":[["$","path","jecpp",{"d":"M16 20V4a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16"}],["$","rect","i6l2r4",{"width":"20","height":"14","x":"2","y":"6","rx":"2"}],"$undefined"]}]]}],["$","div",null,{"data-slot":"card-content","className":"px-6","children":[["$","div",null,{"className":"text-2xl font-bold","children":"6"}],"$L5"]}]]}],"$L6","$L7","$L8"]}],"$L9","$La","$Lb"]}]}],["$Lc","$Ld"],"$Le"]}],{},null,false,false]},null,false,false]},null,false,false],"$Lf",false]],"m":"$undefined","G":["$10",[]],"S":true}
|
||||||
|
17:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"OutletBoundary"]
|
||||||
|
18:"$Sreact.suspense"
|
||||||
|
1a:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"ViewportBoundary"]
|
||||||
|
1c:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"MetadataBoundary"]
|
||||||
|
5:["$","p",null,{"className":"text-xs text-muted-foreground mt-1","children":"+6 since Dec 2024"}]
|
||||||
|
6:["$","div","Apps Live",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":[["$","div",null,{"data-slot":"card-header","className":"@container/card-header auto-rows-min grid-rows-[auto_auto] gap-2 px-6 has-data-[slot=card-action]:grid-cols-[1fr_auto] [.border-b]:pb-6 flex flex-row items-center justify-between pb-2","children":[["$","div",null,{"data-slot":"card-title","className":"text-sm font-medium text-muted-foreground","children":"Apps Live"}],["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-trending-up w-4 h-4 text-muted-foreground","aria-hidden":"true","children":[["$","path","box55l",{"d":"M16 7h6v6"}],["$","path","1t1m79",{"d":"m22 7-8.5 8.5-5-5L2 17"}],"$undefined"]}]]}],["$","div",null,{"data-slot":"card-content","className":"px-6","children":[["$","div",null,{"className":"text-2xl font-bold","children":"2"}],["$","p",null,{"className":"text-xs text-muted-foreground mt-1","children":"2 pending LLC"}]]}]]}]
|
||||||
|
7:["$","div","Contract Months Left",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":[["$","div",null,{"data-slot":"card-header","className":"@container/card-header auto-rows-min grid-rows-[auto_auto] gap-2 px-6 has-data-[slot=card-action]:grid-cols-[1fr_auto] [.border-b]:pb-6 flex flex-row items-center justify-between pb-2","children":[["$","div",null,{"data-slot":"card-title","className":"text-sm font-medium text-muted-foreground","children":"Contract Months Left"}],["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-dollar-sign w-4 h-4 text-muted-foreground","aria-hidden":"true","children":[["$","line","7eqyqh",{"x1":"12","x2":"12","y1":"2","y2":"22"}],["$","path","1b0p4s",{"d":"M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6"}],"$undefined"]}]]}],["$","div",null,{"data-slot":"card-content","className":"px-6","children":[["$","div",null,{"className":"text-2xl font-bold","children":"13"}],["$","p",null,{"className":"text-xs text-muted-foreground mt-1","children":"Renews Mar 2026"}]]}]]}]
|
||||||
|
8:["$","div","Morning Streak",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":[["$","div",null,{"data-slot":"card-header","className":"@container/card-header auto-rows-min grid-rows-[auto_auto] gap-2 px-6 has-data-[slot=card-action]:grid-cols-[1fr_auto] [.border-b]:pb-6 flex flex-row items-center justify-between pb-2","children":[["$","div",null,{"data-slot":"card-title","className":"text-sm font-medium text-muted-foreground","children":"Morning Streak"}],["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-target w-4 h-4 text-muted-foreground","aria-hidden":"true","children":[["$","circle","1mglay",{"cx":"12","cy":"12","r":"10"}],["$","circle","1vlfrh",{"cx":"12","cy":"12","r":"6"}],["$","circle","1c9p78",{"cx":"12","cy":"12","r":"2"}],"$undefined"]}]]}],["$","div",null,{"data-slot":"card-content","className":"px-6","children":[["$","div",null,{"className":"text-2xl font-bold","children":"7"}],["$","p",null,{"className":"text-xs text-muted-foreground mt-1","children":"days consistent"}]]}]]}]
|
||||||
|
9:["$","div",null,{"children":[["$","h2",null,{"className":"text-xl font-bold mb-4","children":"Core Values"}],["$","div",null,{"className":"grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-4","children":[["$","div","Family",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":["$","div",null,{"data-slot":"card-content","className":"p-4 text-center","children":[["$","div",null,{"className":"w-12 h-12 rounded-full bg-primary/10 flex items-center justify-center mx-auto mb-3","children":["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-heart w-6 h-6 text-primary","aria-hidden":"true","children":[["$","path","mvr1a0",{"d":"M2 9.5a5.5 5.5 0 0 1 9.591-3.676.56.56 0 0 0 .818 0A5.49 5.49 0 0 1 22 9.5c0 2.29-1.5 4-3 5.5l-5.492 5.313a2 2 0 0 1-3 .019L5 15c-1.5-1.5-3-3.2-3-5.5"}],"$undefined"]}]}],["$","h3",null,{"className":"font-semibold","children":"Family"}],["$","p",null,{"className":"text-sm text-muted-foreground mt-1","children":"Priority #1 — take care of loved ones"}]]}]}],["$","div","Health",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":["$","div",null,{"data-slot":"card-content","className":"p-4 text-center","children":[["$","div",null,{"className":"w-12 h-12 rounded-full bg-primary/10 flex items-center justify-center mx-auto mb-3","children":["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-target w-6 h-6 text-primary","aria-hidden":"true","children":[["$","circle","1mglay",{"cx":"12","cy":"12","r":"10"}],["$","circle","1vlfrh",{"cx":"12","cy":"12","r":"6"}],["$","circle","1c9p78",{"cx":"12","cy":"12","r":"2"}],"$undefined"]}]}],["$","h3",null,{"className":"font-semibold","children":"Health"}],["$","p",null,{"className":"text-sm text-muted-foreground mt-1","children":"Stay fit, strong, and mobile"}]]}]}],["$","div","Fun",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":["$","div",null,{"data-slot":"card-content","className":"p-4 text-center","children":[["$","div",null,{"className":"w-12 h-12 rounded-full bg-primary/10 flex items-center justify-center mx-auto mb-3","children":["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-trending-up w-6 h-6 text-primary","aria-hidden":"true","children":[["$","path","box55l",{"d":"M16 7h6v6"}],["$","path","1t1m79",{"d":"m22 7-8.5 8.5-5-5L2 17"}],"$undefined"]}]}],["$","h3",null,{"className":"font-semibold","children":"Fun"}],["$","p",null,{"className":"text-sm text-muted-foreground mt-1","children":"Enjoy the journey, not just the destination"}]]}]}],["$","div","Adventure",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":["$","div",null,{"data-slot":"card-content","className":"p-4 text-center","children":[["$","div",null,{"className":"w-12 h-12 rounded-full bg-primary/10 flex items-center justify-center mx-auto mb-3","children":["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-plane w-6 h-6 text-primary","aria-hidden":"true","children":[["$","path","1v9wt8",{"d":"M17.8 19.2 16 11l3.5-3.5C21 6 21.5 4 21 3c-1-.5-3 0-4.5 1.5L13 8 4.8 6.2c-.5-.1-.9.1-1.1.5l-.3.5c-.2.5-.1 1 .3 1.3L9 12l-2 3H4l-1 1 3 2 2 3 1-1v-3l3-2 3.5 5.3c.3.4.8.5 1.3.3l.5-.2c.4-.3.6-.7.5-1.2z"}],"$undefined"]}]}],["$","h3",null,{"className":"font-semibold","children":"Adventure"}],["$","p",null,{"className":"text-sm text-muted-foreground mt-1","children":"Travel and experience new things"}]]}]}]]}]]}]
|
||||||
|
a:["$","div",null,{"children":[["$","h2",null,{"className":"text-xl font-bold mb-4","children":"Goals"}],["$","div",null,{"className":"space-y-4","children":[["$","div","1",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":["$","div",null,{"data-slot":"card-content","className":"p-4","children":["$","div",null,{"className":"flex flex-col sm:flex-row sm:items-center gap-4","children":[["$","div",null,{"className":"flex-1","children":[["$","div",null,{"className":"flex items-center gap-2 flex-wrap","children":[["$","h3",null,{"className":"font-semibold","children":"Double Retirement Savings"}],["$","span",null,{"data-slot":"badge","data-variant":"default","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden [a&]:hover:bg-primary/90 bg-green-500/10 text-green-500","children":"financial"}],["$","span",null,{"data-slot":"badge","data-variant":"default","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden [a&]:hover:bg-primary/90 bg-yellow-500/10 text-yellow-500","children":"in-progress"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground mt-1","children":["Deadline: ","Ongoing"]}]]}],["$","div",null,{"className":"sm:w-48","children":[["$","div",null,{"className":"flex justify-between text-sm mb-1","children":[["$","span",null,{"className":"text-muted-foreground","children":"Progress"}],["$","span",null,{"className":"font-medium","children":[50,"/",100," ","%"]}]]}],["$","div",null,{"className":"h-2 bg-secondary rounded-full overflow-hidden","children":["$","div",null,{"className":"h-full bg-gradient-to-r from-blue-500 to-purple-500 rounded-full transition-all","style":{"width":"50%"}}]}]]}]]}]}]}],["$","div","2",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":["$","div",null,{"data-slot":"card-content","className":"p-4","children":["$","div",null,{"className":"flex flex-col sm:flex-row sm:items-center gap-4","children":[["$","div",null,{"className":"flex-1","children":[["$","div",null,{"className":"flex items-center gap-2 flex-wrap","children":[["$","h3",null,{"className":"font-semibold","children":"Build iOS App Empire"}],["$","span",null,{"data-slot":"badge","data-variant":"default","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden [a&]:hover:bg-primary/90 bg-blue-500/10 text-blue-500","children":"business"}],["$","span",null,{"data-slot":"badge","data-variant":"default","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden [a&]:hover:bg-primary/90 bg-yellow-500/10 text-yellow-500","children":"in-progress"}]]}],"$L11"]}],"$L12"]}]}]}],"$L13","$L14","$L15","$L16"]}]]}]
|
||||||
|
b:["$","div",null,{"data-slot":"card","className":"text-card-foreground flex flex-col gap-6 rounded-xl py-6 shadow-sm bg-gradient-to-r from-slate-800 to-slate-900 border-0","children":["$","div",null,{"data-slot":"card-content","className":"p-6 text-center","children":[["$","p",null,{"className":"text-lg italic text-slate-300","children":"\"53 is just the start of the best chapter.\""}],["$","p",null,{"className":"text-sm text-slate-500 mt-2","children":"— The Mission"}]]}]}]
|
||||||
|
c:["$","script","script-0",{"src":"/_next/static/chunks/05acb8b0bd6792f1.js","async":true,"nonce":"$undefined"}]
|
||||||
|
d:["$","script","script-1",{"src":"/_next/static/chunks/91b41192b4a98cf1.js","async":true,"nonce":"$undefined"}]
|
||||||
|
e:["$","$L17",null,{"children":["$","$18",null,{"name":"Next.MetadataOutlet","children":"$@19"}]}]
|
||||||
|
f:["$","$1","h",{"children":[null,["$","$L1a",null,{"children":"$L1b"}],["$","div",null,{"hidden":true,"children":["$","$L1c",null,{"children":["$","$18",null,{"name":"Next.Metadata","children":"$L1d"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}]
|
||||||
|
11:["$","p",null,{"className":"text-sm text-muted-foreground mt-1","children":["Deadline: ","2027"]}]
|
||||||
|
12:["$","div",null,{"className":"sm:w-48","children":[["$","div",null,{"className":"flex justify-between text-sm mb-1","children":[["$","span",null,{"className":"text-muted-foreground","children":"Progress"}],["$","span",null,{"className":"font-medium","children":[6,"/",20," ","apps"]}]]}],["$","div",null,{"className":"h-2 bg-secondary rounded-full overflow-hidden","children":["$","div",null,{"className":"h-full bg-gradient-to-r from-blue-500 to-purple-500 rounded-full transition-all","style":{"width":"30%"}}]}]]}]
|
||||||
|
13:["$","div","3",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":["$","div",null,{"data-slot":"card-content","className":"p-4","children":["$","div",null,{"className":"flex flex-col sm:flex-row sm:items-center gap-4","children":[["$","div",null,{"className":"flex-1","children":[["$","div",null,{"className":"flex items-center gap-2 flex-wrap","children":[["$","h3",null,{"className":"font-semibold","children":"Replace Contract Income"}],["$","span",null,{"data-slot":"badge","data-variant":"default","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden [a&]:hover:bg-primary/90 bg-green-500/10 text-green-500","children":"financial"}],["$","span",null,{"data-slot":"badge","data-variant":"default","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden [a&]:hover:bg-primary/90 bg-yellow-500/10 text-yellow-500","children":"in-progress"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground mt-1","children":["Deadline: ","2027"]}]]}],["$","div",null,{"className":"sm:w-48","children":[["$","div",null,{"className":"flex justify-between text-sm mb-1","children":[["$","span",null,{"className":"text-muted-foreground","children":"Progress"}],["$","span",null,{"className":"font-medium","children":[5,"/",100," ","%"]}]]}],["$","div",null,{"className":"h-2 bg-secondary rounded-full overflow-hidden","children":["$","div",null,{"className":"h-full bg-gradient-to-r from-blue-500 to-purple-500 rounded-full transition-all","style":{"width":"5%"}}]}]]}]]}]}]}]
|
||||||
|
14:["$","div","4",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":["$","div",null,{"data-slot":"card-content","className":"p-4","children":["$","div",null,{"className":"flex flex-col sm:flex-row sm:items-center gap-4","children":[["$","div",null,{"className":"flex-1","children":[["$","div",null,{"className":"flex items-center gap-2 flex-wrap","children":[["$","h3",null,{"className":"font-semibold","children":"Travel with Heidi"}],["$","span",null,{"data-slot":"badge","data-variant":"default","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden [a&]:hover:bg-primary/90 bg-purple-500/10 text-purple-500","children":"adventure"}],["$","span",null,{"data-slot":"badge","data-variant":"default","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden [a&]:hover:bg-primary/90 bg-gray-500/10 text-gray-500","children":"not-started"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground mt-1","children":["Deadline: ","2028"]}]]}],["$","div",null,{"className":"sm:w-48","children":[["$","div",null,{"className":"flex justify-between text-sm mb-1","children":[["$","span",null,{"className":"text-muted-foreground","children":"Progress"}],["$","span",null,{"className":"font-medium","children":[0,"/",10," ","countries"]}]]}],["$","div",null,{"className":"h-2 bg-secondary rounded-full overflow-hidden","children":["$","div",null,{"className":"h-full bg-gradient-to-r from-blue-500 to-purple-500 rounded-full transition-all","style":{"width":"0%"}}]}]]}]]}]}]}]
|
||||||
|
15:["$","div","5",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":["$","div",null,{"data-slot":"card-content","className":"p-4","children":["$","div",null,{"className":"flex flex-col sm:flex-row sm:items-center gap-4","children":[["$","div",null,{"className":"flex-1","children":[["$","div",null,{"className":"flex items-center gap-2 flex-wrap","children":[["$","h3",null,{"className":"font-semibold","children":"Family Trip with Mom"}],["$","span",null,{"data-slot":"badge","data-variant":"default","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden [a&]:hover:bg-primary/90 bg-pink-500/10 text-pink-500","children":"family"}],["$","span",null,{"data-slot":"badge","data-variant":"default","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden [a&]:hover:bg-primary/90 bg-blue-500/10 text-blue-500","children":"planning"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground mt-1","children":["Deadline: ","2026"]}]]}],["$","div",null,{"className":"sm:w-48","children":[["$","div",null,{"className":"flex justify-between text-sm mb-1","children":[["$","span",null,{"className":"text-muted-foreground","children":"Progress"}],["$","span",null,{"className":"font-medium","children":[0,"/",1," ","trip"]}]]}],["$","div",null,{"className":"h-2 bg-secondary rounded-full overflow-hidden","children":["$","div",null,{"className":"h-full bg-gradient-to-r from-blue-500 to-purple-500 rounded-full transition-all","style":{"width":"0%"}}]}]]}]]}]}]}]
|
||||||
|
16:["$","div","6",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":["$","div",null,{"data-slot":"card-content","className":"p-4","children":["$","div",null,{"className":"flex flex-col sm:flex-row sm:items-center gap-4","children":[["$","div",null,{"className":"flex-1","children":[["$","div",null,{"className":"flex items-center gap-2 flex-wrap","children":[["$","h3",null,{"className":"font-semibold","children":"Milestone Birthday Trip"}],["$","span",null,{"data-slot":"badge","data-variant":"default","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden [a&]:hover:bg-primary/90 bg-pink-500/10 text-pink-500","children":"family"}],["$","span",null,{"data-slot":"badge","data-variant":"default","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden [a&]:hover:bg-primary/90 bg-blue-500/10 text-blue-500","children":"planning"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground mt-1","children":["Deadline: ","2026"]}]]}],["$","div",null,{"className":"sm:w-48","children":[["$","div",null,{"className":"flex justify-between text-sm mb-1","children":[["$","span",null,{"className":"text-muted-foreground","children":"Progress"}],["$","span",null,{"className":"font-medium","children":[0,"/",1," ","trip"]}]]}],["$","div",null,{"className":"h-2 bg-secondary rounded-full overflow-hidden","children":["$","div",null,{"className":"h-full bg-gradient-to-r from-blue-500 to-purple-500 rounded-full transition-all","style":{"width":"0%"}}]}]]}]]}]}]}]
|
||||||
|
1b:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||||
|
1e:I[92064,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"IconMark"]
|
||||||
|
19:null
|
||||||
|
1d:[["$","title","0",{"children":"Mission Control | TopDogLabs"}],["$","meta","1",{"name":"description","content":"Central hub for activity, tasks, goals, and tools"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.0b3bf435.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L1e","3",{}]]
|
||||||
34
dist/mission/__next._full.txt
vendored
Normal file
34
dist/mission/__next._full.txt
vendored
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
1:"$Sreact.fragment"
|
||||||
|
2:I[96757,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"default"]
|
||||||
|
3:I[7805,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"default"]
|
||||||
|
4:I[89567,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/91b41192b4a98cf1.js"],"DashboardLayout"]
|
||||||
|
10:I[95111,[],"default"]
|
||||||
|
:HL["/_next/static/chunks/fa936e037dd092b4.css","style"]
|
||||||
|
:HL["/_next/static/media/797e433ab948586e-s.p.dbea232f.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||||
|
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||||
|
0:{"P":null,"b":"BaNBduHEWTzurUV8mpacN","c":["","mission"],"q":"","i":false,"f":[[["",{"children":["mission",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/fa936e037dd092b4.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]],["$","html",null,{"lang":"en","className":"dark","children":["$","body",null,{"className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable antialiased bg-background","children":["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L4",null,{"children":["$","div",null,{"className":"space-y-8","children":[["$","div",null,{"children":[["$","h1",null,{"className":"text-3xl font-bold tracking-tight","children":"The Mission"}],["$","p",null,{"className":"text-muted-foreground mt-1","children":"Your goals, values, and the path to freedom."}]]}],["$","div",null,{"data-slot":"card","className":"text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm bg-gradient-to-br from-blue-500/5 via-purple-500/5 to-pink-500/5 border-blue-500/20","children":["$","div",null,{"data-slot":"card-content","className":"p-6","children":[["$","h2",null,{"className":"text-xl font-bold mb-3","children":"The Mission"}],["$","p",null,{"className":"text-lg leading-relaxed text-muted-foreground","children":"Build a sustainable side hustle through iOS apps to achieve financial independence, travel with Heidi, take care of family, and retire on my own terms — all while staying healthy and having fun."}]]}]}],["$","div",null,{"className":"grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-4","children":[["$","div","Apps Built",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":[["$","div",null,{"data-slot":"card-header","className":"@container/card-header auto-rows-min grid-rows-[auto_auto] gap-2 px-6 has-data-[slot=card-action]:grid-cols-[1fr_auto] [.border-b]:pb-6 flex flex-row items-center justify-between pb-2","children":[["$","div",null,{"data-slot":"card-title","className":"text-sm font-medium text-muted-foreground","children":"Apps Built"}],["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-briefcase w-4 h-4 text-muted-foreground","aria-hidden":"true","children":[["$","path","jecpp",{"d":"M16 20V4a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16"}],["$","rect","i6l2r4",{"width":"20","height":"14","x":"2","y":"6","rx":"2"}],"$undefined"]}]]}],["$","div",null,{"data-slot":"card-content","className":"px-6","children":[["$","div",null,{"className":"text-2xl font-bold","children":"6"}],"$L5"]}]]}],"$L6","$L7","$L8"]}],"$L9","$La","$Lb"]}]}],["$Lc","$Ld"],"$Le"]}],{},null,false,false]},null,false,false]},null,false,false],"$Lf",false]],"m":"$undefined","G":["$10",[]],"S":true}
|
||||||
|
17:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"OutletBoundary"]
|
||||||
|
18:"$Sreact.suspense"
|
||||||
|
1a:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"ViewportBoundary"]
|
||||||
|
1c:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"MetadataBoundary"]
|
||||||
|
5:["$","p",null,{"className":"text-xs text-muted-foreground mt-1","children":"+6 since Dec 2024"}]
|
||||||
|
6:["$","div","Apps Live",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":[["$","div",null,{"data-slot":"card-header","className":"@container/card-header auto-rows-min grid-rows-[auto_auto] gap-2 px-6 has-data-[slot=card-action]:grid-cols-[1fr_auto] [.border-b]:pb-6 flex flex-row items-center justify-between pb-2","children":[["$","div",null,{"data-slot":"card-title","className":"text-sm font-medium text-muted-foreground","children":"Apps Live"}],["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-trending-up w-4 h-4 text-muted-foreground","aria-hidden":"true","children":[["$","path","box55l",{"d":"M16 7h6v6"}],["$","path","1t1m79",{"d":"m22 7-8.5 8.5-5-5L2 17"}],"$undefined"]}]]}],["$","div",null,{"data-slot":"card-content","className":"px-6","children":[["$","div",null,{"className":"text-2xl font-bold","children":"2"}],["$","p",null,{"className":"text-xs text-muted-foreground mt-1","children":"2 pending LLC"}]]}]]}]
|
||||||
|
7:["$","div","Contract Months Left",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":[["$","div",null,{"data-slot":"card-header","className":"@container/card-header auto-rows-min grid-rows-[auto_auto] gap-2 px-6 has-data-[slot=card-action]:grid-cols-[1fr_auto] [.border-b]:pb-6 flex flex-row items-center justify-between pb-2","children":[["$","div",null,{"data-slot":"card-title","className":"text-sm font-medium text-muted-foreground","children":"Contract Months Left"}],["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-dollar-sign w-4 h-4 text-muted-foreground","aria-hidden":"true","children":[["$","line","7eqyqh",{"x1":"12","x2":"12","y1":"2","y2":"22"}],["$","path","1b0p4s",{"d":"M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6"}],"$undefined"]}]]}],["$","div",null,{"data-slot":"card-content","className":"px-6","children":[["$","div",null,{"className":"text-2xl font-bold","children":"13"}],["$","p",null,{"className":"text-xs text-muted-foreground mt-1","children":"Renews Mar 2026"}]]}]]}]
|
||||||
|
8:["$","div","Morning Streak",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":[["$","div",null,{"data-slot":"card-header","className":"@container/card-header auto-rows-min grid-rows-[auto_auto] gap-2 px-6 has-data-[slot=card-action]:grid-cols-[1fr_auto] [.border-b]:pb-6 flex flex-row items-center justify-between pb-2","children":[["$","div",null,{"data-slot":"card-title","className":"text-sm font-medium text-muted-foreground","children":"Morning Streak"}],["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-target w-4 h-4 text-muted-foreground","aria-hidden":"true","children":[["$","circle","1mglay",{"cx":"12","cy":"12","r":"10"}],["$","circle","1vlfrh",{"cx":"12","cy":"12","r":"6"}],["$","circle","1c9p78",{"cx":"12","cy":"12","r":"2"}],"$undefined"]}]]}],["$","div",null,{"data-slot":"card-content","className":"px-6","children":[["$","div",null,{"className":"text-2xl font-bold","children":"7"}],["$","p",null,{"className":"text-xs text-muted-foreground mt-1","children":"days consistent"}]]}]]}]
|
||||||
|
9:["$","div",null,{"children":[["$","h2",null,{"className":"text-xl font-bold mb-4","children":"Core Values"}],["$","div",null,{"className":"grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-4","children":[["$","div","Family",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":["$","div",null,{"data-slot":"card-content","className":"p-4 text-center","children":[["$","div",null,{"className":"w-12 h-12 rounded-full bg-primary/10 flex items-center justify-center mx-auto mb-3","children":["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-heart w-6 h-6 text-primary","aria-hidden":"true","children":[["$","path","mvr1a0",{"d":"M2 9.5a5.5 5.5 0 0 1 9.591-3.676.56.56 0 0 0 .818 0A5.49 5.49 0 0 1 22 9.5c0 2.29-1.5 4-3 5.5l-5.492 5.313a2 2 0 0 1-3 .019L5 15c-1.5-1.5-3-3.2-3-5.5"}],"$undefined"]}]}],["$","h3",null,{"className":"font-semibold","children":"Family"}],["$","p",null,{"className":"text-sm text-muted-foreground mt-1","children":"Priority #1 — take care of loved ones"}]]}]}],["$","div","Health",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":["$","div",null,{"data-slot":"card-content","className":"p-4 text-center","children":[["$","div",null,{"className":"w-12 h-12 rounded-full bg-primary/10 flex items-center justify-center mx-auto mb-3","children":["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-target w-6 h-6 text-primary","aria-hidden":"true","children":[["$","circle","1mglay",{"cx":"12","cy":"12","r":"10"}],["$","circle","1vlfrh",{"cx":"12","cy":"12","r":"6"}],["$","circle","1c9p78",{"cx":"12","cy":"12","r":"2"}],"$undefined"]}]}],["$","h3",null,{"className":"font-semibold","children":"Health"}],["$","p",null,{"className":"text-sm text-muted-foreground mt-1","children":"Stay fit, strong, and mobile"}]]}]}],["$","div","Fun",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":["$","div",null,{"data-slot":"card-content","className":"p-4 text-center","children":[["$","div",null,{"className":"w-12 h-12 rounded-full bg-primary/10 flex items-center justify-center mx-auto mb-3","children":["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-trending-up w-6 h-6 text-primary","aria-hidden":"true","children":[["$","path","box55l",{"d":"M16 7h6v6"}],["$","path","1t1m79",{"d":"m22 7-8.5 8.5-5-5L2 17"}],"$undefined"]}]}],["$","h3",null,{"className":"font-semibold","children":"Fun"}],["$","p",null,{"className":"text-sm text-muted-foreground mt-1","children":"Enjoy the journey, not just the destination"}]]}]}],["$","div","Adventure",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":["$","div",null,{"data-slot":"card-content","className":"p-4 text-center","children":[["$","div",null,{"className":"w-12 h-12 rounded-full bg-primary/10 flex items-center justify-center mx-auto mb-3","children":["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-plane w-6 h-6 text-primary","aria-hidden":"true","children":[["$","path","1v9wt8",{"d":"M17.8 19.2 16 11l3.5-3.5C21 6 21.5 4 21 3c-1-.5-3 0-4.5 1.5L13 8 4.8 6.2c-.5-.1-.9.1-1.1.5l-.3.5c-.2.5-.1 1 .3 1.3L9 12l-2 3H4l-1 1 3 2 2 3 1-1v-3l3-2 3.5 5.3c.3.4.8.5 1.3.3l.5-.2c.4-.3.6-.7.5-1.2z"}],"$undefined"]}]}],["$","h3",null,{"className":"font-semibold","children":"Adventure"}],["$","p",null,{"className":"text-sm text-muted-foreground mt-1","children":"Travel and experience new things"}]]}]}]]}]]}]
|
||||||
|
a:["$","div",null,{"children":[["$","h2",null,{"className":"text-xl font-bold mb-4","children":"Goals"}],["$","div",null,{"className":"space-y-4","children":[["$","div","1",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":["$","div",null,{"data-slot":"card-content","className":"p-4","children":["$","div",null,{"className":"flex flex-col sm:flex-row sm:items-center gap-4","children":[["$","div",null,{"className":"flex-1","children":[["$","div",null,{"className":"flex items-center gap-2 flex-wrap","children":[["$","h3",null,{"className":"font-semibold","children":"Double Retirement Savings"}],["$","span",null,{"data-slot":"badge","data-variant":"default","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden [a&]:hover:bg-primary/90 bg-green-500/10 text-green-500","children":"financial"}],["$","span",null,{"data-slot":"badge","data-variant":"default","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden [a&]:hover:bg-primary/90 bg-yellow-500/10 text-yellow-500","children":"in-progress"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground mt-1","children":["Deadline: ","Ongoing"]}]]}],["$","div",null,{"className":"sm:w-48","children":[["$","div",null,{"className":"flex justify-between text-sm mb-1","children":[["$","span",null,{"className":"text-muted-foreground","children":"Progress"}],["$","span",null,{"className":"font-medium","children":[50,"/",100," ","%"]}]]}],["$","div",null,{"className":"h-2 bg-secondary rounded-full overflow-hidden","children":["$","div",null,{"className":"h-full bg-gradient-to-r from-blue-500 to-purple-500 rounded-full transition-all","style":{"width":"50%"}}]}]]}]]}]}]}],["$","div","2",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":["$","div",null,{"data-slot":"card-content","className":"p-4","children":["$","div",null,{"className":"flex flex-col sm:flex-row sm:items-center gap-4","children":[["$","div",null,{"className":"flex-1","children":[["$","div",null,{"className":"flex items-center gap-2 flex-wrap","children":[["$","h3",null,{"className":"font-semibold","children":"Build iOS App Empire"}],["$","span",null,{"data-slot":"badge","data-variant":"default","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden [a&]:hover:bg-primary/90 bg-blue-500/10 text-blue-500","children":"business"}],["$","span",null,{"data-slot":"badge","data-variant":"default","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden [a&]:hover:bg-primary/90 bg-yellow-500/10 text-yellow-500","children":"in-progress"}]]}],"$L11"]}],"$L12"]}]}]}],"$L13","$L14","$L15","$L16"]}]]}]
|
||||||
|
b:["$","div",null,{"data-slot":"card","className":"text-card-foreground flex flex-col gap-6 rounded-xl py-6 shadow-sm bg-gradient-to-r from-slate-800 to-slate-900 border-0","children":["$","div",null,{"data-slot":"card-content","className":"p-6 text-center","children":[["$","p",null,{"className":"text-lg italic text-slate-300","children":"\"53 is just the start of the best chapter.\""}],["$","p",null,{"className":"text-sm text-slate-500 mt-2","children":"— The Mission"}]]}]}]
|
||||||
|
c:["$","script","script-0",{"src":"/_next/static/chunks/05acb8b0bd6792f1.js","async":true,"nonce":"$undefined"}]
|
||||||
|
d:["$","script","script-1",{"src":"/_next/static/chunks/91b41192b4a98cf1.js","async":true,"nonce":"$undefined"}]
|
||||||
|
e:["$","$L17",null,{"children":["$","$18",null,{"name":"Next.MetadataOutlet","children":"$@19"}]}]
|
||||||
|
f:["$","$1","h",{"children":[null,["$","$L1a",null,{"children":"$L1b"}],["$","div",null,{"hidden":true,"children":["$","$L1c",null,{"children":["$","$18",null,{"name":"Next.Metadata","children":"$L1d"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}]
|
||||||
|
11:["$","p",null,{"className":"text-sm text-muted-foreground mt-1","children":["Deadline: ","2027"]}]
|
||||||
|
12:["$","div",null,{"className":"sm:w-48","children":[["$","div",null,{"className":"flex justify-between text-sm mb-1","children":[["$","span",null,{"className":"text-muted-foreground","children":"Progress"}],["$","span",null,{"className":"font-medium","children":[6,"/",20," ","apps"]}]]}],["$","div",null,{"className":"h-2 bg-secondary rounded-full overflow-hidden","children":["$","div",null,{"className":"h-full bg-gradient-to-r from-blue-500 to-purple-500 rounded-full transition-all","style":{"width":"30%"}}]}]]}]
|
||||||
|
13:["$","div","3",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":["$","div",null,{"data-slot":"card-content","className":"p-4","children":["$","div",null,{"className":"flex flex-col sm:flex-row sm:items-center gap-4","children":[["$","div",null,{"className":"flex-1","children":[["$","div",null,{"className":"flex items-center gap-2 flex-wrap","children":[["$","h3",null,{"className":"font-semibold","children":"Replace Contract Income"}],["$","span",null,{"data-slot":"badge","data-variant":"default","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden [a&]:hover:bg-primary/90 bg-green-500/10 text-green-500","children":"financial"}],["$","span",null,{"data-slot":"badge","data-variant":"default","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden [a&]:hover:bg-primary/90 bg-yellow-500/10 text-yellow-500","children":"in-progress"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground mt-1","children":["Deadline: ","2027"]}]]}],["$","div",null,{"className":"sm:w-48","children":[["$","div",null,{"className":"flex justify-between text-sm mb-1","children":[["$","span",null,{"className":"text-muted-foreground","children":"Progress"}],["$","span",null,{"className":"font-medium","children":[5,"/",100," ","%"]}]]}],["$","div",null,{"className":"h-2 bg-secondary rounded-full overflow-hidden","children":["$","div",null,{"className":"h-full bg-gradient-to-r from-blue-500 to-purple-500 rounded-full transition-all","style":{"width":"5%"}}]}]]}]]}]}]}]
|
||||||
|
14:["$","div","4",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":["$","div",null,{"data-slot":"card-content","className":"p-4","children":["$","div",null,{"className":"flex flex-col sm:flex-row sm:items-center gap-4","children":[["$","div",null,{"className":"flex-1","children":[["$","div",null,{"className":"flex items-center gap-2 flex-wrap","children":[["$","h3",null,{"className":"font-semibold","children":"Travel with Heidi"}],["$","span",null,{"data-slot":"badge","data-variant":"default","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden [a&]:hover:bg-primary/90 bg-purple-500/10 text-purple-500","children":"adventure"}],["$","span",null,{"data-slot":"badge","data-variant":"default","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden [a&]:hover:bg-primary/90 bg-gray-500/10 text-gray-500","children":"not-started"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground mt-1","children":["Deadline: ","2028"]}]]}],["$","div",null,{"className":"sm:w-48","children":[["$","div",null,{"className":"flex justify-between text-sm mb-1","children":[["$","span",null,{"className":"text-muted-foreground","children":"Progress"}],["$","span",null,{"className":"font-medium","children":[0,"/",10," ","countries"]}]]}],["$","div",null,{"className":"h-2 bg-secondary rounded-full overflow-hidden","children":["$","div",null,{"className":"h-full bg-gradient-to-r from-blue-500 to-purple-500 rounded-full transition-all","style":{"width":"0%"}}]}]]}]]}]}]}]
|
||||||
|
15:["$","div","5",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":["$","div",null,{"data-slot":"card-content","className":"p-4","children":["$","div",null,{"className":"flex flex-col sm:flex-row sm:items-center gap-4","children":[["$","div",null,{"className":"flex-1","children":[["$","div",null,{"className":"flex items-center gap-2 flex-wrap","children":[["$","h3",null,{"className":"font-semibold","children":"Family Trip with Mom"}],["$","span",null,{"data-slot":"badge","data-variant":"default","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden [a&]:hover:bg-primary/90 bg-pink-500/10 text-pink-500","children":"family"}],["$","span",null,{"data-slot":"badge","data-variant":"default","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden [a&]:hover:bg-primary/90 bg-blue-500/10 text-blue-500","children":"planning"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground mt-1","children":["Deadline: ","2026"]}]]}],["$","div",null,{"className":"sm:w-48","children":[["$","div",null,{"className":"flex justify-between text-sm mb-1","children":[["$","span",null,{"className":"text-muted-foreground","children":"Progress"}],["$","span",null,{"className":"font-medium","children":[0,"/",1," ","trip"]}]]}],["$","div",null,{"className":"h-2 bg-secondary rounded-full overflow-hidden","children":["$","div",null,{"className":"h-full bg-gradient-to-r from-blue-500 to-purple-500 rounded-full transition-all","style":{"width":"0%"}}]}]]}]]}]}]}]
|
||||||
|
16:["$","div","6",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":["$","div",null,{"data-slot":"card-content","className":"p-4","children":["$","div",null,{"className":"flex flex-col sm:flex-row sm:items-center gap-4","children":[["$","div",null,{"className":"flex-1","children":[["$","div",null,{"className":"flex items-center gap-2 flex-wrap","children":[["$","h3",null,{"className":"font-semibold","children":"Milestone Birthday Trip"}],["$","span",null,{"data-slot":"badge","data-variant":"default","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden [a&]:hover:bg-primary/90 bg-pink-500/10 text-pink-500","children":"family"}],["$","span",null,{"data-slot":"badge","data-variant":"default","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden [a&]:hover:bg-primary/90 bg-blue-500/10 text-blue-500","children":"planning"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground mt-1","children":["Deadline: ","2026"]}]]}],["$","div",null,{"className":"sm:w-48","children":[["$","div",null,{"className":"flex justify-between text-sm mb-1","children":[["$","span",null,{"className":"text-muted-foreground","children":"Progress"}],["$","span",null,{"className":"font-medium","children":[0,"/",1," ","trip"]}]]}],["$","div",null,{"className":"h-2 bg-secondary rounded-full overflow-hidden","children":["$","div",null,{"className":"h-full bg-gradient-to-r from-blue-500 to-purple-500 rounded-full transition-all","style":{"width":"0%"}}]}]]}]]}]}]}]
|
||||||
|
1b:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||||
|
1e:I[92064,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"IconMark"]
|
||||||
|
19:null
|
||||||
|
1d:[["$","title","0",{"children":"Mission Control | TopDogLabs"}],["$","meta","1",{"name":"description","content":"Central hub for activity, tasks, goals, and tools"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.0b3bf435.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L1e","3",{}]]
|
||||||
6
dist/mission/__next._head.txt
vendored
Normal file
6
dist/mission/__next._head.txt
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
1:"$Sreact.fragment"
|
||||||
|
2:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"ViewportBoundary"]
|
||||||
|
3:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"MetadataBoundary"]
|
||||||
|
4:"$Sreact.suspense"
|
||||||
|
5:I[92064,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"IconMark"]
|
||||||
|
0:{"buildId":"BaNBduHEWTzurUV8mpacN","rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Mission Control | TopDogLabs"}],["$","meta","1",{"name":"description","content":"Central hub for activity, tasks, goals, and tools"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.0b3bf435.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L5","3",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false}
|
||||||
5
dist/mission/__next._index.txt
vendored
Normal file
5
dist/mission/__next._index.txt
vendored
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
1:"$Sreact.fragment"
|
||||||
|
2:I[96757,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"default"]
|
||||||
|
3:I[7805,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"default"]
|
||||||
|
:HL["/_next/static/chunks/fa936e037dd092b4.css","style"]
|
||||||
|
0:{"buildId":"BaNBduHEWTzurUV8mpacN","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/fa936e037dd092b4.css","precedence":"next"}]],["$","html",null,{"lang":"en","className":"dark","children":["$","body",null,{"className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable antialiased bg-background","children":["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}]}]}]]}],"loading":null,"isPartial":false}
|
||||||
4
dist/mission/__next._tree.txt
vendored
Normal file
4
dist/mission/__next._tree.txt
vendored
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
:HL["/_next/static/chunks/fa936e037dd092b4.css","style"]
|
||||||
|
:HL["/_next/static/media/797e433ab948586e-s.p.dbea232f.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||||
|
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||||
|
0:{"buildId":"BaNBduHEWTzurUV8mpacN","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"mission","paramType":null,"paramKey":"mission","hasRuntimePrefetch":false,"slots":{"children":{"name":"__PAGE__","paramType":null,"paramKey":"__PAGE__","hasRuntimePrefetch":false,"slots":null,"isRootLayout":false}},"isRootLayout":false}},"isRootLayout":true},"staleTime":300}
|
||||||
21
dist/mission/__next.mission.__PAGE__.txt
vendored
Normal file
21
dist/mission/__next.mission.__PAGE__.txt
vendored
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
1:"$Sreact.fragment"
|
||||||
|
2:I[89567,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/91b41192b4a98cf1.js"],"DashboardLayout"]
|
||||||
|
12:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"OutletBoundary"]
|
||||||
|
13:"$Sreact.suspense"
|
||||||
|
0:{"buildId":"BaNBduHEWTzurUV8mpacN","rsc":["$","$1","c",{"children":[["$","$L2",null,{"children":["$","div",null,{"className":"space-y-8","children":[["$","div",null,{"children":[["$","h1",null,{"className":"text-3xl font-bold tracking-tight","children":"The Mission"}],["$","p",null,{"className":"text-muted-foreground mt-1","children":"Your goals, values, and the path to freedom."}]]}],["$","div",null,{"data-slot":"card","className":"text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm bg-gradient-to-br from-blue-500/5 via-purple-500/5 to-pink-500/5 border-blue-500/20","children":["$","div",null,{"data-slot":"card-content","className":"p-6","children":[["$","h2",null,{"className":"text-xl font-bold mb-3","children":"The Mission"}],["$","p",null,{"className":"text-lg leading-relaxed text-muted-foreground","children":"Build a sustainable side hustle through iOS apps to achieve financial independence, travel with Heidi, take care of family, and retire on my own terms — all while staying healthy and having fun."}]]}]}],["$","div",null,{"className":"grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-4","children":[["$","div","Apps Built",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":[["$","div",null,{"data-slot":"card-header","className":"@container/card-header auto-rows-min grid-rows-[auto_auto] gap-2 px-6 has-data-[slot=card-action]:grid-cols-[1fr_auto] [.border-b]:pb-6 flex flex-row items-center justify-between pb-2","children":[["$","div",null,{"data-slot":"card-title","className":"text-sm font-medium text-muted-foreground","children":"Apps Built"}],["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-briefcase w-4 h-4 text-muted-foreground","aria-hidden":"true","children":[["$","path","jecpp",{"d":"M16 20V4a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16"}],["$","rect","i6l2r4",{"width":"20","height":"14","x":"2","y":"6","rx":"2"}],"$undefined"]}]]}],["$","div",null,{"data-slot":"card-content","className":"px-6","children":[["$","div",null,{"className":"text-2xl font-bold","children":"6"}],["$","p",null,{"className":"text-xs text-muted-foreground mt-1","children":"+6 since Dec 2024"}]]}]]}],["$","div","Apps Live",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":[["$","div",null,{"data-slot":"card-header","className":"@container/card-header auto-rows-min grid-rows-[auto_auto] gap-2 px-6 has-data-[slot=card-action]:grid-cols-[1fr_auto] [.border-b]:pb-6 flex flex-row items-center justify-between pb-2","children":[["$","div",null,{"data-slot":"card-title","className":"text-sm font-medium text-muted-foreground","children":"Apps Live"}],["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-trending-up w-4 h-4 text-muted-foreground","aria-hidden":"true","children":[["$","path","box55l",{"d":"M16 7h6v6"}],["$","path","1t1m79",{"d":"m22 7-8.5 8.5-5-5L2 17"}],"$undefined"]}]]}],["$","div",null,{"data-slot":"card-content","className":"px-6","children":[["$","div",null,{"className":"text-2xl font-bold","children":"2"}],["$","p",null,{"className":"text-xs text-muted-foreground mt-1","children":"2 pending LLC"}]]}]]}],["$","div","Contract Months Left",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":[["$","div",null,{"data-slot":"card-header","className":"@container/card-header auto-rows-min grid-rows-[auto_auto] gap-2 px-6 has-data-[slot=card-action]:grid-cols-[1fr_auto] [.border-b]:pb-6 flex flex-row items-center justify-between pb-2","children":[["$","div",null,{"data-slot":"card-title","className":"text-sm font-medium text-muted-foreground","children":"Contract Months Left"}],"$L3"]}],"$L4"]}],"$L5"]}],"$L6","$L7","$L8"]}]}],["$L9","$La"],"$Lb"]}],"loading":null,"isPartial":false}
|
||||||
|
3:["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-dollar-sign w-4 h-4 text-muted-foreground","aria-hidden":"true","children":[["$","line","7eqyqh",{"x1":"12","x2":"12","y1":"2","y2":"22"}],["$","path","1b0p4s",{"d":"M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6"}],"$undefined"]}]
|
||||||
|
4:["$","div",null,{"data-slot":"card-content","className":"px-6","children":[["$","div",null,{"className":"text-2xl font-bold","children":"13"}],["$","p",null,{"className":"text-xs text-muted-foreground mt-1","children":"Renews Mar 2026"}]]}]
|
||||||
|
5:["$","div","Morning Streak",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":[["$","div",null,{"data-slot":"card-header","className":"@container/card-header auto-rows-min grid-rows-[auto_auto] gap-2 px-6 has-data-[slot=card-action]:grid-cols-[1fr_auto] [.border-b]:pb-6 flex flex-row items-center justify-between pb-2","children":[["$","div",null,{"data-slot":"card-title","className":"text-sm font-medium text-muted-foreground","children":"Morning Streak"}],["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-target w-4 h-4 text-muted-foreground","aria-hidden":"true","children":[["$","circle","1mglay",{"cx":"12","cy":"12","r":"10"}],["$","circle","1vlfrh",{"cx":"12","cy":"12","r":"6"}],["$","circle","1c9p78",{"cx":"12","cy":"12","r":"2"}],"$undefined"]}]]}],["$","div",null,{"data-slot":"card-content","className":"px-6","children":[["$","div",null,{"className":"text-2xl font-bold","children":"7"}],["$","p",null,{"className":"text-xs text-muted-foreground mt-1","children":"days consistent"}]]}]]}]
|
||||||
|
6:["$","div",null,{"children":[["$","h2",null,{"className":"text-xl font-bold mb-4","children":"Core Values"}],["$","div",null,{"className":"grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-4","children":[["$","div","Family",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":["$","div",null,{"data-slot":"card-content","className":"p-4 text-center","children":[["$","div",null,{"className":"w-12 h-12 rounded-full bg-primary/10 flex items-center justify-center mx-auto mb-3","children":["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-heart w-6 h-6 text-primary","aria-hidden":"true","children":[["$","path","mvr1a0",{"d":"M2 9.5a5.5 5.5 0 0 1 9.591-3.676.56.56 0 0 0 .818 0A5.49 5.49 0 0 1 22 9.5c0 2.29-1.5 4-3 5.5l-5.492 5.313a2 2 0 0 1-3 .019L5 15c-1.5-1.5-3-3.2-3-5.5"}],"$undefined"]}]}],["$","h3",null,{"className":"font-semibold","children":"Family"}],["$","p",null,{"className":"text-sm text-muted-foreground mt-1","children":"Priority #1 — take care of loved ones"}]]}]}],["$","div","Health",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":["$","div",null,{"data-slot":"card-content","className":"p-4 text-center","children":[["$","div",null,{"className":"w-12 h-12 rounded-full bg-primary/10 flex items-center justify-center mx-auto mb-3","children":["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-target w-6 h-6 text-primary","aria-hidden":"true","children":[["$","circle","1mglay",{"cx":"12","cy":"12","r":"10"}],["$","circle","1vlfrh",{"cx":"12","cy":"12","r":"6"}],["$","circle","1c9p78",{"cx":"12","cy":"12","r":"2"}],"$undefined"]}]}],["$","h3",null,{"className":"font-semibold","children":"Health"}],["$","p",null,{"className":"text-sm text-muted-foreground mt-1","children":"Stay fit, strong, and mobile"}]]}]}],["$","div","Fun",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":["$","div",null,{"data-slot":"card-content","className":"p-4 text-center","children":[["$","div",null,{"className":"w-12 h-12 rounded-full bg-primary/10 flex items-center justify-center mx-auto mb-3","children":["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-trending-up w-6 h-6 text-primary","aria-hidden":"true","children":[["$","path","box55l",{"d":"M16 7h6v6"}],["$","path","1t1m79",{"d":"m22 7-8.5 8.5-5-5L2 17"}],"$undefined"]}]}],["$","h3",null,{"className":"font-semibold","children":"Fun"}],["$","p",null,{"className":"text-sm text-muted-foreground mt-1","children":"Enjoy the journey, not just the destination"}]]}]}],["$","div","Adventure",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":["$","div",null,{"data-slot":"card-content","className":"p-4 text-center","children":[["$","div",null,{"className":"w-12 h-12 rounded-full bg-primary/10 flex items-center justify-center mx-auto mb-3","children":["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-plane w-6 h-6 text-primary","aria-hidden":"true","children":[["$","path","1v9wt8",{"d":"M17.8 19.2 16 11l3.5-3.5C21 6 21.5 4 21 3c-1-.5-3 0-4.5 1.5L13 8 4.8 6.2c-.5-.1-.9.1-1.1.5l-.3.5c-.2.5-.1 1 .3 1.3L9 12l-2 3H4l-1 1 3 2 2 3 1-1v-3l3-2 3.5 5.3c.3.4.8.5 1.3.3l.5-.2c.4-.3.6-.7.5-1.2z"}],"$undefined"]}]}],["$","h3",null,{"className":"font-semibold","children":"Adventure"}],["$","p",null,{"className":"text-sm text-muted-foreground mt-1","children":"Travel and experience new things"}]]}]}]]}]]}]
|
||||||
|
7:["$","div",null,{"children":[["$","h2",null,{"className":"text-xl font-bold mb-4","children":"Goals"}],["$","div",null,{"className":"space-y-4","children":[["$","div","1",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":["$","div",null,{"data-slot":"card-content","className":"p-4","children":["$","div",null,{"className":"flex flex-col sm:flex-row sm:items-center gap-4","children":[["$","div",null,{"className":"flex-1","children":[["$","div",null,{"className":"flex items-center gap-2 flex-wrap","children":[["$","h3",null,{"className":"font-semibold","children":"Double Retirement Savings"}],["$","span",null,{"data-slot":"badge","data-variant":"default","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden [a&]:hover:bg-primary/90 bg-green-500/10 text-green-500","children":"financial"}],["$","span",null,{"data-slot":"badge","data-variant":"default","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden [a&]:hover:bg-primary/90 bg-yellow-500/10 text-yellow-500","children":"in-progress"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground mt-1","children":["Deadline: ","Ongoing"]}]]}],["$","div",null,{"className":"sm:w-48","children":[["$","div",null,{"className":"flex justify-between text-sm mb-1","children":[["$","span",null,{"className":"text-muted-foreground","children":"Progress"}],["$","span",null,{"className":"font-medium","children":[50,"/",100," ","%"]}]]}],["$","div",null,{"className":"h-2 bg-secondary rounded-full overflow-hidden","children":["$","div",null,{"className":"h-full bg-gradient-to-r from-blue-500 to-purple-500 rounded-full transition-all","style":{"width":"50%"}}]}]]}]]}]}]}],["$","div","2",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":["$","div",null,{"data-slot":"card-content","className":"p-4","children":["$","div",null,{"className":"flex flex-col sm:flex-row sm:items-center gap-4","children":[["$","div",null,{"className":"flex-1","children":[["$","div",null,{"className":"flex items-center gap-2 flex-wrap","children":[["$","h3",null,{"className":"font-semibold","children":"Build iOS App Empire"}],["$","span",null,{"data-slot":"badge","data-variant":"default","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden [a&]:hover:bg-primary/90 bg-blue-500/10 text-blue-500","children":"business"}],["$","span",null,{"data-slot":"badge","data-variant":"default","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden [a&]:hover:bg-primary/90 bg-yellow-500/10 text-yellow-500","children":"in-progress"}]]}],"$Lc"]}],"$Ld"]}]}]}],"$Le","$Lf","$L10","$L11"]}]]}]
|
||||||
|
8:["$","div",null,{"data-slot":"card","className":"text-card-foreground flex flex-col gap-6 rounded-xl py-6 shadow-sm bg-gradient-to-r from-slate-800 to-slate-900 border-0","children":["$","div",null,{"data-slot":"card-content","className":"p-6 text-center","children":[["$","p",null,{"className":"text-lg italic text-slate-300","children":"\"53 is just the start of the best chapter.\""}],["$","p",null,{"className":"text-sm text-slate-500 mt-2","children":"— The Mission"}]]}]}]
|
||||||
|
9:["$","script","script-0",{"src":"/_next/static/chunks/05acb8b0bd6792f1.js","async":true}]
|
||||||
|
a:["$","script","script-1",{"src":"/_next/static/chunks/91b41192b4a98cf1.js","async":true}]
|
||||||
|
b:["$","$L12",null,{"children":["$","$13",null,{"name":"Next.MetadataOutlet","children":"$@14"}]}]
|
||||||
|
c:["$","p",null,{"className":"text-sm text-muted-foreground mt-1","children":["Deadline: ","2027"]}]
|
||||||
|
d:["$","div",null,{"className":"sm:w-48","children":[["$","div",null,{"className":"flex justify-between text-sm mb-1","children":[["$","span",null,{"className":"text-muted-foreground","children":"Progress"}],["$","span",null,{"className":"font-medium","children":[6,"/",20," ","apps"]}]]}],["$","div",null,{"className":"h-2 bg-secondary rounded-full overflow-hidden","children":["$","div",null,{"className":"h-full bg-gradient-to-r from-blue-500 to-purple-500 rounded-full transition-all","style":{"width":"30%"}}]}]]}]
|
||||||
|
e:["$","div","3",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":["$","div",null,{"data-slot":"card-content","className":"p-4","children":["$","div",null,{"className":"flex flex-col sm:flex-row sm:items-center gap-4","children":[["$","div",null,{"className":"flex-1","children":[["$","div",null,{"className":"flex items-center gap-2 flex-wrap","children":[["$","h3",null,{"className":"font-semibold","children":"Replace Contract Income"}],["$","span",null,{"data-slot":"badge","data-variant":"default","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden [a&]:hover:bg-primary/90 bg-green-500/10 text-green-500","children":"financial"}],["$","span",null,{"data-slot":"badge","data-variant":"default","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden [a&]:hover:bg-primary/90 bg-yellow-500/10 text-yellow-500","children":"in-progress"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground mt-1","children":["Deadline: ","2027"]}]]}],["$","div",null,{"className":"sm:w-48","children":[["$","div",null,{"className":"flex justify-between text-sm mb-1","children":[["$","span",null,{"className":"text-muted-foreground","children":"Progress"}],["$","span",null,{"className":"font-medium","children":[5,"/",100," ","%"]}]]}],["$","div",null,{"className":"h-2 bg-secondary rounded-full overflow-hidden","children":["$","div",null,{"className":"h-full bg-gradient-to-r from-blue-500 to-purple-500 rounded-full transition-all","style":{"width":"5%"}}]}]]}]]}]}]}]
|
||||||
|
f:["$","div","4",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":["$","div",null,{"data-slot":"card-content","className":"p-4","children":["$","div",null,{"className":"flex flex-col sm:flex-row sm:items-center gap-4","children":[["$","div",null,{"className":"flex-1","children":[["$","div",null,{"className":"flex items-center gap-2 flex-wrap","children":[["$","h3",null,{"className":"font-semibold","children":"Travel with Heidi"}],["$","span",null,{"data-slot":"badge","data-variant":"default","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden [a&]:hover:bg-primary/90 bg-purple-500/10 text-purple-500","children":"adventure"}],["$","span",null,{"data-slot":"badge","data-variant":"default","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden [a&]:hover:bg-primary/90 bg-gray-500/10 text-gray-500","children":"not-started"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground mt-1","children":["Deadline: ","2028"]}]]}],["$","div",null,{"className":"sm:w-48","children":[["$","div",null,{"className":"flex justify-between text-sm mb-1","children":[["$","span",null,{"className":"text-muted-foreground","children":"Progress"}],["$","span",null,{"className":"font-medium","children":[0,"/",10," ","countries"]}]]}],["$","div",null,{"className":"h-2 bg-secondary rounded-full overflow-hidden","children":["$","div",null,{"className":"h-full bg-gradient-to-r from-blue-500 to-purple-500 rounded-full transition-all","style":{"width":"0%"}}]}]]}]]}]}]}]
|
||||||
|
10:["$","div","5",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":["$","div",null,{"data-slot":"card-content","className":"p-4","children":["$","div",null,{"className":"flex flex-col sm:flex-row sm:items-center gap-4","children":[["$","div",null,{"className":"flex-1","children":[["$","div",null,{"className":"flex items-center gap-2 flex-wrap","children":[["$","h3",null,{"className":"font-semibold","children":"Family Trip with Mom"}],["$","span",null,{"data-slot":"badge","data-variant":"default","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden [a&]:hover:bg-primary/90 bg-pink-500/10 text-pink-500","children":"family"}],["$","span",null,{"data-slot":"badge","data-variant":"default","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden [a&]:hover:bg-primary/90 bg-blue-500/10 text-blue-500","children":"planning"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground mt-1","children":["Deadline: ","2026"]}]]}],["$","div",null,{"className":"sm:w-48","children":[["$","div",null,{"className":"flex justify-between text-sm mb-1","children":[["$","span",null,{"className":"text-muted-foreground","children":"Progress"}],["$","span",null,{"className":"font-medium","children":[0,"/",1," ","trip"]}]]}],["$","div",null,{"className":"h-2 bg-secondary rounded-full overflow-hidden","children":["$","div",null,{"className":"h-full bg-gradient-to-r from-blue-500 to-purple-500 rounded-full transition-all","style":{"width":"0%"}}]}]]}]]}]}]}]
|
||||||
|
11:["$","div","6",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm","children":["$","div",null,{"data-slot":"card-content","className":"p-4","children":["$","div",null,{"className":"flex flex-col sm:flex-row sm:items-center gap-4","children":[["$","div",null,{"className":"flex-1","children":[["$","div",null,{"className":"flex items-center gap-2 flex-wrap","children":[["$","h3",null,{"className":"font-semibold","children":"Milestone Birthday Trip"}],["$","span",null,{"data-slot":"badge","data-variant":"default","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden [a&]:hover:bg-primary/90 bg-pink-500/10 text-pink-500","children":"family"}],["$","span",null,{"data-slot":"badge","data-variant":"default","className":"inline-flex items-center justify-center rounded-full border border-transparent px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden [a&]:hover:bg-primary/90 bg-blue-500/10 text-blue-500","children":"planning"}]]}],["$","p",null,{"className":"text-sm text-muted-foreground mt-1","children":["Deadline: ","2026"]}]]}],["$","div",null,{"className":"sm:w-48","children":[["$","div",null,{"className":"flex justify-between text-sm mb-1","children":[["$","span",null,{"className":"text-muted-foreground","children":"Progress"}],["$","span",null,{"className":"font-medium","children":[0,"/",1," ","trip"]}]]}],["$","div",null,{"className":"h-2 bg-secondary rounded-full overflow-hidden","children":["$","div",null,{"className":"h-full bg-gradient-to-r from-blue-500 to-purple-500 rounded-full transition-all","style":{"width":"0%"}}]}]]}]]}]}]}]
|
||||||
|
14:null
|
||||||
4
dist/mission/__next.mission.txt
vendored
Normal file
4
dist/mission/__next.mission.txt
vendored
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
1:"$Sreact.fragment"
|
||||||
|
2:I[96757,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"default"]
|
||||||
|
3:I[7805,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"default"]
|
||||||
|
0:{"buildId":"BaNBduHEWTzurUV8mpacN","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
|
||||||
1
dist/next.svg
vendored
Normal file
1
dist/next.svg
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 394 80"><path fill="#000" d="M262 0h68.5v12.7h-27.2v66.6h-13.6V12.7H262V0ZM149 0v12.7H94v20.4h44.3v12.6H94v21h55v12.6H80.5V0h68.7zm34.3 0h-17.8l63.8 79.4h17.9l-32-39.7 32-39.6h-17.9l-23 28.6-23-28.6zm18.3 56.7-9-11-27.1 33.7h17.8l18.3-22.7z"/><path fill="#000" d="M81 79.3 17 0H0v79.3h13.6V17l50.2 62.3H81Zm252.6-.4c-1 0-1.8-.4-2.5-1s-1.1-1.6-1.1-2.6.3-1.8 1-2.5 1.6-1 2.6-1 1.8.3 2.5 1a3.4 3.4 0 0 1 .6 4.3 3.7 3.7 0 0 1-3 1.8zm23.2-33.5h6v23.3c0 2.1-.4 4-1.3 5.5a9.1 9.1 0 0 1-3.8 3.5c-1.6.8-3.5 1.3-5.7 1.3-2 0-3.7-.4-5.3-1s-2.8-1.8-3.7-3.2c-.9-1.3-1.4-3-1.4-5h6c.1.8.3 1.6.7 2.2s1 1.2 1.6 1.5c.7.4 1.5.5 2.4.5 1 0 1.8-.2 2.4-.6a4 4 0 0 0 1.6-1.8c.3-.8.5-1.8.5-3V45.5zm30.9 9.1a4.4 4.4 0 0 0-2-3.3 7.5 7.5 0 0 0-4.3-1.1c-1.3 0-2.4.2-3.3.5-.9.4-1.6 1-2 1.6a3.5 3.5 0 0 0-.3 4c.3.5.7.9 1.3 1.2l1.8 1 2 .5 3.2.8c1.3.3 2.5.7 3.7 1.2a13 13 0 0 1 3.2 1.8 8.1 8.1 0 0 1 3 6.5c0 2-.5 3.7-1.5 5.1a10 10 0 0 1-4.4 3.5c-1.8.8-4.1 1.2-6.8 1.2-2.6 0-4.9-.4-6.8-1.2-2-.8-3.4-2-4.5-3.5a10 10 0 0 1-1.7-5.6h6a5 5 0 0 0 3.5 4.6c1 .4 2.2.6 3.4.6 1.3 0 2.5-.2 3.5-.6 1-.4 1.8-1 2.4-1.7a4 4 0 0 0 .8-2.4c0-.9-.2-1.6-.7-2.2a11 11 0 0 0-2.1-1.4l-3.2-1-3.8-1c-2.8-.7-5-1.7-6.6-3.2a7.2 7.2 0 0 1-2.4-5.7 8 8 0 0 1 1.7-5 10 10 0 0 1 4.3-3.5c2-.8 4-1.2 6.4-1.2 2.3 0 4.4.4 6.2 1.2 1.8.8 3.2 2 4.3 3.4 1 1.4 1.5 3 1.5 5h-5.8z"/></svg>
|
||||||
|
After Width: | Height: | Size: 1.3 KiB |
1
dist/tasks.html
vendored
Normal file
1
dist/tasks.html
vendored
Normal file
File diff suppressed because one or more lines are too long
35
dist/tasks.txt
vendored
Normal file
35
dist/tasks.txt
vendored
Normal file
File diff suppressed because one or more lines are too long
35
dist/tasks/__next._full.txt
vendored
Normal file
35
dist/tasks/__next._full.txt
vendored
Normal file
File diff suppressed because one or more lines are too long
6
dist/tasks/__next._head.txt
vendored
Normal file
6
dist/tasks/__next._head.txt
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
1:"$Sreact.fragment"
|
||||||
|
2:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"ViewportBoundary"]
|
||||||
|
3:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"MetadataBoundary"]
|
||||||
|
4:"$Sreact.suspense"
|
||||||
|
5:I[92064,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"IconMark"]
|
||||||
|
0:{"buildId":"BaNBduHEWTzurUV8mpacN","rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Mission Control | TopDogLabs"}],["$","meta","1",{"name":"description","content":"Central hub for activity, tasks, goals, and tools"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.0b3bf435.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L5","3",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false}
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user