feat: merge Gantt Board into Mission Control
- Add Projects page with Sprint Board and Backlog views - Copy SprintBoard and BacklogView components to components/gantt/ - Copy useTaskStore for project/task/sprint management - Add API routes for task persistence with SQLite - Add UI components: dialog, select, table, textarea - Add avatar and attachment utilities - Update sidebar with Projects navigation link - Remove static export config to support API routes - Add dist to .gitignore
This commit is contained in:
parent
15735e8274
commit
c1c01bd21e
1
.gitignore
vendored
1
.gitignore
vendored
@ -16,6 +16,7 @@
|
|||||||
# next.js
|
# next.js
|
||||||
/.next/
|
/.next/
|
||||||
/out/
|
/out/
|
||||||
|
/dist/
|
||||||
|
|
||||||
# production
|
# production
|
||||||
/build
|
/build
|
||||||
|
|||||||
115
app/api/tasks/route.ts
Normal file
115
app/api/tasks/route.ts
Normal file
@ -0,0 +1,115 @@
|
|||||||
|
import { NextResponse } from "next/server";
|
||||||
|
import { getData, saveData, type DataStore, type Task } from "@/lib/server/taskDb";
|
||||||
|
import { getAuthenticatedUser } from "@/lib/server/auth";
|
||||||
|
|
||||||
|
export const runtime = "nodejs";
|
||||||
|
|
||||||
|
// GET - fetch all tasks, projects, and sprints
|
||||||
|
export async function GET() {
|
||||||
|
try {
|
||||||
|
const user = await getAuthenticatedUser();
|
||||||
|
if (!user) {
|
||||||
|
return NextResponse.json({ error: "Unauthorized" }, { status: 401 });
|
||||||
|
}
|
||||||
|
const data = getData();
|
||||||
|
return NextResponse.json(data);
|
||||||
|
} catch (error) {
|
||||||
|
console.error(">>> API GET: database error:", error);
|
||||||
|
return NextResponse.json({ error: "Failed to fetch data" }, { status: 500 });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// POST - create or update tasks, projects, or sprints
|
||||||
|
export async function POST(request: Request) {
|
||||||
|
try {
|
||||||
|
const user = await getAuthenticatedUser();
|
||||||
|
if (!user) {
|
||||||
|
return NextResponse.json({ error: "Unauthorized" }, { status: 401 });
|
||||||
|
}
|
||||||
|
|
||||||
|
const body = await request.json();
|
||||||
|
const { task, tasks, projects, sprints } = body as {
|
||||||
|
task?: Task;
|
||||||
|
tasks?: Task[];
|
||||||
|
projects?: DataStore["projects"];
|
||||||
|
sprints?: DataStore["sprints"];
|
||||||
|
};
|
||||||
|
|
||||||
|
const data = getData();
|
||||||
|
|
||||||
|
if (projects) data.projects = projects;
|
||||||
|
if (sprints) data.sprints = sprints;
|
||||||
|
|
||||||
|
if (task) {
|
||||||
|
const existingIndex = data.tasks.findIndex((t) => t.id === task.id);
|
||||||
|
if (existingIndex >= 0) {
|
||||||
|
const existingTask = data.tasks[existingIndex];
|
||||||
|
data.tasks[existingIndex] = {
|
||||||
|
...existingTask,
|
||||||
|
...task,
|
||||||
|
updatedAt: new Date().toISOString(),
|
||||||
|
updatedById: user.id,
|
||||||
|
updatedByName: user.name,
|
||||||
|
updatedByAvatarUrl: user.avatarUrl,
|
||||||
|
};
|
||||||
|
} else {
|
||||||
|
data.tasks.push({
|
||||||
|
...task,
|
||||||
|
id: task.id || Date.now().toString(),
|
||||||
|
createdAt: new Date().toISOString(),
|
||||||
|
updatedAt: new Date().toISOString(),
|
||||||
|
createdById: task.createdById || user.id,
|
||||||
|
createdByName: task.createdByName || user.name,
|
||||||
|
createdByAvatarUrl: task.createdByAvatarUrl || user.avatarUrl,
|
||||||
|
updatedById: user.id,
|
||||||
|
updatedByName: user.name,
|
||||||
|
updatedByAvatarUrl: user.avatarUrl,
|
||||||
|
assigneeId: task.assigneeId || user.id,
|
||||||
|
assigneeName: task.assigneeName || user.name,
|
||||||
|
assigneeEmail: task.assigneeEmail || user.email,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (tasks && Array.isArray(tasks)) {
|
||||||
|
data.tasks = tasks.map((entry) => ({
|
||||||
|
...entry,
|
||||||
|
createdById: entry.createdById || user.id,
|
||||||
|
createdByName: entry.createdByName || user.name,
|
||||||
|
createdByAvatarUrl: entry.createdByAvatarUrl || (entry.createdById === user.id ? user.avatarUrl : undefined),
|
||||||
|
updatedById: entry.updatedById || user.id,
|
||||||
|
updatedByName: entry.updatedByName || user.name,
|
||||||
|
updatedByAvatarUrl: entry.updatedByAvatarUrl || (entry.updatedById === user.id ? user.avatarUrl : undefined),
|
||||||
|
assigneeId: entry.assigneeId || undefined,
|
||||||
|
assigneeName: entry.assigneeName || undefined,
|
||||||
|
assigneeEmail: entry.assigneeEmail || undefined,
|
||||||
|
assigneeAvatarUrl: undefined,
|
||||||
|
}));
|
||||||
|
}
|
||||||
|
|
||||||
|
const saved = saveData(data);
|
||||||
|
return NextResponse.json({ success: true, data: saved });
|
||||||
|
} catch (error) {
|
||||||
|
console.error(">>> API POST: database error:", error);
|
||||||
|
return NextResponse.json({ error: "Failed to save" }, { status: 500 });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// DELETE - remove a task
|
||||||
|
export async function DELETE(request: Request) {
|
||||||
|
try {
|
||||||
|
const user = await getAuthenticatedUser();
|
||||||
|
if (!user) {
|
||||||
|
return NextResponse.json({ error: "Unauthorized" }, { status: 401 });
|
||||||
|
}
|
||||||
|
|
||||||
|
const { id } = (await request.json()) as { id: string };
|
||||||
|
const data = getData();
|
||||||
|
data.tasks = data.tasks.filter((t) => t.id !== id);
|
||||||
|
saveData(data);
|
||||||
|
return NextResponse.json({ success: true });
|
||||||
|
} catch (error) {
|
||||||
|
console.error(">>> API DELETE: database error:", error);
|
||||||
|
return NextResponse.json({ error: "Failed to delete" }, { status: 500 });
|
||||||
|
}
|
||||||
|
}
|
||||||
229
app/projects/page.tsx
Normal file
229
app/projects/page.tsx
Normal file
@ -0,0 +1,229 @@
|
|||||||
|
"use client"
|
||||||
|
|
||||||
|
import { useState, useEffect } from "react"
|
||||||
|
import { DashboardLayout } from "@/components/layout/sidebar"
|
||||||
|
import { Button } from "@/components/ui/button"
|
||||||
|
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"
|
||||||
|
import { Badge } from "@/components/ui/badge"
|
||||||
|
import { Tabs, TabsContent, TabsList, TabsTrigger } from "@/components/ui/tabs"
|
||||||
|
import { SprintBoard } from "@/components/gantt/SprintBoard"
|
||||||
|
import { BacklogView } from "@/components/gantt/BacklogView"
|
||||||
|
import { useTaskStore } from "@/stores/useTaskStore"
|
||||||
|
import {
|
||||||
|
Plus,
|
||||||
|
LayoutGrid,
|
||||||
|
ListTodo,
|
||||||
|
Calendar,
|
||||||
|
FolderKanban,
|
||||||
|
Target,
|
||||||
|
CheckCircle2,
|
||||||
|
Clock
|
||||||
|
} from "lucide-react"
|
||||||
|
import Link from "next/link"
|
||||||
|
|
||||||
|
export default function ProjectsPage() {
|
||||||
|
const [activeTab, setActiveTab] = useState("board")
|
||||||
|
const [mounted, setMounted] = useState(false)
|
||||||
|
|
||||||
|
const {
|
||||||
|
tasks,
|
||||||
|
sprints,
|
||||||
|
projects,
|
||||||
|
selectedProjectId,
|
||||||
|
selectedSprintId,
|
||||||
|
currentUser,
|
||||||
|
syncFromServer,
|
||||||
|
isLoading
|
||||||
|
} = useTaskStore()
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
setMounted(true)
|
||||||
|
syncFromServer()
|
||||||
|
}, [syncFromServer])
|
||||||
|
|
||||||
|
// Calculate stats
|
||||||
|
const activeSprint = sprints.find(s => s.status === "active")
|
||||||
|
const activeSprintTasks = activeSprint
|
||||||
|
? tasks.filter(t => t.sprintId === activeSprint.id)
|
||||||
|
: []
|
||||||
|
const completedTasks = activeSprintTasks.filter(t => t.status === "done").length
|
||||||
|
const totalTasks = activeSprintTasks.length
|
||||||
|
const completionRate = totalTasks > 0 ? Math.round((completedTasks / totalTasks) * 100) : 0
|
||||||
|
|
||||||
|
if (!mounted) {
|
||||||
|
return (
|
||||||
|
<DashboardLayout>
|
||||||
|
<div className="flex items-center justify-center h-64">
|
||||||
|
<div className="animate-spin h-8 w-8 border-2 border-primary border-t-transparent rounded-full" />
|
||||||
|
</div>
|
||||||
|
</DashboardLayout>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<DashboardLayout>
|
||||||
|
<div className="space-y-6">
|
||||||
|
{/* Header */}
|
||||||
|
<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">Projects</h1>
|
||||||
|
<p className="text-muted-foreground mt-1">
|
||||||
|
Sprint planning and project management
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<div className="flex items-center gap-2">
|
||||||
|
<Link href="/tasks">
|
||||||
|
<Button variant="outline" size="sm">
|
||||||
|
<CheckCircle2 className="w-4 h-4 mr-2" />
|
||||||
|
Daily Tasks
|
||||||
|
</Button>
|
||||||
|
</Link>
|
||||||
|
<Button size="sm">
|
||||||
|
<Plus className="w-4 h-4 mr-2" />
|
||||||
|
New Sprint
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Stats Cards */}
|
||||||
|
<div className="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-4">
|
||||||
|
<Card>
|
||||||
|
<CardHeader className="flex flex-row items-center justify-between pb-2">
|
||||||
|
<CardTitle className="text-sm font-medium text-muted-foreground">
|
||||||
|
Active Sprint
|
||||||
|
</CardTitle>
|
||||||
|
<Target className="w-4 h-4 text-muted-foreground" />
|
||||||
|
</CardHeader>
|
||||||
|
<CardContent>
|
||||||
|
<div className="text-2xl font-bold">
|
||||||
|
{activeSprint?.name || "No Active Sprint"}
|
||||||
|
</div>
|
||||||
|
<p className="text-xs text-muted-foreground mt-1">
|
||||||
|
{activeSprint
|
||||||
|
? `${new Date(activeSprint.startDate).toLocaleDateString()} - ${new Date(activeSprint.endDate).toLocaleDateString()}`
|
||||||
|
: "Create a sprint to get started"
|
||||||
|
}
|
||||||
|
</p>
|
||||||
|
</CardContent>
|
||||||
|
</Card>
|
||||||
|
|
||||||
|
<Card>
|
||||||
|
<CardHeader className="flex flex-row items-center justify-between pb-2">
|
||||||
|
<CardTitle className="text-sm font-medium text-muted-foreground">
|
||||||
|
Sprint Progress
|
||||||
|
</CardTitle>
|
||||||
|
<CheckCircle2 className="w-4 h-4 text-muted-foreground" />
|
||||||
|
</CardHeader>
|
||||||
|
<CardContent>
|
||||||
|
<div className="text-2xl font-bold">{completionRate}%</div>
|
||||||
|
<div className="h-2 bg-secondary rounded-full overflow-hidden mt-2">
|
||||||
|
<div
|
||||||
|
className="h-full bg-primary rounded-full transition-all"
|
||||||
|
style={{ width: `${completionRate}%` }}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<p className="text-xs text-muted-foreground mt-1">
|
||||||
|
{completedTasks} of {totalTasks} tasks completed
|
||||||
|
</p>
|
||||||
|
</CardContent>
|
||||||
|
</Card>
|
||||||
|
|
||||||
|
<Card>
|
||||||
|
<CardHeader className="flex flex-row items-center justify-between pb-2">
|
||||||
|
<CardTitle className="text-sm font-medium text-muted-foreground">
|
||||||
|
Total Projects
|
||||||
|
</CardTitle>
|
||||||
|
<FolderKanban className="w-4 h-4 text-muted-foreground" />
|
||||||
|
</CardHeader>
|
||||||
|
<CardContent>
|
||||||
|
<div className="text-2xl font-bold">{projects.length}</div>
|
||||||
|
<p className="text-xs text-muted-foreground mt-1">
|
||||||
|
{tasks.length} total tasks across all projects
|
||||||
|
</p>
|
||||||
|
</CardContent>
|
||||||
|
</Card>
|
||||||
|
|
||||||
|
<Card>
|
||||||
|
<CardHeader className="flex flex-row items-center justify-between pb-2">
|
||||||
|
<CardTitle className="text-sm font-medium text-muted-foreground">
|
||||||
|
Sprints
|
||||||
|
</CardTitle>
|
||||||
|
<Clock className="w-4 h-4 text-muted-foreground" />
|
||||||
|
</CardHeader>
|
||||||
|
<CardContent>
|
||||||
|
<div className="text-2xl font-bold">{sprints.length}</div>
|
||||||
|
<p className="text-xs text-muted-foreground mt-1">
|
||||||
|
{sprints.filter(s => s.status === "active").length} active, {sprints.filter(s => s.status === "planning").length} planning
|
||||||
|
</p>
|
||||||
|
</CardContent>
|
||||||
|
</Card>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Main Content Tabs */}
|
||||||
|
<Tabs value={activeTab} onValueChange={setActiveTab} className="space-y-4">
|
||||||
|
<TabsList className="grid w-full sm:w-auto grid-cols-2 sm:inline-flex">
|
||||||
|
<TabsTrigger value="board" className="flex items-center gap-2">
|
||||||
|
<LayoutGrid className="w-4 h-4" />
|
||||||
|
<span className="hidden sm:inline">Sprint Board</span>
|
||||||
|
<span className="sm:hidden">Board</span>
|
||||||
|
</TabsTrigger>
|
||||||
|
<TabsTrigger value="backlog" className="flex items-center gap-2">
|
||||||
|
<ListTodo className="w-4 h-4" />
|
||||||
|
<span className="hidden sm:inline">Backlog & Sprints</span>
|
||||||
|
<span className="sm:hidden">Backlog</span>
|
||||||
|
</TabsTrigger>
|
||||||
|
</TabsList>
|
||||||
|
|
||||||
|
<TabsContent value="board" className="space-y-4">
|
||||||
|
{isLoading ? (
|
||||||
|
<div className="flex items-center justify-center py-12">
|
||||||
|
<div className="animate-spin h-8 w-8 border-2 border-primary border-t-transparent rounded-full" />
|
||||||
|
</div>
|
||||||
|
) : (
|
||||||
|
<SprintBoard />
|
||||||
|
)}
|
||||||
|
</TabsContent>
|
||||||
|
|
||||||
|
<TabsContent value="backlog" className="space-y-4">
|
||||||
|
{isLoading ? (
|
||||||
|
<div className="flex items-center justify-center py-12">
|
||||||
|
<div className="animate-spin h-8 w-8 border-2 border-primary border-t-transparent rounded-full" />
|
||||||
|
</div>
|
||||||
|
) : (
|
||||||
|
<BacklogView />
|
||||||
|
)}
|
||||||
|
</TabsContent>
|
||||||
|
</Tabs>
|
||||||
|
|
||||||
|
{/* Quick Links */}
|
||||||
|
<Card className="bg-muted/50">
|
||||||
|
<CardHeader>
|
||||||
|
<CardTitle className="text-sm font-medium">Quick Links</CardTitle>
|
||||||
|
</CardHeader>
|
||||||
|
<CardContent>
|
||||||
|
<div className="flex flex-wrap gap-2">
|
||||||
|
<Link href="/tasks">
|
||||||
|
<Button variant="outline" size="sm">
|
||||||
|
<CheckCircle2 className="w-4 h-4 mr-2" />
|
||||||
|
Daily Tasks
|
||||||
|
</Button>
|
||||||
|
</Link>
|
||||||
|
<Link href="/calendar">
|
||||||
|
<Button variant="outline" size="sm">
|
||||||
|
<Calendar className="w-4 h-4 mr-2" />
|
||||||
|
Calendar
|
||||||
|
</Button>
|
||||||
|
</Link>
|
||||||
|
<Link href="/activity">
|
||||||
|
<Button variant="outline" size="sm">
|
||||||
|
<Target className="w-4 h-4 mr-2" />
|
||||||
|
Activity
|
||||||
|
</Button>
|
||||||
|
</Link>
|
||||||
|
</div>
|
||||||
|
</CardContent>
|
||||||
|
</Card>
|
||||||
|
</div>
|
||||||
|
</DashboardLayout>
|
||||||
|
)
|
||||||
|
}
|
||||||
498
components/gantt/BacklogView.tsx
Normal file
498
components/gantt/BacklogView.tsx
Normal file
@ -0,0 +1,498 @@
|
|||||||
|
"use client"
|
||||||
|
|
||||||
|
import { useEffect, useState, type ReactNode } from "react"
|
||||||
|
import {
|
||||||
|
DndContext,
|
||||||
|
DragEndEvent,
|
||||||
|
DragOverlay,
|
||||||
|
DragStartEvent,
|
||||||
|
PointerSensor,
|
||||||
|
useDroppable,
|
||||||
|
useSensor,
|
||||||
|
useSensors,
|
||||||
|
closestCorners,
|
||||||
|
} from "@dnd-kit/core"
|
||||||
|
import {
|
||||||
|
SortableContext,
|
||||||
|
verticalListSortingStrategy,
|
||||||
|
useSortable,
|
||||||
|
} from "@dnd-kit/sortable"
|
||||||
|
import { CSS } from "@dnd-kit/utilities"
|
||||||
|
import { useRouter } from "next/navigation"
|
||||||
|
import { useTaskStore, Task } from "@/stores/useTaskStore"
|
||||||
|
import { Card, CardContent } from "@/components/ui/card"
|
||||||
|
import { Badge } from "@/components/ui/badge"
|
||||||
|
import { Button } from "@/components/ui/button"
|
||||||
|
import { Plus, GripVertical, ChevronDown, ChevronRight, Calendar } from "lucide-react"
|
||||||
|
import { format, isValid, parseISO } from "date-fns"
|
||||||
|
import { generateAvatarDataUrl } from "@/lib/avatar"
|
||||||
|
|
||||||
|
const priorityColors: Record<string, string> = {
|
||||||
|
low: "bg-slate-600",
|
||||||
|
medium: "bg-blue-600",
|
||||||
|
high: "bg-orange-600",
|
||||||
|
urgent: "bg-red-600",
|
||||||
|
}
|
||||||
|
|
||||||
|
const typeLabels: Record<string, string> = {
|
||||||
|
idea: "💡",
|
||||||
|
task: "📋",
|
||||||
|
bug: "🐛",
|
||||||
|
research: "🔬",
|
||||||
|
plan: "📐",
|
||||||
|
}
|
||||||
|
|
||||||
|
interface AssignableUser {
|
||||||
|
id: string
|
||||||
|
name: string
|
||||||
|
email?: string
|
||||||
|
avatarUrl?: string
|
||||||
|
}
|
||||||
|
|
||||||
|
function AssigneeAvatar({ name, avatarUrl, seed }: { name?: string; avatarUrl?: string; seed?: string }) {
|
||||||
|
const displayUrl = avatarUrl || generateAvatarDataUrl(seed || name || "unassigned", name || "Unassigned")
|
||||||
|
return (
|
||||||
|
<img
|
||||||
|
src={displayUrl}
|
||||||
|
alt={name || "Assignee"}
|
||||||
|
className="h-6 w-6 rounded-full border border-slate-700 object-cover bg-slate-900"
|
||||||
|
title={name ? `Assigned to ${name}` : "Unassigned"}
|
||||||
|
/>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Sortable Task Row
|
||||||
|
function SortableTaskRow({
|
||||||
|
task,
|
||||||
|
assigneeAvatarUrl,
|
||||||
|
onClick,
|
||||||
|
}: {
|
||||||
|
task: Task
|
||||||
|
assigneeAvatarUrl?: string
|
||||||
|
onClick: () => void
|
||||||
|
}) {
|
||||||
|
const {
|
||||||
|
attributes,
|
||||||
|
listeners,
|
||||||
|
setNodeRef,
|
||||||
|
transform,
|
||||||
|
transition,
|
||||||
|
isDragging,
|
||||||
|
} = useSortable({ id: task.id })
|
||||||
|
|
||||||
|
const style = {
|
||||||
|
transform: CSS.Transform.toString(transform),
|
||||||
|
transition,
|
||||||
|
opacity: isDragging ? 0.5 : 1,
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div
|
||||||
|
ref={setNodeRef}
|
||||||
|
style={style}
|
||||||
|
className="flex items-center gap-3 p-3 bg-slate-800/50 border border-slate-700/50 rounded-lg hover:border-slate-600 cursor-pointer"
|
||||||
|
onClick={onClick}
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
{...attributes}
|
||||||
|
{...listeners}
|
||||||
|
className="shrink-0 h-8 w-6 rounded border border-slate-700/70 bg-slate-900/70 flex items-center justify-center cursor-grab active:cursor-grabbing text-slate-400 hover:text-slate-200"
|
||||||
|
aria-label="Drag task"
|
||||||
|
title="Drag task"
|
||||||
|
>
|
||||||
|
<GripVertical className="w-4 h-4 text-slate-500" />
|
||||||
|
</div>
|
||||||
|
<span className="text-lg">{typeLabels[task.type]}</span>
|
||||||
|
<div className="flex-1 min-w-0">
|
||||||
|
<p className="text-sm font-medium text-slate-200 truncate">{task.title}</p>
|
||||||
|
</div>
|
||||||
|
<Badge className={`${priorityColors[task.priority]} text-white text-xs`}>
|
||||||
|
{task.priority}
|
||||||
|
</Badge>
|
||||||
|
{task.comments && task.comments.length > 0 && (
|
||||||
|
<span className="text-xs text-slate-500">💬 {task.comments.length}</span>
|
||||||
|
)}
|
||||||
|
<AssigneeAvatar name={task.assigneeName} avatarUrl={assigneeAvatarUrl} seed={task.assigneeId} />
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Drag Overlay Item
|
||||||
|
function DragOverlayItem({ task, assigneeAvatarUrl }: { task: Task; assigneeAvatarUrl?: string }) {
|
||||||
|
return (
|
||||||
|
<div className="flex items-center gap-3 p-3 bg-slate-800 border border-slate-600 rounded-lg shadow-xl rotate-1">
|
||||||
|
<GripVertical className="w-4 h-4 text-slate-500" />
|
||||||
|
<span className="text-lg">{typeLabels[task.type]}</span>
|
||||||
|
<div className="flex-1 min-w-0">
|
||||||
|
<p className="text-sm font-medium text-slate-200 truncate">{task.title}</p>
|
||||||
|
</div>
|
||||||
|
<Badge className={`${priorityColors[task.priority]} text-white text-xs`}>
|
||||||
|
{task.priority}
|
||||||
|
</Badge>
|
||||||
|
<AssigneeAvatar name={task.assigneeName} avatarUrl={assigneeAvatarUrl} seed={task.assigneeId} />
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
function SectionDropZone({ id, children }: { id: string; children: ReactNode }) {
|
||||||
|
const { isOver, setNodeRef } = useDroppable({ id })
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div
|
||||||
|
ref={setNodeRef}
|
||||||
|
className={`rounded-lg transition-colors ${isOver ? "ring-1 ring-blue-500/60 bg-blue-500/5" : ""}`}
|
||||||
|
>
|
||||||
|
{children}
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Collapsible Section
|
||||||
|
function TaskSection({
|
||||||
|
title,
|
||||||
|
tasks,
|
||||||
|
isOpen,
|
||||||
|
onToggle,
|
||||||
|
onTaskClick,
|
||||||
|
resolveAssigneeAvatar,
|
||||||
|
sprintInfo,
|
||||||
|
}: {
|
||||||
|
title: string
|
||||||
|
tasks: Task[]
|
||||||
|
isOpen: boolean
|
||||||
|
onToggle: () => void
|
||||||
|
onTaskClick: (task: Task) => void
|
||||||
|
resolveAssigneeAvatar: (task: Task) => string | undefined
|
||||||
|
sprintInfo?: { name: string; date: string; status: string }
|
||||||
|
}) {
|
||||||
|
return (
|
||||||
|
<div className="border border-slate-800 rounded-lg overflow-hidden">
|
||||||
|
<button
|
||||||
|
onClick={onToggle}
|
||||||
|
className="w-full flex items-center justify-between p-4 bg-slate-900 hover:bg-slate-800/50 transition-colors"
|
||||||
|
>
|
||||||
|
<div className="flex items-center gap-3">
|
||||||
|
{isOpen ? (
|
||||||
|
<ChevronDown className="w-5 h-5 text-slate-400" />
|
||||||
|
) : (
|
||||||
|
<ChevronRight className="w-5 h-5 text-slate-400" />
|
||||||
|
)}
|
||||||
|
<h3 className="font-medium text-slate-200">{title}</h3>
|
||||||
|
<Badge variant="secondary" className="bg-slate-800 text-slate-400">
|
||||||
|
{tasks.length}
|
||||||
|
</Badge>
|
||||||
|
</div>
|
||||||
|
{sprintInfo && (
|
||||||
|
<div className="flex items-center gap-2 text-sm text-slate-500">
|
||||||
|
<Calendar className="w-4 h-4" />
|
||||||
|
<span>{sprintInfo.date}</span>
|
||||||
|
<Badge variant="outline" className="text-xs">
|
||||||
|
{sprintInfo.status}
|
||||||
|
</Badge>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</button>
|
||||||
|
|
||||||
|
{isOpen && (
|
||||||
|
<div className="p-4 bg-slate-950/50">
|
||||||
|
<SortableContext
|
||||||
|
items={tasks.map((t) => t.id)}
|
||||||
|
strategy={verticalListSortingStrategy}
|
||||||
|
>
|
||||||
|
<div className="space-y-2">
|
||||||
|
{tasks.length === 0 ? (
|
||||||
|
<p className="text-sm text-slate-600 text-center py-4">No tasks</p>
|
||||||
|
) : (
|
||||||
|
tasks.map((task) => (
|
||||||
|
<SortableTaskRow
|
||||||
|
key={task.id}
|
||||||
|
task={task}
|
||||||
|
assigneeAvatarUrl={resolveAssigneeAvatar(task)}
|
||||||
|
onClick={() => onTaskClick(task)}
|
||||||
|
/>
|
||||||
|
))
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
</SortableContext>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
export function BacklogView() {
|
||||||
|
const router = useRouter()
|
||||||
|
const [assignableUsers, setAssignableUsers] = useState<AssignableUser[]>([])
|
||||||
|
const {
|
||||||
|
tasks,
|
||||||
|
sprints,
|
||||||
|
selectedProjectId,
|
||||||
|
updateTask,
|
||||||
|
addSprint,
|
||||||
|
} = useTaskStore()
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
let active = true
|
||||||
|
const loadUsers = async () => {
|
||||||
|
try {
|
||||||
|
const response = await fetch("/api/auth/users", { cache: "no-store" })
|
||||||
|
if (!response.ok) return
|
||||||
|
const data = await response.json()
|
||||||
|
if (!active || !Array.isArray(data?.users)) return
|
||||||
|
setAssignableUsers(
|
||||||
|
data.users.map((entry: { id: string; name: string; email?: string; avatarUrl?: string }) => ({
|
||||||
|
id: entry.id,
|
||||||
|
name: entry.name,
|
||||||
|
email: entry.email,
|
||||||
|
avatarUrl: entry.avatarUrl,
|
||||||
|
})),
|
||||||
|
)
|
||||||
|
} catch {
|
||||||
|
// Keep backlog usable if users lookup fails.
|
||||||
|
}
|
||||||
|
}
|
||||||
|
void loadUsers()
|
||||||
|
return () => {
|
||||||
|
active = false
|
||||||
|
}
|
||||||
|
}, [])
|
||||||
|
|
||||||
|
const resolveAssigneeAvatar = (task: Task) => {
|
||||||
|
if (!task.assigneeId) return task.assigneeAvatarUrl
|
||||||
|
return assignableUsers.find((user) => user.id === task.assigneeId)?.avatarUrl || task.assigneeAvatarUrl
|
||||||
|
}
|
||||||
|
|
||||||
|
const [activeId, setActiveId] = useState<string | null>(null)
|
||||||
|
const [openSections, setOpenSections] = useState<Record<string, boolean>>({
|
||||||
|
current: true,
|
||||||
|
backlog: true,
|
||||||
|
})
|
||||||
|
const [isCreatingSprint, setIsCreatingSprint] = useState(false)
|
||||||
|
const [newSprint, setNewSprint] = useState({
|
||||||
|
name: "",
|
||||||
|
goal: "",
|
||||||
|
startDate: "",
|
||||||
|
endDate: "",
|
||||||
|
})
|
||||||
|
|
||||||
|
// Sensors for drag detection
|
||||||
|
const sensors = useSensors(
|
||||||
|
useSensor(PointerSensor, {
|
||||||
|
activationConstraint: {
|
||||||
|
distance: 8,
|
||||||
|
},
|
||||||
|
})
|
||||||
|
)
|
||||||
|
|
||||||
|
// Get current active sprint
|
||||||
|
const now = new Date()
|
||||||
|
const currentSprint = sprints.find(
|
||||||
|
(s) =>
|
||||||
|
s.status === "active" &&
|
||||||
|
new Date(s.startDate) <= now &&
|
||||||
|
new Date(s.endDate) >= now
|
||||||
|
)
|
||||||
|
|
||||||
|
// Get other sprints (not current)
|
||||||
|
const otherSprints = sprints.filter((s) => s.id !== currentSprint?.id)
|
||||||
|
|
||||||
|
// Get tasks by section
|
||||||
|
const currentSprintTasks = currentSprint
|
||||||
|
? tasks.filter((t) => t.sprintId === currentSprint.id)
|
||||||
|
: []
|
||||||
|
|
||||||
|
const backlogTasks = tasks.filter((t) => !t.sprintId)
|
||||||
|
|
||||||
|
// Get active task for drag overlay
|
||||||
|
const activeTask = activeId ? tasks.find((t) => t.id === activeId) : null
|
||||||
|
|
||||||
|
const handleDragStart = (event: DragStartEvent) => {
|
||||||
|
setActiveId(event.active.id as string)
|
||||||
|
}
|
||||||
|
|
||||||
|
const handleDragEnd = (event: DragEndEvent) => {
|
||||||
|
const { active, over } = event
|
||||||
|
setActiveId(null)
|
||||||
|
|
||||||
|
if (!over) return
|
||||||
|
|
||||||
|
const taskId = active.id as string
|
||||||
|
const overId = over.id as string
|
||||||
|
const overTask = tasks.find((t) => t.id === overId)
|
||||||
|
|
||||||
|
const destinationId = overTask
|
||||||
|
? overTask.sprintId
|
||||||
|
? currentSprint && overTask.sprintId === currentSprint.id
|
||||||
|
? "current"
|
||||||
|
: `sprint-${overTask.sprintId}`
|
||||||
|
: "backlog"
|
||||||
|
: overId
|
||||||
|
|
||||||
|
// If dropped over a section header, move task to that section's sprint
|
||||||
|
if (destinationId === "backlog") {
|
||||||
|
updateTask(taskId, { sprintId: undefined, status: "open" })
|
||||||
|
} else if (destinationId === "current" && currentSprint) {
|
||||||
|
updateTask(taskId, { sprintId: currentSprint.id, status: "open" })
|
||||||
|
} else if (destinationId.startsWith("sprint-")) {
|
||||||
|
const sprintId = destinationId.replace("sprint-", "")
|
||||||
|
updateTask(taskId, { sprintId, status: "open" })
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const toggleSection = (section: string) => {
|
||||||
|
setOpenSections((prev) => ({ ...prev, [section]: !prev[section] }))
|
||||||
|
}
|
||||||
|
|
||||||
|
const handleCreateSprint = () => {
|
||||||
|
if (!newSprint.name) return
|
||||||
|
|
||||||
|
addSprint({
|
||||||
|
name: newSprint.name,
|
||||||
|
goal: newSprint.goal,
|
||||||
|
startDate: newSprint.startDate || new Date().toISOString(),
|
||||||
|
endDate: newSprint.endDate || new Date().toISOString(),
|
||||||
|
status: "planning",
|
||||||
|
projectId: selectedProjectId || "2",
|
||||||
|
})
|
||||||
|
|
||||||
|
setIsCreatingSprint(false)
|
||||||
|
setNewSprint({ name: "", goal: "", startDate: "", endDate: "" })
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<DndContext
|
||||||
|
sensors={sensors}
|
||||||
|
collisionDetection={closestCorners}
|
||||||
|
onDragStart={handleDragStart}
|
||||||
|
onDragEnd={handleDragEnd}
|
||||||
|
>
|
||||||
|
<div className="space-y-4">
|
||||||
|
{/* Current Sprint Section */}
|
||||||
|
<SectionDropZone id="current">
|
||||||
|
<TaskSection
|
||||||
|
title={currentSprint?.name || "Current Sprint"}
|
||||||
|
tasks={currentSprintTasks}
|
||||||
|
isOpen={openSections.current}
|
||||||
|
onToggle={() => toggleSection("current")}
|
||||||
|
onTaskClick={(task) => router.push(`/tasks/${encodeURIComponent(task.id)}`)}
|
||||||
|
resolveAssigneeAvatar={resolveAssigneeAvatar}
|
||||||
|
sprintInfo={
|
||||||
|
currentSprint
|
||||||
|
? {
|
||||||
|
name: currentSprint.name,
|
||||||
|
date: `${(() => {
|
||||||
|
const start = parseISO(currentSprint.startDate)
|
||||||
|
const end = parseISO(currentSprint.endDate)
|
||||||
|
if (!isValid(start) || !isValid(end)) return "Invalid dates"
|
||||||
|
return `${format(start, "MMM d")} - ${format(end, "MMM d")}`
|
||||||
|
})()}`,
|
||||||
|
status: currentSprint.status,
|
||||||
|
}
|
||||||
|
: undefined
|
||||||
|
}
|
||||||
|
/>
|
||||||
|
</SectionDropZone>
|
||||||
|
|
||||||
|
{/* Other Sprints Sections - ordered by start date */}
|
||||||
|
{otherSprints
|
||||||
|
.sort((a, b) => new Date(a.startDate).getTime() - new Date(b.startDate).getTime())
|
||||||
|
.map((sprint) => {
|
||||||
|
const sprintTasks = tasks.filter((t) => t.sprintId === sprint.id)
|
||||||
|
console.log(`Sprint ${sprint.name}: ${sprintTasks.length} tasks`, sprintTasks.map(t => t.title))
|
||||||
|
return (
|
||||||
|
<SectionDropZone key={sprint.id} id={`sprint-${sprint.id}`}>
|
||||||
|
<TaskSection
|
||||||
|
title={sprint.name}
|
||||||
|
tasks={sprintTasks}
|
||||||
|
isOpen={openSections[sprint.id] ?? false}
|
||||||
|
onToggle={() => toggleSection(sprint.id)}
|
||||||
|
onTaskClick={(task) => router.push(`/tasks/${encodeURIComponent(task.id)}`)}
|
||||||
|
resolveAssigneeAvatar={resolveAssigneeAvatar}
|
||||||
|
sprintInfo={{
|
||||||
|
name: sprint.name,
|
||||||
|
date: (() => {
|
||||||
|
const start = parseISO(sprint.startDate)
|
||||||
|
const end = parseISO(sprint.endDate)
|
||||||
|
if (!isValid(start) || !isValid(end)) return "Invalid dates"
|
||||||
|
return `${format(start, "MMM d")} - ${format(end, "MMM d")}`
|
||||||
|
})(),
|
||||||
|
status: sprint.status,
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
</SectionDropZone>
|
||||||
|
)
|
||||||
|
})}
|
||||||
|
|
||||||
|
{/* Create Sprint Button */}
|
||||||
|
{!isCreatingSprint ? (
|
||||||
|
<Button
|
||||||
|
variant="outline"
|
||||||
|
className="w-full border-dashed border-slate-700 text-slate-400 hover:text-white hover:border-slate-500"
|
||||||
|
onClick={() => setIsCreatingSprint(true)}
|
||||||
|
>
|
||||||
|
<Plus className="w-4 h-4 mr-2" />
|
||||||
|
Create Sprint
|
||||||
|
</Button>
|
||||||
|
) : (
|
||||||
|
<Card className="bg-slate-900 border-slate-800">
|
||||||
|
<CardContent className="p-4 space-y-3">
|
||||||
|
<h4 className="font-medium text-slate-200">Create New Sprint</h4>
|
||||||
|
<input
|
||||||
|
type="text"
|
||||||
|
placeholder="Sprint name"
|
||||||
|
value={newSprint.name}
|
||||||
|
onChange={(e) => setNewSprint({ ...newSprint, name: e.target.value })}
|
||||||
|
className="w-full px-3 py-2 bg-slate-800 border border-slate-700 rounded text-sm text-white"
|
||||||
|
/>
|
||||||
|
<textarea
|
||||||
|
placeholder="Sprint goal (optional)"
|
||||||
|
value={newSprint.goal}
|
||||||
|
onChange={(e) => setNewSprint({ ...newSprint, goal: e.target.value })}
|
||||||
|
rows={2}
|
||||||
|
className="w-full px-3 py-2 bg-slate-800 border border-slate-700 rounded text-sm text-white"
|
||||||
|
/>
|
||||||
|
<div className="grid grid-cols-2 gap-3">
|
||||||
|
<input
|
||||||
|
type="date"
|
||||||
|
value={newSprint.startDate}
|
||||||
|
onChange={(e) => setNewSprint({ ...newSprint, startDate: e.target.value })}
|
||||||
|
className="px-3 py-2 bg-slate-800 border border-slate-700 rounded text-sm text-white"
|
||||||
|
/>
|
||||||
|
<input
|
||||||
|
type="date"
|
||||||
|
value={newSprint.endDate}
|
||||||
|
onChange={(e) => setNewSprint({ ...newSprint, endDate: e.target.value })}
|
||||||
|
className="px-3 py-2 bg-slate-800 border border-slate-700 rounded text-sm text-white"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div className="flex gap-2">
|
||||||
|
<Button onClick={handleCreateSprint} className="flex-1">
|
||||||
|
Create
|
||||||
|
</Button>
|
||||||
|
<Button variant="ghost" onClick={() => setIsCreatingSprint(false)}>
|
||||||
|
Cancel
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
</CardContent>
|
||||||
|
</Card>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{/* Backlog Section */}
|
||||||
|
<SectionDropZone id="backlog">
|
||||||
|
<TaskSection
|
||||||
|
title="Backlog"
|
||||||
|
tasks={backlogTasks}
|
||||||
|
isOpen={openSections.backlog}
|
||||||
|
onToggle={() => toggleSection("backlog")}
|
||||||
|
onTaskClick={(task) => router.push(`/tasks/${encodeURIComponent(task.id)}`)}
|
||||||
|
resolveAssigneeAvatar={resolveAssigneeAvatar}
|
||||||
|
/>
|
||||||
|
</SectionDropZone>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<DragOverlay>
|
||||||
|
{activeTask ? <DragOverlayItem task={activeTask} assigneeAvatarUrl={resolveAssigneeAvatar(activeTask)} /> : null}
|
||||||
|
</DragOverlay>
|
||||||
|
</DndContext>
|
||||||
|
)
|
||||||
|
}
|
||||||
425
components/gantt/SprintBoard.tsx
Normal file
425
components/gantt/SprintBoard.tsx
Normal file
@ -0,0 +1,425 @@
|
|||||||
|
"use client"
|
||||||
|
|
||||||
|
import { useState } from "react"
|
||||||
|
import {
|
||||||
|
DndContext,
|
||||||
|
DragEndEvent,
|
||||||
|
DragOverlay,
|
||||||
|
DragStartEvent,
|
||||||
|
PointerSensor,
|
||||||
|
useSensor,
|
||||||
|
useSensors,
|
||||||
|
closestCorners,
|
||||||
|
} from "@dnd-kit/core"
|
||||||
|
import {
|
||||||
|
SortableContext,
|
||||||
|
verticalListSortingStrategy,
|
||||||
|
useSortable,
|
||||||
|
} from "@dnd-kit/sortable"
|
||||||
|
import { CSS } from "@dnd-kit/utilities"
|
||||||
|
import { useTaskStore, Task, Sprint } from "@/stores/useTaskStore"
|
||||||
|
import { Card, CardContent } from "@/components/ui/card"
|
||||||
|
import { Badge } from "@/components/ui/badge"
|
||||||
|
import { Button } from "@/components/ui/button"
|
||||||
|
import { Plus, Calendar, Flag, GripVertical } from "lucide-react"
|
||||||
|
import { format, parseISO } from "date-fns"
|
||||||
|
|
||||||
|
const statusColumns = ["backlog", "in-progress", "review", "done"] as const
|
||||||
|
type SprintColumnStatus = typeof statusColumns[number]
|
||||||
|
|
||||||
|
const statusLabels: Record<string, string> = {
|
||||||
|
backlog: "To Do",
|
||||||
|
"in-progress": "In Progress",
|
||||||
|
review: "Review",
|
||||||
|
done: "Done",
|
||||||
|
}
|
||||||
|
|
||||||
|
const statusColors: Record<string, string> = {
|
||||||
|
backlog: "bg-slate-700",
|
||||||
|
"in-progress": "bg-blue-600",
|
||||||
|
review: "bg-yellow-600",
|
||||||
|
done: "bg-green-600",
|
||||||
|
}
|
||||||
|
|
||||||
|
const priorityColors: Record<string, string> = {
|
||||||
|
low: "bg-slate-600",
|
||||||
|
medium: "bg-blue-600",
|
||||||
|
high: "bg-orange-600",
|
||||||
|
urgent: "bg-red-600",
|
||||||
|
}
|
||||||
|
|
||||||
|
// Sortable Task Card Component
|
||||||
|
function SortableTaskCard({
|
||||||
|
task,
|
||||||
|
onClick,
|
||||||
|
}: {
|
||||||
|
task: Task
|
||||||
|
onClick: () => void
|
||||||
|
}) {
|
||||||
|
const {
|
||||||
|
attributes,
|
||||||
|
listeners,
|
||||||
|
setNodeRef,
|
||||||
|
transform,
|
||||||
|
transition,
|
||||||
|
isDragging,
|
||||||
|
} = useSortable({ id: task.id })
|
||||||
|
|
||||||
|
const style = {
|
||||||
|
transform: CSS.Transform.toString(transform),
|
||||||
|
transition,
|
||||||
|
opacity: isDragging ? 0.5 : 1,
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Card
|
||||||
|
ref={setNodeRef}
|
||||||
|
style={style}
|
||||||
|
className="bg-slate-800 border-slate-700 cursor-pointer hover:border-slate-600 transition-colors group"
|
||||||
|
onClick={onClick}
|
||||||
|
>
|
||||||
|
<CardContent className="p-3">
|
||||||
|
<div className="flex items-start gap-2">
|
||||||
|
<div
|
||||||
|
{...attributes}
|
||||||
|
{...listeners}
|
||||||
|
className="mt-0.5 opacity-0 group-hover:opacity-100 transition-opacity cursor-grab active:cursor-grabbing"
|
||||||
|
>
|
||||||
|
<GripVertical className="w-4 h-4 text-slate-500" />
|
||||||
|
</div>
|
||||||
|
<div className="flex-1 min-w-0">
|
||||||
|
<div className="flex items-start justify-between gap-2">
|
||||||
|
<h4 className="text-sm font-medium text-slate-200 line-clamp-2">
|
||||||
|
{task.title}
|
||||||
|
</h4>
|
||||||
|
</div>
|
||||||
|
<div className="flex items-center gap-2 mt-2">
|
||||||
|
<Badge
|
||||||
|
className={`${priorityColors[task.priority]} text-white text-xs`}
|
||||||
|
>
|
||||||
|
{task.priority}
|
||||||
|
</Badge>
|
||||||
|
<Badge variant="outline" className="text-xs border-slate-600 text-slate-400">
|
||||||
|
{task.type}
|
||||||
|
</Badge>
|
||||||
|
{task.comments && task.comments.length > 0 && (
|
||||||
|
<span className="text-xs text-slate-500">
|
||||||
|
💬 {task.comments.length}
|
||||||
|
</span>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</CardContent>
|
||||||
|
</Card>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Drag Overlay Task Card (shown while dragging)
|
||||||
|
function DragOverlayTaskCard({ task }: { task: Task }) {
|
||||||
|
return (
|
||||||
|
<Card className="bg-slate-800 border-slate-600 shadow-xl rotate-2">
|
||||||
|
<CardContent className="p-3">
|
||||||
|
<div className="flex items-start gap-2">
|
||||||
|
<GripVertical className="w-4 h-4 text-slate-500 mt-0.5" />
|
||||||
|
<div className="flex-1 min-w-0">
|
||||||
|
<h4 className="text-sm font-medium text-slate-200 line-clamp-2">
|
||||||
|
{task.title}
|
||||||
|
</h4>
|
||||||
|
<div className="flex items-center gap-2 mt-2">
|
||||||
|
<Badge
|
||||||
|
className={`${priorityColors[task.priority]} text-white text-xs`}
|
||||||
|
>
|
||||||
|
{task.priority}
|
||||||
|
</Badge>
|
||||||
|
<Badge variant="outline" className="text-xs border-slate-600 text-slate-400">
|
||||||
|
{task.type}
|
||||||
|
</Badge>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</CardContent>
|
||||||
|
</Card>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
export function SprintBoard() {
|
||||||
|
const {
|
||||||
|
tasks,
|
||||||
|
sprints,
|
||||||
|
selectedSprintId,
|
||||||
|
selectSprint,
|
||||||
|
selectedProjectId,
|
||||||
|
updateTask,
|
||||||
|
selectTask,
|
||||||
|
addSprint,
|
||||||
|
} = useTaskStore()
|
||||||
|
|
||||||
|
const [isCreatingSprint, setIsCreatingSprint] = useState(false)
|
||||||
|
const [newSprint, setNewSprint] = useState({
|
||||||
|
name: "",
|
||||||
|
goal: "",
|
||||||
|
startDate: "",
|
||||||
|
endDate: "",
|
||||||
|
})
|
||||||
|
const [activeId, setActiveId] = useState<string | null>(null)
|
||||||
|
|
||||||
|
// Sensors for drag detection
|
||||||
|
const sensors = useSensors(
|
||||||
|
useSensor(PointerSensor, {
|
||||||
|
activationConstraint: {
|
||||||
|
distance: 8,
|
||||||
|
},
|
||||||
|
})
|
||||||
|
)
|
||||||
|
|
||||||
|
// Get sprints for selected project
|
||||||
|
const projectSprints = sprints.filter(
|
||||||
|
(s) => s.projectId === selectedProjectId
|
||||||
|
)
|
||||||
|
|
||||||
|
// Get current sprint
|
||||||
|
const currentSprint = sprints.find((s) => s.id === selectedSprintId)
|
||||||
|
|
||||||
|
// Get tasks for current sprint
|
||||||
|
const sprintTasks = tasks.filter((t) => t.sprintId === selectedSprintId)
|
||||||
|
|
||||||
|
// Group tasks by status
|
||||||
|
const tasksByStatus = statusColumns.reduce((acc, status) => {
|
||||||
|
acc[status] = sprintTasks.filter((t) => t.status === status)
|
||||||
|
return acc
|
||||||
|
}, {} as Record<string, Task[]>)
|
||||||
|
|
||||||
|
// Get active task for drag overlay
|
||||||
|
const activeTask = activeId ? tasks.find((t) => t.id === activeId) : null
|
||||||
|
|
||||||
|
const handleCreateSprint = () => {
|
||||||
|
if (!newSprint.name || !selectedProjectId) return
|
||||||
|
|
||||||
|
const sprint: Omit<Sprint, "id" | "createdAt"> = {
|
||||||
|
name: newSprint.name,
|
||||||
|
goal: newSprint.goal,
|
||||||
|
startDate: newSprint.startDate || new Date().toISOString(),
|
||||||
|
endDate: newSprint.endDate || new Date().toISOString(),
|
||||||
|
status: "planning",
|
||||||
|
projectId: selectedProjectId,
|
||||||
|
}
|
||||||
|
|
||||||
|
addSprint(sprint)
|
||||||
|
setIsCreatingSprint(false)
|
||||||
|
setNewSprint({ name: "", goal: "", startDate: "", endDate: "" })
|
||||||
|
}
|
||||||
|
|
||||||
|
const handleDragStart = (event: DragStartEvent) => {
|
||||||
|
setActiveId(event.active.id as string)
|
||||||
|
}
|
||||||
|
|
||||||
|
const handleDragEnd = (event: DragEndEvent) => {
|
||||||
|
const { active, over } = event
|
||||||
|
setActiveId(null)
|
||||||
|
|
||||||
|
if (!over) return
|
||||||
|
|
||||||
|
const taskId = active.id as string
|
||||||
|
const overId = over.id as string
|
||||||
|
|
||||||
|
// Check if dropped over a column
|
||||||
|
if (statusColumns.includes(overId as SprintColumnStatus)) {
|
||||||
|
updateTask(taskId, { status: overId as Task["status"] })
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// Check if dropped over another task
|
||||||
|
const overTask = tasks.find((t) => t.id === overId)
|
||||||
|
if (overTask && overTask.status !== tasks.find((t) => t.id === taskId)?.status) {
|
||||||
|
updateTask(taskId, { status: overTask.status })
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (projectSprints.length === 0 && !isCreatingSprint) {
|
||||||
|
return (
|
||||||
|
<div className="flex flex-col items-center justify-center py-12 text-zinc-400">
|
||||||
|
<Flag className="w-12 h-12 mb-4 text-zinc-600" />
|
||||||
|
<h3 className="text-lg font-medium text-zinc-300 mb-2">No Sprints Yet</h3>
|
||||||
|
<p className="text-sm mb-4">Create your first sprint to start organizing work</p>
|
||||||
|
<Button onClick={() => setIsCreatingSprint(true)}>
|
||||||
|
<Plus className="w-4 h-4 mr-2" />
|
||||||
|
Create Sprint
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
if (isCreatingSprint) {
|
||||||
|
return (
|
||||||
|
<div className="max-w-md mx-auto py-8">
|
||||||
|
<Card className="bg-slate-900 border-slate-800">
|
||||||
|
<CardContent className="p-6 space-y-4">
|
||||||
|
<h3 className="text-lg font-medium text-slate-200">Create New Sprint</h3>
|
||||||
|
<div>
|
||||||
|
<label className="text-sm text-slate-400">Sprint Name</label>
|
||||||
|
<input
|
||||||
|
type="text"
|
||||||
|
value={newSprint.name}
|
||||||
|
onChange={(e) => setNewSprint({ ...newSprint, name: e.target.value })}
|
||||||
|
placeholder="e.g., Sprint 1 - Foundation"
|
||||||
|
className="w-full mt-1 bg-slate-800 border border-slate-700 rounded px-3 py-2 text-slate-100"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<label className="text-sm text-slate-400">Sprint Goal</label>
|
||||||
|
<textarea
|
||||||
|
value={newSprint.goal}
|
||||||
|
onChange={(e) => setNewSprint({ ...newSprint, goal: e.target.value })}
|
||||||
|
placeholder="What do you want to achieve?"
|
||||||
|
rows={2}
|
||||||
|
className="w-full mt-1 bg-slate-800 border border-slate-700 rounded px-3 py-2 text-slate-100"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div className="grid grid-cols-2 gap-4">
|
||||||
|
<div>
|
||||||
|
<label className="text-sm text-slate-400">Start Date</label>
|
||||||
|
<input
|
||||||
|
type="date"
|
||||||
|
value={newSprint.startDate}
|
||||||
|
onChange={(e) => setNewSprint({ ...newSprint, startDate: e.target.value })}
|
||||||
|
className="w-full mt-1 bg-slate-800 border border-slate-700 rounded px-3 py-2 text-slate-100"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<label className="text-sm text-slate-400">End Date</label>
|
||||||
|
<input
|
||||||
|
type="date"
|
||||||
|
value={newSprint.endDate}
|
||||||
|
onChange={(e) => setNewSprint({ ...newSprint, endDate: e.target.value })}
|
||||||
|
className="w-full mt-1 bg-slate-800 border border-slate-700 rounded px-3 py-2 text-slate-100"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="flex gap-2 pt-2">
|
||||||
|
<Button onClick={handleCreateSprint} className="flex-1">
|
||||||
|
Create Sprint
|
||||||
|
</Button>
|
||||||
|
<Button variant="outline" onClick={() => setIsCreatingSprint(false)}>
|
||||||
|
Cancel
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
</CardContent>
|
||||||
|
</Card>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<DndContext
|
||||||
|
sensors={sensors}
|
||||||
|
collisionDetection={closestCorners}
|
||||||
|
onDragStart={handleDragStart}
|
||||||
|
onDragEnd={handleDragEnd}
|
||||||
|
>
|
||||||
|
<div className="space-y-4">
|
||||||
|
{/* Sprint Header */}
|
||||||
|
<div className="flex flex-col sm:flex-row sm:items-center justify-between gap-3">
|
||||||
|
<div className="flex items-center gap-3">
|
||||||
|
<select
|
||||||
|
value={selectedSprintId || ""}
|
||||||
|
onChange={(e) => selectSprint(e.target.value || null)}
|
||||||
|
className="bg-slate-800 border border-slate-700 rounded px-3 py-2 text-slate-100"
|
||||||
|
>
|
||||||
|
<option value="">Select a sprint...</option>
|
||||||
|
{projectSprints.map((sprint) => (
|
||||||
|
<option key={sprint.id} value={sprint.id}>
|
||||||
|
{sprint.name}
|
||||||
|
</option>
|
||||||
|
))}
|
||||||
|
</select>
|
||||||
|
<Button
|
||||||
|
size="sm"
|
||||||
|
variant="outline"
|
||||||
|
onClick={() => setIsCreatingSprint(true)}
|
||||||
|
>
|
||||||
|
<Plus className="w-4 h-4 mr-1" />
|
||||||
|
New Sprint
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{currentSprint && (
|
||||||
|
<div className="flex items-center gap-4 text-sm text-slate-400">
|
||||||
|
<div className="flex items-center gap-1">
|
||||||
|
<Calendar className="w-4 h-4" />
|
||||||
|
<span>
|
||||||
|
{format(parseISO(currentSprint.startDate), "MMM d")} -{" "}
|
||||||
|
{format(parseISO(currentSprint.endDate), "MMM d, yyyy")}
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<Badge
|
||||||
|
variant={
|
||||||
|
currentSprint.status === "active"
|
||||||
|
? "default"
|
||||||
|
: currentSprint.status === "completed"
|
||||||
|
? "secondary"
|
||||||
|
: "outline"
|
||||||
|
}
|
||||||
|
>
|
||||||
|
{currentSprint.status}
|
||||||
|
</Badge>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Sprint Goal */}
|
||||||
|
{currentSprint?.goal && (
|
||||||
|
<div className="bg-slate-800/50 border border-slate-700 rounded-lg p-3 text-sm text-slate-300">
|
||||||
|
<span className="font-medium text-slate-200">Goal:</span> {currentSprint.goal}
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{/* Sprint Board */}
|
||||||
|
{selectedSprintId ? (
|
||||||
|
<div className="grid grid-cols-1 md:grid-cols-2 xl:grid-cols-4 gap-4">
|
||||||
|
{statusColumns.map((status) => (
|
||||||
|
<div
|
||||||
|
key={status}
|
||||||
|
id={status}
|
||||||
|
className="flex flex-col bg-slate-900/50 rounded-lg p-3"
|
||||||
|
data-status={status}
|
||||||
|
>
|
||||||
|
<div className="flex items-center justify-between mb-3">
|
||||||
|
<div className="flex items-center gap-2">
|
||||||
|
<div className={`w-2 h-2 rounded-full ${statusColors[status]}`} />
|
||||||
|
<h3 className="font-medium text-slate-300">{statusLabels[status]}</h3>
|
||||||
|
</div>
|
||||||
|
<Badge variant="secondary" className="text-xs">
|
||||||
|
{tasksByStatus[status]?.length || 0}
|
||||||
|
</Badge>
|
||||||
|
</div>
|
||||||
|
<SortableContext
|
||||||
|
items={tasksByStatus[status]?.map((t) => t.id) || []}
|
||||||
|
strategy={verticalListSortingStrategy}
|
||||||
|
>
|
||||||
|
<div className="space-y-2 min-h-[100px]">
|
||||||
|
{tasksByStatus[status]?.map((task) => (
|
||||||
|
<SortableTaskCard
|
||||||
|
key={task.id}
|
||||||
|
task={task}
|
||||||
|
onClick={() => selectTask(task.id)}
|
||||||
|
/>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
</SortableContext>
|
||||||
|
</div>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
) : (
|
||||||
|
<div className="text-center py-12 text-slate-500">
|
||||||
|
<p>Select a sprint to view the sprint board</p>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<DragOverlay>
|
||||||
|
{activeTask ? <DragOverlayTaskCard task={activeTask} /> : null}
|
||||||
|
</DragOverlay>
|
||||||
|
</DndContext>
|
||||||
|
)
|
||||||
|
}
|
||||||
@ -8,6 +8,7 @@ import {
|
|||||||
Activity,
|
Activity,
|
||||||
Calendar,
|
Calendar,
|
||||||
Kanban,
|
Kanban,
|
||||||
|
FolderKanban,
|
||||||
FileText,
|
FileText,
|
||||||
Wrench,
|
Wrench,
|
||||||
Target,
|
Target,
|
||||||
@ -23,6 +24,7 @@ const navItems = [
|
|||||||
{ name: "Activity", href: "/activity", icon: Activity },
|
{ name: "Activity", href: "/activity", icon: Activity },
|
||||||
{ name: "Calendar", href: "/calendar", icon: Calendar },
|
{ name: "Calendar", href: "/calendar", icon: Calendar },
|
||||||
{ name: "Tasks", href: "/tasks", icon: Kanban },
|
{ name: "Tasks", href: "/tasks", icon: Kanban },
|
||||||
|
{ name: "Projects", href: "/projects", icon: FolderKanban },
|
||||||
{ name: "Documents", href: "/documents", icon: FileText },
|
{ name: "Documents", href: "/documents", icon: FileText },
|
||||||
{ name: "Tool Builder", href: "/tools", icon: Wrench },
|
{ name: "Tool Builder", href: "/tools", icon: Wrench },
|
||||||
{ name: "Mission", href: "/mission", icon: Target },
|
{ name: "Mission", href: "/mission", icon: Target },
|
||||||
|
|||||||
119
components/ui/dialog.tsx
Normal file
119
components/ui/dialog.tsx
Normal file
@ -0,0 +1,119 @@
|
|||||||
|
import * as React from "react"
|
||||||
|
import * as DialogPrimitive from "@radix-ui/react-dialog"
|
||||||
|
import { X } from "lucide-react"
|
||||||
|
import { cn } from "@/lib/utils"
|
||||||
|
|
||||||
|
const Dialog = DialogPrimitive.Root
|
||||||
|
|
||||||
|
const DialogTrigger = DialogPrimitive.Trigger
|
||||||
|
|
||||||
|
const DialogPortal = DialogPrimitive.Portal
|
||||||
|
|
||||||
|
const DialogClose = DialogPrimitive.Close
|
||||||
|
|
||||||
|
const DialogOverlay = React.forwardRef<
|
||||||
|
React.ElementRef<typeof DialogPrimitive.Overlay>,
|
||||||
|
React.ComponentPropsWithoutRef<typeof DialogPrimitive.Overlay>
|
||||||
|
>(({ className, ...props }, ref) => (
|
||||||
|
<DialogPrimitive.Overlay
|
||||||
|
ref={ref}
|
||||||
|
className={cn(
|
||||||
|
"fixed inset-0 z-50 bg-black/80 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0",
|
||||||
|
className
|
||||||
|
)}
|
||||||
|
{...props}
|
||||||
|
/>
|
||||||
|
))
|
||||||
|
DialogOverlay.displayName = DialogPrimitive.Overlay.displayName
|
||||||
|
|
||||||
|
const DialogContent = React.forwardRef<
|
||||||
|
React.ElementRef<typeof DialogPrimitive.Content>,
|
||||||
|
React.ComponentPropsWithoutRef<typeof DialogPrimitive.Content>
|
||||||
|
>(({ className, children, ...props }, ref) => (
|
||||||
|
<DialogPortal>
|
||||||
|
<DialogOverlay />
|
||||||
|
<DialogPrimitive.Content
|
||||||
|
ref={ref}
|
||||||
|
className={cn(
|
||||||
|
"fixed left-[50%] top-[50%] z-50 grid w-full max-w-lg translate-x-[-50%] translate-y-[-50%] gap-4 border bg-background p-6 shadow-lg duration-200 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[state=closed]:slide-out-to-left-1/2 data-[state=closed]:slide-out-to-top-[48%] data-[state=open]:slide-in-from-left-1/2 data-[state=open]:slide-in-from-top-[48%] sm:rounded-lg",
|
||||||
|
className
|
||||||
|
)}
|
||||||
|
{...props}
|
||||||
|
>
|
||||||
|
{children}
|
||||||
|
<DialogPrimitive.Close className="absolute right-4 top-4 rounded-sm opacity-70 ring-offset-background transition-opacity hover:opacity-100 focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2 disabled:pointer-events-none data-[state=open]:bg-accent data-[state=open]:text-muted-foreground">
|
||||||
|
<X className="h-4 w-4" />
|
||||||
|
<span className="sr-only">Close</span>
|
||||||
|
</DialogPrimitive.Close>
|
||||||
|
</DialogPrimitive.Content>
|
||||||
|
</DialogPortal>
|
||||||
|
))
|
||||||
|
DialogContent.displayName = DialogPrimitive.Content.displayName
|
||||||
|
|
||||||
|
const DialogHeader = ({
|
||||||
|
className,
|
||||||
|
...props
|
||||||
|
}: React.HTMLAttributes<HTMLDivElement>) => (
|
||||||
|
<div
|
||||||
|
className={cn(
|
||||||
|
"flex flex-col space-y-1.5 text-center sm:text-left",
|
||||||
|
className
|
||||||
|
)}
|
||||||
|
{...props}
|
||||||
|
/>
|
||||||
|
)
|
||||||
|
DialogHeader.displayName = "DialogHeader"
|
||||||
|
|
||||||
|
const DialogFooter = ({
|
||||||
|
className,
|
||||||
|
...props
|
||||||
|
}: React.HTMLAttributes<HTMLDivElement>) => (
|
||||||
|
<div
|
||||||
|
className={cn(
|
||||||
|
"flex flex-col-reverse sm:flex-row sm:justify-end sm:space-x-2",
|
||||||
|
className
|
||||||
|
)}
|
||||||
|
{...props}
|
||||||
|
/>
|
||||||
|
)
|
||||||
|
DialogFooter.displayName = "DialogFooter"
|
||||||
|
|
||||||
|
const DialogTitle = React.forwardRef<
|
||||||
|
React.ElementRef<typeof DialogPrimitive.Title>,
|
||||||
|
React.ComponentPropsWithoutRef<typeof DialogPrimitive.Title>
|
||||||
|
>(({ className, ...props }, ref) => (
|
||||||
|
<DialogPrimitive.Title
|
||||||
|
ref={ref}
|
||||||
|
className={cn(
|
||||||
|
"text-lg font-semibold leading-none tracking-tight",
|
||||||
|
className
|
||||||
|
)}
|
||||||
|
{...props}
|
||||||
|
/>
|
||||||
|
))
|
||||||
|
DialogTitle.displayName = DialogPrimitive.Title.displayName
|
||||||
|
|
||||||
|
const DialogDescription = React.forwardRef<
|
||||||
|
React.ElementRef<typeof DialogPrimitive.Description>,
|
||||||
|
React.ComponentPropsWithoutRef<typeof DialogPrimitive.Description>
|
||||||
|
>(({ className, ...props }, ref) => (
|
||||||
|
<DialogPrimitive.Description
|
||||||
|
ref={ref}
|
||||||
|
className={cn("text-sm text-muted-foreground", className)}
|
||||||
|
{...props}
|
||||||
|
/>
|
||||||
|
))
|
||||||
|
DialogDescription.displayName = DialogPrimitive.Description.displayName
|
||||||
|
|
||||||
|
export {
|
||||||
|
Dialog,
|
||||||
|
DialogPortal,
|
||||||
|
DialogOverlay,
|
||||||
|
DialogClose,
|
||||||
|
DialogTrigger,
|
||||||
|
DialogContent,
|
||||||
|
DialogHeader,
|
||||||
|
DialogFooter,
|
||||||
|
DialogTitle,
|
||||||
|
DialogDescription,
|
||||||
|
}
|
||||||
159
components/ui/select.tsx
Normal file
159
components/ui/select.tsx
Normal file
@ -0,0 +1,159 @@
|
|||||||
|
"use client"
|
||||||
|
|
||||||
|
import * as React from "react"
|
||||||
|
import * as SelectPrimitive from "@radix-ui/react-select"
|
||||||
|
import { Check, ChevronDown, ChevronUp } from "lucide-react"
|
||||||
|
import { cn } from "@/lib/utils"
|
||||||
|
|
||||||
|
const Select = SelectPrimitive.Root
|
||||||
|
|
||||||
|
const SelectGroup = SelectPrimitive.Group
|
||||||
|
|
||||||
|
const SelectValue = SelectPrimitive.Value
|
||||||
|
|
||||||
|
const SelectTrigger = React.forwardRef<
|
||||||
|
React.ElementRef<typeof SelectPrimitive.Trigger>,
|
||||||
|
React.ComponentPropsWithoutRef<typeof SelectPrimitive.Trigger>
|
||||||
|
>(({ className, children, ...props }, ref) => (
|
||||||
|
<SelectPrimitive.Trigger
|
||||||
|
ref={ref}
|
||||||
|
className={cn(
|
||||||
|
"flex h-10 w-full items-center justify-between rounded-md border border-input bg-background px-3 py-2 text-sm ring-offset-background placeholder:text-muted-foreground focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50 [&>span]:line-clamp-1",
|
||||||
|
className
|
||||||
|
)}
|
||||||
|
{...props}
|
||||||
|
>
|
||||||
|
{children}
|
||||||
|
<SelectPrimitive.Icon asChild>
|
||||||
|
<ChevronDown className="h-4 w-4 opacity-50" />
|
||||||
|
</SelectPrimitive.Icon>
|
||||||
|
</SelectPrimitive.Trigger>
|
||||||
|
))
|
||||||
|
SelectTrigger.displayName = SelectPrimitive.Trigger.displayName
|
||||||
|
|
||||||
|
const SelectScrollUpButton = React.forwardRef<
|
||||||
|
React.ElementRef<typeof SelectPrimitive.ScrollUpButton>,
|
||||||
|
React.ComponentPropsWithoutRef<typeof SelectPrimitive.ScrollUpButton>
|
||||||
|
>(({ className, ...props }, ref) => (
|
||||||
|
<SelectPrimitive.ScrollUpButton
|
||||||
|
ref={ref}
|
||||||
|
className={cn(
|
||||||
|
"flex cursor-default items-center justify-center py-1",
|
||||||
|
className
|
||||||
|
)}
|
||||||
|
{...props}
|
||||||
|
>
|
||||||
|
<ChevronUp className="h-4 w-4" />
|
||||||
|
</SelectPrimitive.ScrollUpButton>
|
||||||
|
))
|
||||||
|
SelectScrollUpButton.displayName = SelectPrimitive.ScrollUpButton.displayName
|
||||||
|
|
||||||
|
const SelectScrollDownButton = React.forwardRef<
|
||||||
|
React.ElementRef<typeof SelectPrimitive.ScrollDownButton>,
|
||||||
|
React.ComponentPropsWithoutRef<typeof SelectPrimitive.ScrollDownButton>
|
||||||
|
>(({ className, ...props }, ref) => (
|
||||||
|
<SelectPrimitive.ScrollDownButton
|
||||||
|
ref={ref}
|
||||||
|
className={cn(
|
||||||
|
"flex cursor-default items-center justify-center py-1",
|
||||||
|
className
|
||||||
|
)}
|
||||||
|
{...props}
|
||||||
|
>
|
||||||
|
<ChevronDown className="h-4 w-4" />
|
||||||
|
</SelectPrimitive.ScrollDownButton>
|
||||||
|
))
|
||||||
|
SelectScrollDownButton.displayName =
|
||||||
|
SelectPrimitive.ScrollDownButton.displayName
|
||||||
|
|
||||||
|
const SelectContent = React.forwardRef<
|
||||||
|
React.ElementRef<typeof SelectPrimitive.Content>,
|
||||||
|
React.ComponentPropsWithoutRef<typeof SelectPrimitive.Content>
|
||||||
|
>(({ className, children, position = "popper", ...props }, ref) => (
|
||||||
|
<SelectPrimitive.Portal>
|
||||||
|
<SelectPrimitive.Content
|
||||||
|
ref={ref}
|
||||||
|
className={cn(
|
||||||
|
"relative z-50 max-h-96 min-w-[8rem] overflow-hidden rounded-md border bg-popover text-popover-foreground shadow-md data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2",
|
||||||
|
position === "popper" &&
|
||||||
|
"data-[side=bottom]:translate-y-1 data-[side=left]:-translate-x-1 data-[side=right]:translate-x-1 data-[side=top]:-translate-y-1",
|
||||||
|
className
|
||||||
|
)}
|
||||||
|
position={position}
|
||||||
|
{...props}
|
||||||
|
>
|
||||||
|
<SelectScrollUpButton />
|
||||||
|
<SelectPrimitive.Viewport
|
||||||
|
className={cn(
|
||||||
|
"p-1",
|
||||||
|
position === "popper" &&
|
||||||
|
"h-[var(--radix-select-trigger-height)] w-full min-w-[var(--radix-select-trigger-width)]"
|
||||||
|
)}
|
||||||
|
>
|
||||||
|
{children}
|
||||||
|
</SelectPrimitive.Viewport>
|
||||||
|
<SelectScrollDownButton />
|
||||||
|
</SelectPrimitive.Content>
|
||||||
|
</SelectPrimitive.Portal>
|
||||||
|
))
|
||||||
|
SelectContent.displayName = SelectPrimitive.Content.displayName
|
||||||
|
|
||||||
|
const SelectLabel = React.forwardRef<
|
||||||
|
React.ElementRef<typeof SelectPrimitive.Label>,
|
||||||
|
React.ComponentPropsWithoutRef<typeof SelectPrimitive.Label>
|
||||||
|
>(({ className, ...props }, ref) => (
|
||||||
|
<SelectPrimitive.Label
|
||||||
|
ref={ref}
|
||||||
|
className={cn("py-1.5 pl-8 pr-2 text-sm font-semibold", className)}
|
||||||
|
{...props}
|
||||||
|
/>
|
||||||
|
))
|
||||||
|
SelectLabel.displayName = SelectPrimitive.Label.displayName
|
||||||
|
|
||||||
|
const SelectItem = React.forwardRef<
|
||||||
|
React.ElementRef<typeof SelectPrimitive.Item>,
|
||||||
|
React.ComponentPropsWithoutRef<typeof SelectPrimitive.Item>
|
||||||
|
>(({ className, children, ...props }, ref) => (
|
||||||
|
<SelectPrimitive.Item
|
||||||
|
ref={ref}
|
||||||
|
className={cn(
|
||||||
|
"relative flex w-full cursor-default select-none items-center rounded-sm py-1.5 pl-8 pr-2 text-sm outline-none focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50",
|
||||||
|
className
|
||||||
|
)}
|
||||||
|
{...props}
|
||||||
|
>
|
||||||
|
<span className="absolute left-2 flex h-3.5 w-3.5 items-center justify-center">
|
||||||
|
<SelectPrimitive.ItemIndicator>
|
||||||
|
<Check className="h-4 w-4" />
|
||||||
|
</SelectPrimitive.ItemIndicator>
|
||||||
|
</span>
|
||||||
|
|
||||||
|
<SelectPrimitive.ItemText>{children}</SelectPrimitive.ItemText>
|
||||||
|
</SelectPrimitive.Item>
|
||||||
|
))
|
||||||
|
SelectItem.displayName = SelectPrimitive.Item.displayName
|
||||||
|
|
||||||
|
const SelectSeparator = React.forwardRef<
|
||||||
|
React.ElementRef<typeof SelectPrimitive.Separator>,
|
||||||
|
React.ComponentPropsWithoutRef<typeof SelectPrimitive.Separator>
|
||||||
|
>(({ className, ...props }, ref) => (
|
||||||
|
<SelectPrimitive.Separator
|
||||||
|
ref={ref}
|
||||||
|
className={cn("-mx-1 my-1 h-px bg-muted", className)}
|
||||||
|
{...props}
|
||||||
|
/>
|
||||||
|
))
|
||||||
|
SelectSeparator.displayName = SelectPrimitive.Separator.displayName
|
||||||
|
|
||||||
|
export {
|
||||||
|
Select,
|
||||||
|
SelectGroup,
|
||||||
|
SelectValue,
|
||||||
|
SelectTrigger,
|
||||||
|
SelectContent,
|
||||||
|
SelectLabel,
|
||||||
|
SelectItem,
|
||||||
|
SelectSeparator,
|
||||||
|
SelectScrollUpButton,
|
||||||
|
SelectScrollDownButton,
|
||||||
|
}
|
||||||
116
components/ui/table.tsx
Normal file
116
components/ui/table.tsx
Normal file
@ -0,0 +1,116 @@
|
|||||||
|
import * as React from "react"
|
||||||
|
import { cn } from "@/lib/utils"
|
||||||
|
|
||||||
|
const Table = React.forwardRef<
|
||||||
|
HTMLTableElement,
|
||||||
|
React.HTMLAttributes<HTMLTableElement>
|
||||||
|
>(({ className, ...props }, ref) => (
|
||||||
|
<div className="relative w-full overflow-auto">
|
||||||
|
<table
|
||||||
|
ref={ref}
|
||||||
|
className={cn("w-full caption-bottom text-sm", className)}
|
||||||
|
{...props}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
))
|
||||||
|
Table.displayName = "Table"
|
||||||
|
|
||||||
|
const TableHeader = React.forwardRef<
|
||||||
|
HTMLTableSectionElement,
|
||||||
|
React.HTMLAttributes<HTMLTableSectionElement>
|
||||||
|
>(({ className, ...props }, ref) => (
|
||||||
|
<thead ref={ref} className={cn("[&_tr]:border-b", className)} {...props} />
|
||||||
|
))
|
||||||
|
TableHeader.displayName = "TableHeader"
|
||||||
|
|
||||||
|
const TableBody = React.forwardRef<
|
||||||
|
HTMLTableSectionElement,
|
||||||
|
React.HTMLAttributes<HTMLTableSectionElement>
|
||||||
|
>(({ className, ...props }, ref) => (
|
||||||
|
<tbody
|
||||||
|
ref={ref}
|
||||||
|
className={cn("[&_tr:last-child]:border-0", className)}
|
||||||
|
{...props}
|
||||||
|
/>
|
||||||
|
))
|
||||||
|
TableBody.displayName = "TableBody"
|
||||||
|
|
||||||
|
const TableFooter = React.forwardRef<
|
||||||
|
HTMLTableSectionElement,
|
||||||
|
React.HTMLAttributes<HTMLTableSectionElement>
|
||||||
|
>(({ className, ...props }, ref) => (
|
||||||
|
<tfoot
|
||||||
|
ref={ref}
|
||||||
|
className={cn(
|
||||||
|
"border-t bg-muted/50 font-medium [&>tr]:last:border-b-0",
|
||||||
|
className
|
||||||
|
)}
|
||||||
|
{...props}
|
||||||
|
/>
|
||||||
|
))
|
||||||
|
TableFooter.displayName = "TableFooter"
|
||||||
|
|
||||||
|
const TableRow = React.forwardRef<
|
||||||
|
HTMLTableRowElement,
|
||||||
|
React.HTMLAttributes<HTMLTableRowElement>
|
||||||
|
>(({ className, ...props }, ref) => (
|
||||||
|
<tr
|
||||||
|
ref={ref}
|
||||||
|
className={cn(
|
||||||
|
"border-b transition-colors hover:bg-muted/50 data-[state=selected]:bg-muted",
|
||||||
|
className
|
||||||
|
)}
|
||||||
|
{...props}
|
||||||
|
/>
|
||||||
|
))
|
||||||
|
TableRow.displayName = "TableRow"
|
||||||
|
|
||||||
|
const TableHead = React.forwardRef<
|
||||||
|
HTMLTableCellElement,
|
||||||
|
React.ThHTMLAttributes<HTMLTableCellElement>
|
||||||
|
>(({ className, ...props }, ref) => (
|
||||||
|
<th
|
||||||
|
ref={ref}
|
||||||
|
className={cn(
|
||||||
|
"h-12 px-4 text-left align-middle font-medium text-muted-foreground [&:has([role=checkbox])]:pr-0",
|
||||||
|
className
|
||||||
|
)}
|
||||||
|
{...props}
|
||||||
|
/>
|
||||||
|
))
|
||||||
|
TableHead.displayName = "TableHead"
|
||||||
|
|
||||||
|
const TableCell = React.forwardRef<
|
||||||
|
HTMLTableCellElement,
|
||||||
|
React.TdHTMLAttributes<HTMLTableCellElement>
|
||||||
|
>(({ className, ...props }, ref) => (
|
||||||
|
<td
|
||||||
|
ref={ref}
|
||||||
|
className={cn("p-4 align-middle [&:has([role=checkbox])]:pr-0", className)}
|
||||||
|
{...props}
|
||||||
|
/>
|
||||||
|
))
|
||||||
|
TableCell.displayName = "TableCell"
|
||||||
|
|
||||||
|
const TableCaption = React.forwardRef<
|
||||||
|
HTMLTableCaptionElement,
|
||||||
|
React.HTMLAttributes<HTMLTableCaptionElement>
|
||||||
|
>(({ className, ...props }, ref) => (
|
||||||
|
<caption
|
||||||
|
ref={ref}
|
||||||
|
className={cn("mt-4 text-sm text-muted-foreground", className)}
|
||||||
|
{...props}
|
||||||
|
/>
|
||||||
|
))
|
||||||
|
TableCaption.displayName = "TableCaption"
|
||||||
|
|
||||||
|
export {
|
||||||
|
Table,
|
||||||
|
TableHeader,
|
||||||
|
TableBody,
|
||||||
|
TableFooter,
|
||||||
|
TableHead,
|
||||||
|
TableRow,
|
||||||
|
TableCell,
|
||||||
|
TableCaption,
|
||||||
|
}
|
||||||
22
components/ui/textarea.tsx
Normal file
22
components/ui/textarea.tsx
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
import * as React from "react"
|
||||||
|
import { cn } from "@/lib/utils"
|
||||||
|
|
||||||
|
export type TextareaProps = React.TextareaHTMLAttributes<HTMLTextAreaElement>
|
||||||
|
|
||||||
|
const Textarea = React.forwardRef<HTMLTextAreaElement, TextareaProps>(
|
||||||
|
({ className, ...props }, ref) => {
|
||||||
|
return (
|
||||||
|
<textarea
|
||||||
|
className={cn(
|
||||||
|
"flex min-h-[80px] w-full rounded-md border border-input bg-background px-3 py-2 text-sm ring-offset-background placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50",
|
||||||
|
className
|
||||||
|
)}
|
||||||
|
ref={ref}
|
||||||
|
{...props}
|
||||||
|
/>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
)
|
||||||
|
Textarea.displayName = "Textarea"
|
||||||
|
|
||||||
|
export { Textarea }
|
||||||
1
dist/404.html
vendored
1
dist/404.html
vendored
File diff suppressed because one or more lines are too long
18
dist/__next.__PAGE__.txt
vendored
18
dist/__next.__PAGE__.txt
vendored
@ -1,18 +0,0 @@
|
|||||||
1:"$Sreact.fragment"
|
|
||||||
2:I[89567,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/5e38d7d587a86e9d.js"],"DashboardLayout"]
|
|
||||||
f:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"OutletBoundary"]
|
|
||||||
10:"$Sreact.suspense"
|
|
||||||
0:{"buildId":"EGp_7KoqQY85q_AoGxmDe","rsc":["$","$1","c",{"children":[["$","$L2",null,{"children":["$","div",null,{"className":"space-y-8","children":[["$","div",null,{"data-slot":"card","className":"text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm bg-gradient-to-r from-blue-600/20 via-purple-600/20 to-pink-600/20 border-blue-500/30","children":["$","div",null,{"data-slot":"card-content","className":"p-6","children":["$","div",null,{"className":"flex items-start gap-4","children":[["$","div",null,{"className":"w-10 h-10 rounded-full bg-gradient-to-br from-blue-500 to-purple-600 flex items-center justify-center shrink-0","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-5 h-5 text-white","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,{"children":[["$","h2",null,{"className":"text-sm font-semibold text-muted-foreground uppercase tracking-wide mb-2","children":"The Mission"}],["$","p",null,{"className":"text-lg font-medium leading-relaxed","children":"Build an iOS empire that generates the cashflow to retire on our own terms, travel the world with Heidi, honor every family milestone in style, and prove that 53 is just the launchpad to life's greatest chapter."}]]}]]}]}]}],["$","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%"}],"$L3"]}]]}],"$L4","$L5"]}],"$L6","$L7"]}]}],["$L8","$L9"],"$La"]}],"loading":null,"isPartial":false}
|
|
||||||
3:["$","p",null,{"className":"text-xs text-muted-foreground mt-1","children":"+8% this week"}]
|
|
||||||
4:["$","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"}]]}]]}]
|
|
||||||
5:["$","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,{"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"}]]}]]}]
|
|
||||||
6:["$","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"}],"$Lb"]}],"$Lc"]}],"$Ld","$Le"]}]}]]}]]}]
|
|
||||||
7:["$","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"}]}]]}]]}]}]]}]
|
|
||||||
8:["$","script","script-0",{"src":"/_next/static/chunks/05acb8b0bd6792f1.js","async":true}]
|
|
||||||
9:["$","script","script-1",{"src":"/_next/static/chunks/5e38d7d587a86e9d.js","async":true}]
|
|
||||||
a:["$","$Lf",null,{"children":["$","$10",null,{"name":"Next.MetadataOutlet","children":"$@11"}]}]
|
|
||||||
b:["$","p",null,{"className":"text-xs text-muted-foreground","children":"Feb 23"}]
|
|
||||||
c:["$","span",null,{"className":"text-xs px-2 py-1 rounded-full bg-secondary text-secondary-foreground","children":"personal"}]
|
|
||||||
d:["$","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"}]]}]
|
|
||||||
e:["$","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"}]]}]
|
|
||||||
11:null
|
|
||||||
33
dist/__next._full.txt
vendored
33
dist/__next._full.txt
vendored
@ -1,33 +0,0 @@
|
|||||||
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/5e38d7d587a86e9d.js"],"DashboardLayout"]
|
|
||||||
11:I[95111,[],"default"]
|
|
||||||
:HL["/_next/static/chunks/1809eccc07e0ee86.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":"EGp_7KoqQY85q_AoGxmDe","c":["",""],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1809eccc07e0ee86.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,{"data-slot":"card","className":"text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm bg-gradient-to-r from-blue-600/20 via-purple-600/20 to-pink-600/20 border-blue-500/30","children":["$","div",null,{"data-slot":"card-content","className":"p-6","children":["$","div",null,{"className":"flex items-start gap-4","children":[["$","div",null,{"className":"w-10 h-10 rounded-full bg-gradient-to-br from-blue-500 to-purple-600 flex items-center justify-center shrink-0","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-5 h-5 text-white","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,{"children":[["$","h2",null,{"className":"text-sm font-semibold text-muted-foreground uppercase tracking-wide mb-2","children":"The Mission"}],["$","p",null,{"className":"text-lg font-medium leading-relaxed","children":"Build an iOS empire that generates the cashflow to retire on our own terms, travel the world with Heidi, honor every family milestone in style, and prove that 53 is just the launchpad to life's greatest chapter."}]]}]]}]}]}],["$","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":["$L5","$L6","$undefined"]}]]}],"$L7"]}],"$L8","$L9","$La"]}],"$Lb","$Lc"]}]}],["$Ld","$Le"],"$Lf"]}],{},null,false,false]},null,false,false],"$L10",false]],"m":"$undefined","G":["$11",[]],"S":true}
|
|
||||||
16:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"OutletBoundary"]
|
|
||||||
17:"$Sreact.suspense"
|
|
||||||
19:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"ViewportBoundary"]
|
|
||||||
1b:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"MetadataBoundary"]
|
|
||||||
5:["$","circle","1mglay",{"cx":"12","cy":"12","r":"10"}]
|
|
||||||
6:["$","path","dzmm74",{"d":"m9 12 2 2 4-4"}]
|
|
||||||
7:["$","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"}]]}]
|
|
||||||
8:["$","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"}],["$","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"}]]}]]}]
|
|
||||||
9:["$","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"}]]}]]}]
|
|
||||||
a:["$","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"}]]}]]}]
|
|
||||||
b:["$","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"}],"$L12"]}],"$L13"]}],"$L14","$L15"]}]}]]}]]}]
|
|
||||||
c:["$","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"}]}]]}]]}]}]]}]
|
|
||||||
d:["$","script","script-0",{"src":"/_next/static/chunks/05acb8b0bd6792f1.js","async":true,"nonce":"$undefined"}]
|
|
||||||
e:["$","script","script-1",{"src":"/_next/static/chunks/5e38d7d587a86e9d.js","async":true,"nonce":"$undefined"}]
|
|
||||||
f:["$","$L16",null,{"children":["$","$17",null,{"name":"Next.MetadataOutlet","children":"$@18"}]}]
|
|
||||||
10:["$","$1","h",{"children":[null,["$","$L19",null,{"children":"$L1a"}],["$","div",null,{"hidden":true,"children":["$","$L1b",null,{"children":["$","$17",null,{"name":"Next.Metadata","children":"$L1c"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}]
|
|
||||||
12:["$","p",null,{"className":"text-xs text-muted-foreground","children":"Feb 23"}]
|
|
||||||
13:["$","span",null,{"className":"text-xs px-2 py-1 rounded-full bg-secondary text-secondary-foreground","children":"personal"}]
|
|
||||||
14:["$","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"}]]}]
|
|
||||||
15:["$","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"}]]}]
|
|
||||||
1a:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
|
||||||
1d:I[92064,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"IconMark"]
|
|
||||||
18:null
|
|
||||||
1c:[["$","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"}],["$","$L1d","3",{}]]
|
|
||||||
6
dist/__next._head.txt
vendored
6
dist/__next._head.txt
vendored
@ -1,6 +0,0 @@
|
|||||||
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":"EGp_7KoqQY85q_AoGxmDe","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
5
dist/__next._index.txt
vendored
@ -1,5 +0,0 @@
|
|||||||
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/1809eccc07e0ee86.css","style"]
|
|
||||||
0:{"buildId":"EGp_7KoqQY85q_AoGxmDe","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1809eccc07e0ee86.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
4
dist/__next._tree.txt
vendored
@ -1,4 +0,0 @@
|
|||||||
:HL["/_next/static/chunks/1809eccc07e0ee86.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":"EGp_7KoqQY85q_AoGxmDe","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}
|
|
||||||
@ -1,11 +0,0 @@
|
|||||||
self.__BUILD_MANIFEST = {
|
|
||||||
"__rewrites": {
|
|
||||||
"afterFiles": [],
|
|
||||||
"beforeFiles": [],
|
|
||||||
"fallback": []
|
|
||||||
},
|
|
||||||
"sortedPages": [
|
|
||||||
"/_app",
|
|
||||||
"/_error"
|
|
||||||
]
|
|
||||||
};self.__BUILD_MANIFEST_CB && self.__BUILD_MANIFEST_CB()
|
|
||||||
@ -1 +0,0 @@
|
|||||||
[]
|
|
||||||
@ -1 +0,0 @@
|
|||||||
self.__SSG_MANIFEST=new Set([]);self.__SSG_MANIFEST_CB&&self.__SSG_MANIFEST_CB()
|
|
||||||
1
dist/_next/static/chunks/05acb8b0bd6792f1.js
vendored
1
dist/_next/static/chunks/05acb8b0bd6792f1.js
vendored
@ -1 +0,0 @@
|
|||||||
(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
1
dist/_next/static/chunks/17c2e942c16e9743.js
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
5
dist/_next/static/chunks/5e38d7d587a86e9d.js
vendored
5
dist/_next/static/chunks/5e38d7d587a86e9d.js
vendored
File diff suppressed because one or more lines are too long
1
dist/_next/static/chunks/62e9970b2d7e976b.js
vendored
1
dist/_next/static/chunks/62e9970b2d7e976b.js
vendored
File diff suppressed because one or more lines are too long
1
dist/_next/static/chunks/a6dad97d9634a72d.js
vendored
1
dist/_next/static/chunks/a6dad97d9634a72d.js
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
1
dist/_next/static/chunks/aea8ffae850f0f32.js
vendored
1
dist/_next/static/chunks/aea8ffae850f0f32.js
vendored
File diff suppressed because one or more lines are too long
5
dist/_next/static/chunks/e6714e118f8fdaf5.js
vendored
5
dist/_next/static/chunks/e6714e118f8fdaf5.js
vendored
File diff suppressed because one or more lines are too long
1
dist/_next/static/chunks/e855a97db51ad6c7.js
vendored
1
dist/_next/static/chunks/e855a97db51ad6c7.js
vendored
File diff suppressed because one or more lines are too long
1
dist/_next/static/chunks/f3cc14630ba6215c.js
vendored
1
dist/_next/static/chunks/f3cc14630ba6215c.js
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
dist/_next/static/media/favicon.0b3bf435.ico
vendored
BIN
dist/_next/static/media/favicon.0b3bf435.ico
vendored
Binary file not shown.
|
Before Width: | Height: | Size: 25 KiB |
1
dist/_not-found.html
vendored
1
dist/_not-found.html
vendored
File diff suppressed because one or more lines are too long
14
dist/_not-found.txt
vendored
14
dist/_not-found.txt
vendored
@ -1,14 +0,0 @@
|
|||||||
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/1809eccc07e0ee86.css","style"]
|
|
||||||
0:{"P":null,"b":"EGp_7KoqQY85q_AoGxmDe","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/1809eccc07e0ee86.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
14
dist/_not-found/__next._full.txt
vendored
@ -1,14 +0,0 @@
|
|||||||
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/1809eccc07e0ee86.css","style"]
|
|
||||||
0:{"P":null,"b":"EGp_7KoqQY85q_AoGxmDe","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/1809eccc07e0ee86.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
6
dist/_not-found/__next._head.txt
vendored
@ -1,6 +0,0 @@
|
|||||||
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":"EGp_7KoqQY85q_AoGxmDe","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
5
dist/_not-found/__next._index.txt
vendored
@ -1,5 +0,0 @@
|
|||||||
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/1809eccc07e0ee86.css","style"]
|
|
||||||
0:{"buildId":"EGp_7KoqQY85q_AoGxmDe","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1809eccc07e0ee86.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}
|
|
||||||
@ -1,5 +0,0 @@
|
|||||||
1:"$Sreact.fragment"
|
|
||||||
2:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"OutletBoundary"]
|
|
||||||
3:"$Sreact.suspense"
|
|
||||||
0:{"buildId":"EGp_7KoqQY85q_AoGxmDe","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
4
dist/_not-found/__next._not-found.txt
vendored
@ -1,4 +0,0 @@
|
|||||||
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":"EGp_7KoqQY85q_AoGxmDe","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
|
|
||||||
2
dist/_not-found/__next._tree.txt
vendored
2
dist/_not-found/__next._tree.txt
vendored
@ -1,2 +0,0 @@
|
|||||||
:HL["/_next/static/chunks/1809eccc07e0ee86.css","style"]
|
|
||||||
0:{"buildId":"EGp_7KoqQY85q_AoGxmDe","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
1
dist/activity.html
vendored
File diff suppressed because one or more lines are too long
32
dist/activity.txt
vendored
32
dist/activity.txt
vendored
@ -1,32 +0,0 @@
|
|||||||
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/5e38d7d587a86e9d.js"],"DashboardLayout"]
|
|
||||||
5:I[56006,["/_next/static/chunks/aea8ffae850f0f32.js","/_next/static/chunks/5e38d7d587a86e9d.js"],"ScrollArea"]
|
|
||||||
14:I[95111,[],"default"]
|
|
||||||
:HL["/_next/static/chunks/1809eccc07e0ee86.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":"EGp_7KoqQY85q_AoGxmDe","c":["","activity"],"q":"","i":false,"f":[[["",{"children":["activity",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1809eccc07e0ee86.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/5e38d7d587a86e9d.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
32
dist/activity/__next._full.txt
vendored
@ -1,32 +0,0 @@
|
|||||||
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/5e38d7d587a86e9d.js"],"DashboardLayout"]
|
|
||||||
5:I[56006,["/_next/static/chunks/aea8ffae850f0f32.js","/_next/static/chunks/5e38d7d587a86e9d.js"],"ScrollArea"]
|
|
||||||
14:I[95111,[],"default"]
|
|
||||||
:HL["/_next/static/chunks/1809eccc07e0ee86.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":"EGp_7KoqQY85q_AoGxmDe","c":["","activity"],"q":"","i":false,"f":[[["",{"children":["activity",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1809eccc07e0ee86.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/5e38d7d587a86e9d.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
6
dist/activity/__next._head.txt
vendored
@ -1,6 +0,0 @@
|
|||||||
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":"EGp_7KoqQY85q_AoGxmDe","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
5
dist/activity/__next._index.txt
vendored
@ -1,5 +0,0 @@
|
|||||||
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/1809eccc07e0ee86.css","style"]
|
|
||||||
0:{"buildId":"EGp_7KoqQY85q_AoGxmDe","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1809eccc07e0ee86.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
4
dist/activity/__next._tree.txt
vendored
@ -1,4 +0,0 @@
|
|||||||
:HL["/_next/static/chunks/1809eccc07e0ee86.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":"EGp_7KoqQY85q_AoGxmDe","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
20
dist/activity/__next.activity.__PAGE__.txt
vendored
@ -1,20 +0,0 @@
|
|||||||
1:"$Sreact.fragment"
|
|
||||||
2:I[89567,["/_next/static/chunks/aea8ffae850f0f32.js","/_next/static/chunks/5e38d7d587a86e9d.js"],"DashboardLayout"]
|
|
||||||
3:I[56006,["/_next/static/chunks/aea8ffae850f0f32.js","/_next/static/chunks/5e38d7d587a86e9d.js"],"ScrollArea"]
|
|
||||||
11:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"OutletBoundary"]
|
|
||||||
12:"$Sreact.suspense"
|
|
||||||
0:{"buildId":"EGp_7KoqQY85q_AoGxmDe","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/5e38d7d587a86e9d.js","async":true}]
|
|
||||||
10:["$","$L11",null,{"children":["$","$12",null,{"name":"Next.MetadataOutlet","children":"$@13"}]}]
|
|
||||||
13:null
|
|
||||||
4
dist/activity/__next.activity.txt
vendored
4
dist/activity/__next.activity.txt
vendored
@ -1,4 +0,0 @@
|
|||||||
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":"EGp_7KoqQY85q_AoGxmDe","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
|
|
||||||
1
dist/calendar.html
vendored
1
dist/calendar.html
vendored
File diff suppressed because one or more lines are too long
32
dist/calendar.txt
vendored
32
dist/calendar.txt
vendored
@ -1,32 +0,0 @@
|
|||||||
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/5e38d7d587a86e9d.js"],"DashboardLayout"]
|
|
||||||
14:I[95111,[],"default"]
|
|
||||||
:HL["/_next/static/chunks/1809eccc07e0ee86.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":"EGp_7KoqQY85q_AoGxmDe","c":["","calendar"],"q":"","i":false,"f":[[["",{"children":["calendar",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1809eccc07e0ee86.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/5e38d7d587a86e9d.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
32
dist/calendar/__next._full.txt
vendored
@ -1,32 +0,0 @@
|
|||||||
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/5e38d7d587a86e9d.js"],"DashboardLayout"]
|
|
||||||
14:I[95111,[],"default"]
|
|
||||||
:HL["/_next/static/chunks/1809eccc07e0ee86.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":"EGp_7KoqQY85q_AoGxmDe","c":["","calendar"],"q":"","i":false,"f":[[["",{"children":["calendar",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1809eccc07e0ee86.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/5e38d7d587a86e9d.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
6
dist/calendar/__next._head.txt
vendored
@ -1,6 +0,0 @@
|
|||||||
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":"EGp_7KoqQY85q_AoGxmDe","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
5
dist/calendar/__next._index.txt
vendored
@ -1,5 +0,0 @@
|
|||||||
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/1809eccc07e0ee86.css","style"]
|
|
||||||
0:{"buildId":"EGp_7KoqQY85q_AoGxmDe","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1809eccc07e0ee86.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
4
dist/calendar/__next._tree.txt
vendored
@ -1,4 +0,0 @@
|
|||||||
:HL["/_next/static/chunks/1809eccc07e0ee86.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":"EGp_7KoqQY85q_AoGxmDe","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
19
dist/calendar/__next.calendar.__PAGE__.txt
vendored
@ -1,19 +0,0 @@
|
|||||||
1:"$Sreact.fragment"
|
|
||||||
2:I[89567,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/5e38d7d587a86e9d.js"],"DashboardLayout"]
|
|
||||||
10:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"OutletBoundary"]
|
|
||||||
11:"$Sreact.suspense"
|
|
||||||
0:{"buildId":"EGp_7KoqQY85q_AoGxmDe","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/5e38d7d587a86e9d.js","async":true}]
|
|
||||||
f:["$","$L10",null,{"children":["$","$11",null,{"name":"Next.MetadataOutlet","children":"$@12"}]}]
|
|
||||||
12:null
|
|
||||||
4
dist/calendar/__next.calendar.txt
vendored
4
dist/calendar/__next.calendar.txt
vendored
@ -1,4 +0,0 @@
|
|||||||
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":"EGp_7KoqQY85q_AoGxmDe","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
|
|
||||||
1
dist/documents.html
vendored
1
dist/documents.html
vendored
File diff suppressed because one or more lines are too long
35
dist/documents.txt
vendored
35
dist/documents.txt
vendored
@ -1,35 +0,0 @@
|
|||||||
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/5e38d7d587a86e9d.js"],"DashboardLayout"]
|
|
||||||
f:I[95111,[],"default"]
|
|
||||||
:HL["/_next/static/chunks/1809eccc07e0ee86.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":"EGp_7KoqQY85q_AoGxmDe","c":["","documents"],"q":"","i":false,"f":[[["",{"children":["documents",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1809eccc07e0ee86.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/5e38d7d587a86e9d.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
35
dist/documents/__next._full.txt
vendored
@ -1,35 +0,0 @@
|
|||||||
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/5e38d7d587a86e9d.js"],"DashboardLayout"]
|
|
||||||
f:I[95111,[],"default"]
|
|
||||||
:HL["/_next/static/chunks/1809eccc07e0ee86.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":"EGp_7KoqQY85q_AoGxmDe","c":["","documents"],"q":"","i":false,"f":[[["",{"children":["documents",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1809eccc07e0ee86.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/5e38d7d587a86e9d.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
6
dist/documents/__next._head.txt
vendored
@ -1,6 +0,0 @@
|
|||||||
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":"EGp_7KoqQY85q_AoGxmDe","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
5
dist/documents/__next._index.txt
vendored
@ -1,5 +0,0 @@
|
|||||||
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/1809eccc07e0ee86.css","style"]
|
|
||||||
0:{"buildId":"EGp_7KoqQY85q_AoGxmDe","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1809eccc07e0ee86.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
4
dist/documents/__next._tree.txt
vendored
@ -1,4 +0,0 @@
|
|||||||
:HL["/_next/static/chunks/1809eccc07e0ee86.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":"EGp_7KoqQY85q_AoGxmDe","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
22
dist/documents/__next.documents.__PAGE__.txt
vendored
@ -1,22 +0,0 @@
|
|||||||
1:"$Sreact.fragment"
|
|
||||||
2:I[89567,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/5e38d7d587a86e9d.js"],"DashboardLayout"]
|
|
||||||
13:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"OutletBoundary"]
|
|
||||||
14:"$Sreact.suspense"
|
|
||||||
0:{"buildId":"EGp_7KoqQY85q_AoGxmDe","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/5e38d7d587a86e9d.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
4
dist/documents/__next.documents.txt
vendored
@ -1,4 +0,0 @@
|
|||||||
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":"EGp_7KoqQY85q_AoGxmDe","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
|
|
||||||
BIN
dist/favicon.ico
vendored
BIN
dist/favicon.ico
vendored
Binary file not shown.
|
Before Width: | Height: | Size: 25 KiB |
1
dist/file.svg
vendored
1
dist/file.svg
vendored
@ -1 +0,0 @@
|
|||||||
<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>
|
|
||||||
|
Before Width: | Height: | Size: 391 B |
1
dist/globe.svg
vendored
1
dist/globe.svg
vendored
@ -1 +0,0 @@
|
|||||||
<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>
|
|
||||||
|
Before Width: | Height: | Size: 1.0 KiB |
1
dist/index.html
vendored
1
dist/index.html
vendored
File diff suppressed because one or more lines are too long
33
dist/index.txt
vendored
33
dist/index.txt
vendored
@ -1,33 +0,0 @@
|
|||||||
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/5e38d7d587a86e9d.js"],"DashboardLayout"]
|
|
||||||
11:I[95111,[],"default"]
|
|
||||||
:HL["/_next/static/chunks/1809eccc07e0ee86.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":"EGp_7KoqQY85q_AoGxmDe","c":["",""],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1809eccc07e0ee86.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,{"data-slot":"card","className":"text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm bg-gradient-to-r from-blue-600/20 via-purple-600/20 to-pink-600/20 border-blue-500/30","children":["$","div",null,{"data-slot":"card-content","className":"p-6","children":["$","div",null,{"className":"flex items-start gap-4","children":[["$","div",null,{"className":"w-10 h-10 rounded-full bg-gradient-to-br from-blue-500 to-purple-600 flex items-center justify-center shrink-0","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-5 h-5 text-white","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,{"children":[["$","h2",null,{"className":"text-sm font-semibold text-muted-foreground uppercase tracking-wide mb-2","children":"The Mission"}],["$","p",null,{"className":"text-lg font-medium leading-relaxed","children":"Build an iOS empire that generates the cashflow to retire on our own terms, travel the world with Heidi, honor every family milestone in style, and prove that 53 is just the launchpad to life's greatest chapter."}]]}]]}]}]}],["$","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":["$L5","$L6","$undefined"]}]]}],"$L7"]}],"$L8","$L9","$La"]}],"$Lb","$Lc"]}]}],["$Ld","$Le"],"$Lf"]}],{},null,false,false]},null,false,false],"$L10",false]],"m":"$undefined","G":["$11",[]],"S":true}
|
|
||||||
16:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"OutletBoundary"]
|
|
||||||
17:"$Sreact.suspense"
|
|
||||||
19:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"ViewportBoundary"]
|
|
||||||
1b:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"MetadataBoundary"]
|
|
||||||
5:["$","circle","1mglay",{"cx":"12","cy":"12","r":"10"}]
|
|
||||||
6:["$","path","dzmm74",{"d":"m9 12 2 2 4-4"}]
|
|
||||||
7:["$","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"}]]}]
|
|
||||||
8:["$","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"}],["$","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"}]]}]]}]
|
|
||||||
9:["$","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"}]]}]]}]
|
|
||||||
a:["$","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"}]]}]]}]
|
|
||||||
b:["$","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"}],"$L12"]}],"$L13"]}],"$L14","$L15"]}]}]]}]]}]
|
|
||||||
c:["$","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"}]}]]}]]}]}]]}]
|
|
||||||
d:["$","script","script-0",{"src":"/_next/static/chunks/05acb8b0bd6792f1.js","async":true,"nonce":"$undefined"}]
|
|
||||||
e:["$","script","script-1",{"src":"/_next/static/chunks/5e38d7d587a86e9d.js","async":true,"nonce":"$undefined"}]
|
|
||||||
f:["$","$L16",null,{"children":["$","$17",null,{"name":"Next.MetadataOutlet","children":"$@18"}]}]
|
|
||||||
10:["$","$1","h",{"children":[null,["$","$L19",null,{"children":"$L1a"}],["$","div",null,{"hidden":true,"children":["$","$L1b",null,{"children":["$","$17",null,{"name":"Next.Metadata","children":"$L1c"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}]
|
|
||||||
12:["$","p",null,{"className":"text-xs text-muted-foreground","children":"Feb 23"}]
|
|
||||||
13:["$","span",null,{"className":"text-xs px-2 py-1 rounded-full bg-secondary text-secondary-foreground","children":"personal"}]
|
|
||||||
14:["$","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"}]]}]
|
|
||||||
15:["$","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"}]]}]
|
|
||||||
1a:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
|
||||||
1d:I[92064,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"IconMark"]
|
|
||||||
18:null
|
|
||||||
1c:[["$","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"}],["$","$L1d","3",{}]]
|
|
||||||
1
dist/mission.html
vendored
1
dist/mission.html
vendored
File diff suppressed because one or more lines are too long
34
dist/mission.txt
vendored
34
dist/mission.txt
vendored
@ -1,34 +0,0 @@
|
|||||||
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/5e38d7d587a86e9d.js"],"DashboardLayout"]
|
|
||||||
10:I[95111,[],"default"]
|
|
||||||
:HL["/_next/static/chunks/1809eccc07e0ee86.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":"EGp_7KoqQY85q_AoGxmDe","c":["","mission"],"q":"","i":false,"f":[[["",{"children":["mission",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1809eccc07e0ee86.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/5e38d7d587a86e9d.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
34
dist/mission/__next._full.txt
vendored
@ -1,34 +0,0 @@
|
|||||||
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/5e38d7d587a86e9d.js"],"DashboardLayout"]
|
|
||||||
10:I[95111,[],"default"]
|
|
||||||
:HL["/_next/static/chunks/1809eccc07e0ee86.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":"EGp_7KoqQY85q_AoGxmDe","c":["","mission"],"q":"","i":false,"f":[[["",{"children":["mission",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1809eccc07e0ee86.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/5e38d7d587a86e9d.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
6
dist/mission/__next._head.txt
vendored
@ -1,6 +0,0 @@
|
|||||||
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":"EGp_7KoqQY85q_AoGxmDe","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
5
dist/mission/__next._index.txt
vendored
@ -1,5 +0,0 @@
|
|||||||
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/1809eccc07e0ee86.css","style"]
|
|
||||||
0:{"buildId":"EGp_7KoqQY85q_AoGxmDe","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1809eccc07e0ee86.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
4
dist/mission/__next._tree.txt
vendored
@ -1,4 +0,0 @@
|
|||||||
:HL["/_next/static/chunks/1809eccc07e0ee86.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":"EGp_7KoqQY85q_AoGxmDe","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
21
dist/mission/__next.mission.__PAGE__.txt
vendored
@ -1,21 +0,0 @@
|
|||||||
1:"$Sreact.fragment"
|
|
||||||
2:I[89567,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/5e38d7d587a86e9d.js"],"DashboardLayout"]
|
|
||||||
12:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"OutletBoundary"]
|
|
||||||
13:"$Sreact.suspense"
|
|
||||||
0:{"buildId":"EGp_7KoqQY85q_AoGxmDe","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/5e38d7d587a86e9d.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
4
dist/mission/__next.mission.txt
vendored
@ -1,4 +0,0 @@
|
|||||||
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":"EGp_7KoqQY85q_AoGxmDe","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
|
|
||||||
1
dist/next.svg
vendored
1
dist/next.svg
vendored
@ -1 +0,0 @@
|
|||||||
<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>
|
|
||||||
|
Before Width: | Height: | Size: 1.3 KiB |
1
dist/tasks.html
vendored
1
dist/tasks.html
vendored
File diff suppressed because one or more lines are too long
35
dist/tasks.txt
vendored
35
dist/tasks.txt
vendored
File diff suppressed because one or more lines are too long
35
dist/tasks/__next._full.txt
vendored
35
dist/tasks/__next._full.txt
vendored
File diff suppressed because one or more lines are too long
6
dist/tasks/__next._head.txt
vendored
6
dist/tasks/__next._head.txt
vendored
@ -1,6 +0,0 @@
|
|||||||
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":"EGp_7KoqQY85q_AoGxmDe","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/tasks/__next._index.txt
vendored
5
dist/tasks/__next._index.txt
vendored
@ -1,5 +0,0 @@
|
|||||||
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/1809eccc07e0ee86.css","style"]
|
|
||||||
0:{"buildId":"EGp_7KoqQY85q_AoGxmDe","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1809eccc07e0ee86.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/tasks/__next._tree.txt
vendored
4
dist/tasks/__next._tree.txt
vendored
@ -1,4 +0,0 @@
|
|||||||
:HL["/_next/static/chunks/1809eccc07e0ee86.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":"EGp_7KoqQY85q_AoGxmDe","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"tasks","paramType":null,"paramKey":"tasks","hasRuntimePrefetch":false,"slots":{"children":{"name":"__PAGE__","paramType":null,"paramKey":"__PAGE__","hasRuntimePrefetch":false,"slots":null,"isRootLayout":false}},"isRootLayout":false}},"isRootLayout":true},"staleTime":300}
|
|
||||||
26
dist/tasks/__next.tasks.__PAGE__.txt
vendored
26
dist/tasks/__next.tasks.__PAGE__.txt
vendored
@ -1,26 +0,0 @@
|
|||||||
1:"$Sreact.fragment"
|
|
||||||
2:I[89567,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/5e38d7d587a86e9d.js"],"DashboardLayout"]
|
|
||||||
17:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"OutletBoundary"]
|
|
||||||
18:"$Sreact.suspense"
|
|
||||||
0:{"buildId":"EGp_7KoqQY85q_AoGxmDe","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":"Tasks"}],["$","p",null,{"className":"text-muted-foreground mt-1","children":"Manage your missions and track progress."}]]}],["$","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"]}],"Add Task"]}]]}],["$","div",null,{"className":"grid grid-cols-1 md:grid-cols-3 gap-6","children":[["$","div","todo",{"className":"space-y-4","children":[["$","div",null,{"className":"flex items-center justify-between","children":["$","h2",null,{"className":"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-circle w-4 h-4","aria-hidden":"true","children":[["$","circle","1mglay",{"cx":"12","cy":"12","r":"10"}],"$undefined"]}],false,false,"To Do",["$","span",null,{"className":"text-muted-foreground text-sm","children":["(",3,")"]}]]}]}],["$","div",null,{"className":"space-y-3","children":[[["$","div","1",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm cursor-pointer hover:shadow-md transition-shadow","children":["$","div",null,{"data-slot":"card-content","className":"p-4 space-y-3","children":[["$","div",null,{"className":"flex items-start justify-between gap-2","children":[["$","h3",null,{"className":"font-medium text-sm","children":"Submit LLC paperwork"}],["$","span",null,{"data-slot":"badge","data-variant":"outline","className":"inline-flex items-center justify-center rounded-full border 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 [a&]:hover:bg-accent [a&]:hover:text-accent-foreground text-xs bg-red-500/10 text-red-500 border-red-500/20","children":"high"}]]}],["$","p",null,{"className":"text-xs text-muted-foreground","children":"For remaining iOS apps"}],["$","div",null,{"className":"flex items-center gap-2 flex-wrap","children":[["$","span","business",{"className":"text-[10px] px-2 py-0.5 rounded-full bg-secondary text-secondary-foreground","children":"business"}],["$","span","legal",{"className":"text-[10px] px-2 py-0.5 rounded-full bg-secondary text-secondary-foreground","children":"legal"}]]}],["$","div",null,{"className":"flex items-center gap-1 text-xs text-muted-foreground pt-2 border-t border-border","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":["$L3","$L4","$L5","$L6","$undefined"]}],"ASAP"]}]]}]}],"$L7","$L8"],"$L9"]}]]}],"$La","$Lb"]}],"$Lc"]}]}],["$Ld","$Le"],"$Lf"]}],"loading":null,"isPartial":false}
|
|
||||||
3:["$","path","1cmpym",{"d":"M8 2v4"}]
|
|
||||||
4:["$","path","4m81vk",{"d":"M16 2v4"}]
|
|
||||||
5:["$","rect","1hopcy",{"width":"18","height":"18","x":"3","y":"4","rx":"2"}]
|
|
||||||
6:["$","path","8toen8",{"d":"M3 10h18"}]
|
|
||||||
7:["$","div","2",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm cursor-pointer hover:shadow-md transition-shadow","children":["$","div",null,{"data-slot":"card-content","className":"p-4 space-y-3","children":[["$","div",null,{"className":"flex items-start justify-between gap-2","children":[["$","h3",null,{"className":"font-medium text-sm","children":"Fix App Clips testing"}],["$","span",null,{"data-slot":"badge","data-variant":"outline","className":"inline-flex items-center justify-center rounded-full border 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 [a&]:hover:bg-accent [a&]:hover:text-accent-foreground text-xs bg-red-500/10 text-red-500 border-red-500/20","children":"high"}]]}],["$","p",null,{"className":"text-xs text-muted-foreground","children":"Debug the in-progress app"}],["$","div",null,{"className":"flex items-center gap-2 flex-wrap","children":[["$","span","ios",{"className":"text-[10px] px-2 py-0.5 rounded-full bg-secondary text-secondary-foreground","children":"ios"}],["$","span","development",{"className":"text-[10px] px-2 py-0.5 rounded-full bg-secondary text-secondary-foreground","children":"development"}]]}],["$","div",null,{"className":"flex items-center gap-1 text-xs text-muted-foreground pt-2 border-t border-border","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"]}],"This week"]}]]}]}]
|
|
||||||
8:["$","div","3",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm cursor-pointer hover:shadow-md transition-shadow","children":["$","div",null,{"data-slot":"card-content","className":"p-4 space-y-3","children":[["$","div",null,{"className":"flex items-start justify-between gap-2","children":[["$","h3",null,{"className":"font-medium text-sm","children":"Plan fishing trip details"}],["$","span",null,{"data-slot":"badge","data-variant":"outline","className":"inline-flex items-center justify-center rounded-full border 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 [a&]:hover:bg-accent [a&]:hover:text-accent-foreground text-xs bg-yellow-500/10 text-yellow-500 border-yellow-500/20","children":"medium"}]]}],["$","p",null,{"className":"text-xs text-muted-foreground","children":"36hr offshore with Jeromy"}],["$","div",null,{"className":"flex items-center gap-2 flex-wrap","children":[["$","span","family",{"className":"text-[10px] px-2 py-0.5 rounded-full bg-secondary text-secondary-foreground","children":"family"}],["$","span","fun",{"className":"text-[10px] px-2 py-0.5 rounded-full bg-secondary text-secondary-foreground","children":"fun"}]]}],["$","div",null,{"className":"flex items-center gap-1 text-xs text-muted-foreground pt-2 border-t border-border","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"]}],"Soon"]}]]}]}]
|
|
||||||
9:["$","button",null,{"data-slot":"button","data-variant":"ghost","data-size":"default","className":"inline-flex items-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 h-9 px-4 py-2 has-[>svg]:px-3 w-full justify-start text-muted-foreground","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"]}],"Add task"]}]
|
|
||||||
a:["$","div","inprogress",{"className":"space-y-4","children":[["$","div",null,{"className":"flex items-center justify-between","children":["$","h2",null,{"className":"font-semibold flex items-center gap-2","children":[false,["$","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","aria-hidden":"true","children":[["$","circle","1mglay",{"cx":"12","cy":"12","r":"10"}],["$","path","mmk7yg",{"d":"M12 6v6l4 2"}],"$undefined"]}],false,"In Progress",["$","span",null,{"className":"text-muted-foreground text-sm","children":["(",2,")"]}]]}]}],["$","div",null,{"className":"space-y-3","children":[[["$","div","4",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm cursor-pointer hover:shadow-md transition-shadow","children":["$","div",null,{"data-slot":"card-content","className":"p-4 space-y-3","children":[["$","div",null,{"className":"flex items-start justify-between gap-2","children":[["$","h3",null,{"className":"font-medium text-sm","children":"Mission Control Dashboard"}],["$","span",null,{"data-slot":"badge","data-variant":"outline","className":"inline-flex items-center justify-center rounded-full border 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 [a&]:hover:bg-accent [a&]:hover:text-accent-foreground text-xs bg-red-500/10 text-red-500 border-red-500/20","children":"high"}]]}],["$","p",null,{"className":"text-xs text-muted-foreground","children":"Building the central hub"}],["$","div",null,{"className":"flex items-center gap-2 flex-wrap","children":[["$","span","project",{"className":"text-[10px] px-2 py-0.5 rounded-full bg-secondary text-secondary-foreground","children":"project"}],["$","span","development",{"className":"text-[10px] px-2 py-0.5 rounded-full bg-secondary text-secondary-foreground","children":"development"}]]}],["$","div",null,{"className":"flex items-center gap-1 text-xs text-muted-foreground pt-2 border-t border-border","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"]}],"Today"]}]]}]}],["$","div","5",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm cursor-pointer hover:shadow-md transition-shadow","children":["$","div",null,{"data-slot":"card-content","className":"p-4 space-y-3","children":[["$","div",null,{"className":"flex items-start justify-between gap-2","children":[["$","h3",null,{"className":"font-medium text-sm","children":"Toyota contract work"}],["$","span",null,{"data-slot":"badge","data-variant":"outline","className":"inline-flex items-center justify-center rounded-full border 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 [a&]:hover:bg-accent [a&]:hover:text-accent-foreground text-xs bg-red-500/10 text-red-500 border-red-500/20","children":"high"}]]}],["$","p",null,{"className":"text-xs text-muted-foreground","children":"iOS Lead Architect duties"}],"$L10","$L11"]}]}]],"$L12"]}]]}]
|
|
||||||
b:["$","div","done",{"className":"space-y-4","children":[["$","div",null,{"className":"flex items-center justify-between","children":["$","h2",null,{"className":"font-semibold flex items-center gap-2","children":[false,false,["$","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","aria-hidden":"true","children":[["$","circle","1mglay",{"cx":"12","cy":"12","r":"10"}],["$","path","dzmm74",{"d":"m9 12 2 2 4-4"}],"$undefined"]}],"Done",["$","span",null,{"className":"text-muted-foreground text-sm","children":["(",3,")"]}]]}]}],["$","div",null,{"className":"space-y-3","children":[[["$","div","6",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm cursor-pointer hover:shadow-md transition-shadow","children":["$","div",null,{"data-slot":"card-content","className":"p-4 space-y-3","children":[["$","div",null,{"className":"flex items-start justify-between gap-2","children":[["$","h3",null,{"className":"font-medium text-sm","children":"Created 6 iOS apps"}],["$","span",null,{"data-slot":"badge","data-variant":"outline","className":"inline-flex items-center justify-center rounded-full border 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 [a&]:hover:bg-accent [a&]:hover:text-accent-foreground text-xs bg-red-500/10 text-red-500 border-red-500/20","children":"high"}]]}],["$","p",null,{"className":"text-xs text-muted-foreground","children":"2 live, 2 pending, 1 in review, 1 in progress"}],["$","div",null,{"className":"flex items-center gap-2 flex-wrap","children":[["$","span","ios",{"className":"text-[10px] px-2 py-0.5 rounded-full bg-secondary text-secondary-foreground","children":"ios"}],["$","span","milestone",{"className":"text-[10px] px-2 py-0.5 rounded-full bg-secondary text-secondary-foreground","children":"milestone"}]]}],["$","div",null,{"className":"flex items-center gap-1 text-xs text-muted-foreground pt-2 border-t border-border","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"]}],"Completed"]}]]}]}],["$","div","7",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm cursor-pointer hover:shadow-md transition-shadow","children":["$","div",null,{"data-slot":"card-content","className":"p-4 space-y-3","children":[["$","div",null,{"className":"flex items-start justify-between gap-2","children":[["$","h3",null,{"className":"font-medium text-sm","children":"Daily skills automation"}],["$","span",null,{"data-slot":"badge","data-variant":"outline","className":"inline-flex items-center justify-center rounded-full border 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 [a&]:hover:bg-accent [a&]:hover:text-accent-foreground text-xs bg-yellow-500/10 text-yellow-500 border-yellow-500/20","children":"medium"}]]}],["$","p",null,{"className":"text-xs text-muted-foreground","children":"File system, calendar, email, reminders"}],"$L13","$L14"]}]}],"$L15"],"$L16"]}]]}]
|
|
||||||
c:["$","div",null,{"className":"grid grid-cols-2 sm:grid-cols-4 gap-4 pt-6 border-t border-border","children":[["$","div",null,{"className":"text-center","children":[["$","div",null,{"className":"text-2xl font-bold","children":"12"}],["$","div",null,{"className":"text-xs text-muted-foreground","children":"Total Tasks"}]]}],["$","div",null,{"className":"text-center","children":[["$","div",null,{"className":"text-2xl font-bold","children":"3"}],["$","div",null,{"className":"text-xs text-muted-foreground","children":"To Do"}]]}],["$","div",null,{"className":"text-center","children":[["$","div",null,{"className":"text-2xl font-bold","children":"2"}],["$","div",null,{"className":"text-xs text-muted-foreground","children":"In Progress"}]]}],["$","div",null,{"className":"text-center","children":[["$","div",null,{"className":"text-2xl font-bold","children":"7"}],["$","div",null,{"className":"text-xs text-muted-foreground","children":"Completed"}]]}]]}]
|
|
||||||
d:["$","script","script-0",{"src":"/_next/static/chunks/05acb8b0bd6792f1.js","async":true}]
|
|
||||||
e:["$","script","script-1",{"src":"/_next/static/chunks/5e38d7d587a86e9d.js","async":true}]
|
|
||||||
f:["$","$L17",null,{"children":["$","$18",null,{"name":"Next.MetadataOutlet","children":"$@19"}]}]
|
|
||||||
10:["$","div",null,{"className":"flex items-center gap-2 flex-wrap","children":[["$","span","work",{"className":"text-[10px] px-2 py-0.5 rounded-full bg-secondary text-secondary-foreground","children":"work"}],["$","span","contract",{"className":"text-[10px] px-2 py-0.5 rounded-full bg-secondary text-secondary-foreground","children":"contract"}]]}]
|
|
||||||
11:["$","div",null,{"className":"flex items-center gap-1 text-xs text-muted-foreground pt-2 border-t border-border","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"]}],"Daily"]}]
|
|
||||||
12:["$","button",null,{"data-slot":"button","data-variant":"ghost","data-size":"default","className":"inline-flex items-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 h-9 px-4 py-2 has-[>svg]:px-3 w-full justify-start text-muted-foreground","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"]}],"Add task"]}]
|
|
||||||
13:["$","div",null,{"className":"flex items-center gap-2 flex-wrap","children":[["$","span","automation",{"className":"text-[10px] px-2 py-0.5 rounded-full bg-secondary text-secondary-foreground","children":"automation"}],["$","span","system",{"className":"text-[10px] px-2 py-0.5 rounded-full bg-secondary text-secondary-foreground","children":"system"}]]}]
|
|
||||||
14:["$","div",null,{"className":"flex items-center gap-1 text-xs text-muted-foreground pt-2 border-t border-border","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"]}],"Completed"]}]
|
|
||||||
15:["$","div","8",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm cursor-pointer hover:shadow-md transition-shadow","children":["$","div",null,{"data-slot":"card-content","className":"p-4 space-y-3","children":[["$","div",null,{"className":"flex items-start justify-between gap-2","children":[["$","h3",null,{"className":"font-medium text-sm","children":"Morning briefing setup"}],["$","span",null,{"data-slot":"badge","data-variant":"outline","className":"inline-flex items-center justify-center rounded-full border 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 [a&]:hover:bg-accent [a&]:hover:text-accent-foreground text-xs bg-yellow-500/10 text-yellow-500 border-yellow-500/20","children":"medium"}]]}],["$","p",null,{"className":"text-xs text-muted-foreground","children":"Scheduled for 7:15 AM daily"}],["$","div",null,{"className":"flex items-center gap-2 flex-wrap","children":[["$","span","automation",{"className":"text-[10px] px-2 py-0.5 rounded-full bg-secondary text-secondary-foreground","children":"automation"}],["$","span","routine",{"className":"text-[10px] px-2 py-0.5 rounded-full bg-secondary text-secondary-foreground","children":"routine"}]]}],["$","div",null,{"className":"flex items-center gap-1 text-xs text-muted-foreground pt-2 border-t border-border","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"]}],"Completed"]}]]}]}]
|
|
||||||
16:["$","button",null,{"data-slot":"button","data-variant":"ghost","data-size":"default","className":"inline-flex items-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 h-9 px-4 py-2 has-[>svg]:px-3 w-full justify-start text-muted-foreground","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"]}],"Add task"]}]
|
|
||||||
19:null
|
|
||||||
4
dist/tasks/__next.tasks.txt
vendored
4
dist/tasks/__next.tasks.txt
vendored
@ -1,4 +0,0 @@
|
|||||||
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":"EGp_7KoqQY85q_AoGxmDe","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
|
|
||||||
1
dist/tools.html
vendored
1
dist/tools.html
vendored
File diff suppressed because one or more lines are too long
41
dist/tools.txt
vendored
41
dist/tools.txt
vendored
@ -1,41 +0,0 @@
|
|||||||
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/e855a97db51ad6c7.js","/_next/static/chunks/5e38d7d587a86e9d.js"],"DashboardLayout"]
|
|
||||||
5:I[5666,["/_next/static/chunks/e855a97db51ad6c7.js","/_next/static/chunks/5e38d7d587a86e9d.js"],"Tabs"]
|
|
||||||
6:I[5666,["/_next/static/chunks/e855a97db51ad6c7.js","/_next/static/chunks/5e38d7d587a86e9d.js"],"TabsList"]
|
|
||||||
7:I[5666,["/_next/static/chunks/e855a97db51ad6c7.js","/_next/static/chunks/5e38d7d587a86e9d.js"],"TabsTrigger"]
|
|
||||||
8:I[5666,["/_next/static/chunks/e855a97db51ad6c7.js","/_next/static/chunks/5e38d7d587a86e9d.js"],"TabsContent"]
|
|
||||||
16:I[95111,[],"default"]
|
|
||||||
:HL["/_next/static/chunks/1809eccc07e0ee86.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":"EGp_7KoqQY85q_AoGxmDe","c":["","tools"],"q":"","i":false,"f":[[["",{"children":["tools",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1809eccc07e0ee86.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":"Tool Builder"}],["$","p",null,{"className":"text-muted-foreground mt-1","children":"Create and manage custom tools and skills."}]]}],["$","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"]}],"Build New Tool"]}]]}],["$","$L5",null,{"defaultValue":"installed","className":"space-y-6","children":[["$","$L6",null,{"children":[["$","$L7",null,{"value":"installed","children":["Installed (",5,")"]}],["$","$L7",null,{"value":"templates","children":"Templates"}],["$","$L7",null,{"value":"builder","children":"Quick Builder"}]]}],["$","$L8",null,{"value":"installed","className":"space-y-4","children":["$","div",null,{"className":"grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-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-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 pb-3","children":["$L9","$La"]}],"$Lb"]}],"$Lc","$Ld","$Le","$Lf"]}]}],"$L10","$L11"]}]]}]}],["$L12","$L13"],"$L14"]}],{},null,false,false]},null,false,false]},null,false,false],"$L15",false]],"m":"$undefined","G":["$16",[]],"S":true}
|
|
||||||
1c:I[3642,["/_next/static/chunks/e855a97db51ad6c7.js","/_next/static/chunks/5e38d7d587a86e9d.js"],"Label"]
|
|
||||||
1e:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"OutletBoundary"]
|
|
||||||
1f:"$Sreact.suspense"
|
|
||||||
21:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"ViewportBoundary"]
|
|
||||||
23:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"MetadataBoundary"]
|
|
||||||
9:["$","div",null,{"className":"flex items-start justify-between","children":[["$","div",null,{"className":"w-10 h-10 rounded-lg bg-secondary flex items-center justify-center","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"]}]}],["$","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":"system"}]]}]
|
|
||||||
a:["$","div",null,{"data-slot":"card-title","className":"font-semibold text-base mt-3","children":"File System Assistant"}]
|
|
||||||
b:["$","div",null,{"data-slot":"card-content","className":"px-6","children":[["$","p",null,{"className":"text-sm text-muted-foreground mb-4","children":"Organize, search, and manage local files"}],["$","div",null,{"className":"flex items-center justify-between 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-circle-check w-3 h-3 text-green-500","aria-hidden":"true","children":[["$","circle","1mglay",{"cx":"12","cy":"12","r":"10"}],["$","path","dzmm74",{"d":"m9 12 2 2 4-4"}],"$undefined"]}],"active"]}],["$","span",null,{"children":["Last used: ","Today"]}]]}]]}]
|
|
||||||
c:["$","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-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 pb-3","children":[["$","div",null,{"className":"flex items-start justify-between","children":[["$","div",null,{"className":"w-10 h-10 rounded-lg bg-secondary flex items-center justify-center","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"]}]}],["$","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":"web"}]]}],["$","div",null,{"data-slot":"card-title","className":"font-semibold text-base mt-3","children":"Browser Automation"}]]}],["$","div",null,{"data-slot":"card-content","className":"px-6","children":[["$","p",null,{"className":"text-sm text-muted-foreground mb-4","children":"Web research, screenshots, form filling"}],["$","div",null,{"className":"flex items-center justify-between 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-circle-check w-3 h-3 text-green-500","aria-hidden":"true","children":[["$","circle","1mglay",{"cx":"12","cy":"12","r":"10"}],["$","path","dzmm74",{"d":"m9 12 2 2 4-4"}],"$undefined"]}],"active"]}],["$","span",null,{"children":["Last used: ","Yesterday"]}]]}]]}]]}]
|
|
||||||
d:["$","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-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 pb-3","children":[["$","div",null,{"className":"flex items-start justify-between","children":[["$","div",null,{"className":"w-10 h-10 rounded-lg bg-secondary flex items-center justify-center","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"]}]}],["$","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":"calendar"}]]}],["$","div",null,{"data-slot":"card-title","className":"font-semibold text-base mt-3","children":"Calendar Assistant"}]]}],["$","div",null,{"data-slot":"card-content","className":"px-6","children":[["$","p",null,{"className":"text-sm text-muted-foreground mb-4","children":"Apple Calendar + Google Calendar integration"}],["$","div",null,{"className":"flex items-center justify-between 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-circle-check w-3 h-3 text-green-500","aria-hidden":"true","children":[["$","circle","1mglay",{"cx":"12","cy":"12","r":"10"}],["$","path","dzmm74",{"d":"m9 12 2 2 4-4"}],"$undefined"]}],"active"]}],["$","span",null,{"children":["Last used: ","Today"]}]]}]]}]]}]
|
|
||||||
e:["$","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-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 pb-3","children":[["$","div",null,{"className":"flex items-start justify-between","children":[["$","div",null,{"className":"w-10 h-10 rounded-lg bg-secondary flex items-center justify-center","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"]}]}],["$","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":"email"}]]}],["$","div",null,{"data-slot":"card-title","className":"font-semibold text-base mt-3","children":"Email Assistant"}]]}],["$","div",null,{"data-slot":"card-content","className":"px-6","children":[["$","p",null,{"className":"text-sm text-muted-foreground mb-4","children":"Apple Mail + Gmail integration"}],["$","div",null,{"className":"flex items-center justify-between 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-circle-check w-3 h-3 text-green-500","aria-hidden":"true","children":[["$","circle","1mglay",{"cx":"12","cy":"12","r":"10"}],["$","path","dzmm74",{"d":"m9 12 2 2 4-4"}],"$undefined"]}],"active"]}],["$","span",null,{"children":["Last used: ","Today"]}]]}]]}]]}]
|
|
||||||
f:["$","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-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 pb-3","children":[["$","div",null,{"className":"flex items-start justify-between","children":[["$","div",null,{"className":"w-10 h-10 rounded-lg bg-secondary flex items-center justify-center","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"]}]}],["$","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":"automation"}]]}],["$","div",null,{"data-slot":"card-title","className":"font-semibold text-base mt-3","children":"Daily Automation"}]]}],["$","div",null,{"data-slot":"card-content","className":"px-6","children":[["$","p",null,{"className":"text-sm text-muted-foreground mb-4","children":"Morning briefing orchestration"}],["$","div",null,{"className":"flex items-center justify-between 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-circle-check w-3 h-3 text-green-500","aria-hidden":"true","children":[["$","circle","1mglay",{"cx":"12","cy":"12","r":"10"}],["$","path","dzmm74",{"d":"m9 12 2 2 4-4"}],"$undefined"]}],"active"]}],["$","span",null,{"children":["Last used: ","Today"]}]]}]]}]]}]
|
|
||||||
10:["$","$L8",null,{"value":"templates","className":"space-y-4","children":["$","div",null,{"className":"grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4","children":[["$","div","0",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm cursor-pointer hover:shadow-md transition-shadow","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 pb-3","children":[["$","div",null,{"className":"flex items-start justify-between","children":[["$","div",null,{"className":"w-10 h-10 rounded-lg bg-secondary flex items-center justify-center","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-globe w-5 h-5","aria-hidden":"true","children":[["$","circle","1mglay",{"cx":"12","cy":"12","r":"10"}],["$","path","13o1zl",{"d":"M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20"}],["$","path","9i4pu4",{"d":"M2 12h20"}],"$undefined"]}]}],["$","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 border-border text-foreground [a&]:hover:bg-accent [a&]:hover:text-accent-foreground","children":"Template"}]]}],["$","div",null,{"data-slot":"card-title","className":"font-semibold text-base mt-3","children":"API Integration"}]]}],["$","div",null,{"data-slot":"card-content","className":"px-6","children":[["$","p",null,{"className":"text-sm text-muted-foreground","children":"Connect to external APIs"}],["$","button",null,{"data-slot":"button","data-variant":"ghost","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 hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50 h-9 px-4 py-2 has-[>svg]:px-3 w-full mt-4","children":"Use Template"}]]}]]}],["$","div","1",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm cursor-pointer hover:shadow-md transition-shadow","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 pb-3","children":[["$","div",null,{"className":"flex items-start justify-between","children":[["$","div",null,{"className":"w-10 h-10 rounded-lg bg-secondary flex items-center justify-center","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-database w-5 h-5","aria-hidden":"true","children":[["$","ellipse","msslwz",{"cx":"12","cy":"5","rx":"9","ry":"3"}],["$","path","1wlel7",{"d":"M3 5V19A9 3 0 0 0 21 19V5"}],["$","path","mv7ke4",{"d":"M3 12A9 3 0 0 0 21 12"}],"$undefined"]}]}],["$","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 border-border text-foreground [a&]:hover:bg-accent [a&]:hover:text-accent-foreground","children":"Template"}]]}],"$L17"]}],"$L18"]}],"$L19","$L1a","$L1b"]}]}]
|
|
||||||
11:["$","$L8",null,{"value":"builder","className":"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":"leading-none font-semibold","children":"Quick Tool Builder"}]}],["$","div",null,{"data-slot":"card-content","className":"px-6 space-y-4","children":[["$","div",null,{"className":"grid grid-cols-1 md:grid-cols-2 gap-4","children":[["$","div",null,{"className":"space-y-2","children":[["$","$L1c",null,{"children":"Tool Name"}],["$","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","placeholder":"e.g., Stock Price Checker"}]]}],["$","div",null,{"className":"space-y-2","children":[["$","$L1c",null,{"children":"Category"}],["$","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","placeholder":"e.g., finance"}]]}]]}],["$","div",null,{"className":"space-y-2","children":[["$","$L1c",null,{"children":"Description"}],["$","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","placeholder":"What does this tool do?"}]]}],["$","div",null,{"className":"space-y-2","children":[["$","$L1c",null,{"children":"Script / Command"}],["$","textarea",null,{"className":"w-full min-h-[150px] p-3 rounded-md border border-input bg-background text-sm font-mono","placeholder":"#!/bin/bash\n# Your tool logic here\necho \"Hello World\""}]]}],["$","div",null,{"className":"flex gap-2","children":[["$","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":"Build Tool"}],"$L1d"]}]]}]]}]}]
|
|
||||||
12:["$","script","script-0",{"src":"/_next/static/chunks/e855a97db51ad6c7.js","async":true,"nonce":"$undefined"}]
|
|
||||||
13:["$","script","script-1",{"src":"/_next/static/chunks/5e38d7d587a86e9d.js","async":true,"nonce":"$undefined"}]
|
|
||||||
14:["$","$L1e",null,{"children":["$","$1f",null,{"name":"Next.MetadataOutlet","children":"$@20"}]}]
|
|
||||||
15:["$","$1","h",{"children":[null,["$","$L21",null,{"children":"$L22"}],["$","div",null,{"hidden":true,"children":["$","$L23",null,{"children":["$","$1f",null,{"name":"Next.Metadata","children":"$L24"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}]
|
|
||||||
17:["$","div",null,{"data-slot":"card-title","className":"font-semibold text-base mt-3","children":"Database Tool"}]
|
|
||||||
18:["$","div",null,{"data-slot":"card-content","className":"px-6","children":[["$","p",null,{"className":"text-sm text-muted-foreground","children":"Query and manage databases"}],["$","button",null,{"data-slot":"button","data-variant":"ghost","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 hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50 h-9 px-4 py-2 has-[>svg]:px-3 w-full mt-4","children":"Use Template"}]]}]
|
|
||||||
19:["$","div","2",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm cursor-pointer hover:shadow-md transition-shadow","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 pb-3","children":[["$","div",null,{"className":"flex items-start justify-between","children":[["$","div",null,{"className":"w-10 h-10 rounded-lg bg-secondary flex items-center justify-center","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-terminal w-5 h-5","aria-hidden":"true","children":[["$","path","baeox8",{"d":"M12 19h8"}],["$","path","1yngyt",{"d":"m4 17 6-6-6-6"}],"$undefined"]}]}],["$","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 border-border text-foreground [a&]:hover:bg-accent [a&]:hover:text-accent-foreground","children":"Template"}]]}],["$","div",null,{"data-slot":"card-title","className":"font-semibold text-base mt-3","children":"Script Runner"}]]}],["$","div",null,{"data-slot":"card-content","className":"px-6","children":[["$","p",null,{"className":"text-sm text-muted-foreground","children":"Execute custom scripts"}],["$","button",null,{"data-slot":"button","data-variant":"ghost","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 hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50 h-9 px-4 py-2 has-[>svg]:px-3 w-full mt-4","children":"Use Template"}]]}]]}]
|
|
||||||
1a:["$","div","3",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm cursor-pointer hover:shadow-md transition-shadow","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 pb-3","children":[["$","div",null,{"className":"flex items-start justify-between","children":[["$","div",null,{"className":"w-10 h-10 rounded-lg bg-secondary flex items-center justify-center","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-mail w-5 h-5","aria-hidden":"true","children":[["$","path","132q7q",{"d":"m22 7-8.991 5.727a2 2 0 0 1-2.009 0L2 7"}],["$","rect","izxlao",{"x":"2","y":"4","width":"20","height":"16","rx":"2"}],"$undefined"]}]}],["$","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 border-border text-foreground [a&]:hover:bg-accent [a&]:hover:text-accent-foreground","children":"Template"}]]}],["$","div",null,{"data-slot":"card-title","className":"font-semibold text-base mt-3","children":"Email Processor"}]]}],["$","div",null,{"data-slot":"card-content","className":"px-6","children":[["$","p",null,{"className":"text-sm text-muted-foreground","children":"Process and route emails"}],["$","button",null,{"data-slot":"button","data-variant":"ghost","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 hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50 h-9 px-4 py-2 has-[>svg]:px-3 w-full mt-4","children":"Use Template"}]]}]]}]
|
|
||||||
1b:["$","div","4",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm cursor-pointer hover:shadow-md transition-shadow","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 pb-3","children":[["$","div",null,{"className":"flex items-start justify-between","children":[["$","div",null,{"className":"w-10 h-10 rounded-lg bg-secondary flex items-center justify-center","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"]}]}],["$","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 border-border text-foreground [a&]:hover:bg-accent [a&]:hover:text-accent-foreground","children":"Template"}]]}],["$","div",null,{"data-slot":"card-title","className":"font-semibold text-base mt-3","children":"Calendar Sync"}]]}],["$","div",null,{"data-slot":"card-content","className":"px-6","children":[["$","p",null,{"className":"text-sm text-muted-foreground","children":"Sync multiple calendars"}],["$","button",null,{"data-slot":"button","data-variant":"ghost","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 hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50 h-9 px-4 py-2 has-[>svg]:px-3 w-full mt-4","children":"Use Template"}]]}]]}]
|
|
||||||
1d:["$","button",null,{"data-slot":"button","data-variant":"outline","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 border bg-background shadow-xs hover:bg-accent hover:text-accent-foreground dark:bg-input/30 dark:border-input dark:hover:bg-input/50 h-9 px-4 py-2 has-[>svg]:px-3","children":"Test"}]
|
|
||||||
22:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
|
||||||
25:I[92064,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"IconMark"]
|
|
||||||
20:null
|
|
||||||
24:[["$","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"}],["$","$L25","3",{}]]
|
|
||||||
41
dist/tools/__next._full.txt
vendored
41
dist/tools/__next._full.txt
vendored
@ -1,41 +0,0 @@
|
|||||||
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/e855a97db51ad6c7.js","/_next/static/chunks/5e38d7d587a86e9d.js"],"DashboardLayout"]
|
|
||||||
5:I[5666,["/_next/static/chunks/e855a97db51ad6c7.js","/_next/static/chunks/5e38d7d587a86e9d.js"],"Tabs"]
|
|
||||||
6:I[5666,["/_next/static/chunks/e855a97db51ad6c7.js","/_next/static/chunks/5e38d7d587a86e9d.js"],"TabsList"]
|
|
||||||
7:I[5666,["/_next/static/chunks/e855a97db51ad6c7.js","/_next/static/chunks/5e38d7d587a86e9d.js"],"TabsTrigger"]
|
|
||||||
8:I[5666,["/_next/static/chunks/e855a97db51ad6c7.js","/_next/static/chunks/5e38d7d587a86e9d.js"],"TabsContent"]
|
|
||||||
16:I[95111,[],"default"]
|
|
||||||
:HL["/_next/static/chunks/1809eccc07e0ee86.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":"EGp_7KoqQY85q_AoGxmDe","c":["","tools"],"q":"","i":false,"f":[[["",{"children":["tools",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1809eccc07e0ee86.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":"Tool Builder"}],["$","p",null,{"className":"text-muted-foreground mt-1","children":"Create and manage custom tools and skills."}]]}],["$","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"]}],"Build New Tool"]}]]}],["$","$L5",null,{"defaultValue":"installed","className":"space-y-6","children":[["$","$L6",null,{"children":[["$","$L7",null,{"value":"installed","children":["Installed (",5,")"]}],["$","$L7",null,{"value":"templates","children":"Templates"}],["$","$L7",null,{"value":"builder","children":"Quick Builder"}]]}],["$","$L8",null,{"value":"installed","className":"space-y-4","children":["$","div",null,{"className":"grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-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-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 pb-3","children":["$L9","$La"]}],"$Lb"]}],"$Lc","$Ld","$Le","$Lf"]}]}],"$L10","$L11"]}]]}]}],["$L12","$L13"],"$L14"]}],{},null,false,false]},null,false,false]},null,false,false],"$L15",false]],"m":"$undefined","G":["$16",[]],"S":true}
|
|
||||||
1c:I[3642,["/_next/static/chunks/e855a97db51ad6c7.js","/_next/static/chunks/5e38d7d587a86e9d.js"],"Label"]
|
|
||||||
1e:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"OutletBoundary"]
|
|
||||||
1f:"$Sreact.suspense"
|
|
||||||
21:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"ViewportBoundary"]
|
|
||||||
23:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"MetadataBoundary"]
|
|
||||||
9:["$","div",null,{"className":"flex items-start justify-between","children":[["$","div",null,{"className":"w-10 h-10 rounded-lg bg-secondary flex items-center justify-center","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"]}]}],["$","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":"system"}]]}]
|
|
||||||
a:["$","div",null,{"data-slot":"card-title","className":"font-semibold text-base mt-3","children":"File System Assistant"}]
|
|
||||||
b:["$","div",null,{"data-slot":"card-content","className":"px-6","children":[["$","p",null,{"className":"text-sm text-muted-foreground mb-4","children":"Organize, search, and manage local files"}],["$","div",null,{"className":"flex items-center justify-between 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-circle-check w-3 h-3 text-green-500","aria-hidden":"true","children":[["$","circle","1mglay",{"cx":"12","cy":"12","r":"10"}],["$","path","dzmm74",{"d":"m9 12 2 2 4-4"}],"$undefined"]}],"active"]}],["$","span",null,{"children":["Last used: ","Today"]}]]}]]}]
|
|
||||||
c:["$","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-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 pb-3","children":[["$","div",null,{"className":"flex items-start justify-between","children":[["$","div",null,{"className":"w-10 h-10 rounded-lg bg-secondary flex items-center justify-center","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"]}]}],["$","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":"web"}]]}],["$","div",null,{"data-slot":"card-title","className":"font-semibold text-base mt-3","children":"Browser Automation"}]]}],["$","div",null,{"data-slot":"card-content","className":"px-6","children":[["$","p",null,{"className":"text-sm text-muted-foreground mb-4","children":"Web research, screenshots, form filling"}],["$","div",null,{"className":"flex items-center justify-between 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-circle-check w-3 h-3 text-green-500","aria-hidden":"true","children":[["$","circle","1mglay",{"cx":"12","cy":"12","r":"10"}],["$","path","dzmm74",{"d":"m9 12 2 2 4-4"}],"$undefined"]}],"active"]}],["$","span",null,{"children":["Last used: ","Yesterday"]}]]}]]}]]}]
|
|
||||||
d:["$","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-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 pb-3","children":[["$","div",null,{"className":"flex items-start justify-between","children":[["$","div",null,{"className":"w-10 h-10 rounded-lg bg-secondary flex items-center justify-center","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"]}]}],["$","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":"calendar"}]]}],["$","div",null,{"data-slot":"card-title","className":"font-semibold text-base mt-3","children":"Calendar Assistant"}]]}],["$","div",null,{"data-slot":"card-content","className":"px-6","children":[["$","p",null,{"className":"text-sm text-muted-foreground mb-4","children":"Apple Calendar + Google Calendar integration"}],["$","div",null,{"className":"flex items-center justify-between 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-circle-check w-3 h-3 text-green-500","aria-hidden":"true","children":[["$","circle","1mglay",{"cx":"12","cy":"12","r":"10"}],["$","path","dzmm74",{"d":"m9 12 2 2 4-4"}],"$undefined"]}],"active"]}],["$","span",null,{"children":["Last used: ","Today"]}]]}]]}]]}]
|
|
||||||
e:["$","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-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 pb-3","children":[["$","div",null,{"className":"flex items-start justify-between","children":[["$","div",null,{"className":"w-10 h-10 rounded-lg bg-secondary flex items-center justify-center","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"]}]}],["$","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":"email"}]]}],["$","div",null,{"data-slot":"card-title","className":"font-semibold text-base mt-3","children":"Email Assistant"}]]}],["$","div",null,{"data-slot":"card-content","className":"px-6","children":[["$","p",null,{"className":"text-sm text-muted-foreground mb-4","children":"Apple Mail + Gmail integration"}],["$","div",null,{"className":"flex items-center justify-between 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-circle-check w-3 h-3 text-green-500","aria-hidden":"true","children":[["$","circle","1mglay",{"cx":"12","cy":"12","r":"10"}],["$","path","dzmm74",{"d":"m9 12 2 2 4-4"}],"$undefined"]}],"active"]}],["$","span",null,{"children":["Last used: ","Today"]}]]}]]}]]}]
|
|
||||||
f:["$","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-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 pb-3","children":[["$","div",null,{"className":"flex items-start justify-between","children":[["$","div",null,{"className":"w-10 h-10 rounded-lg bg-secondary flex items-center justify-center","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"]}]}],["$","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":"automation"}]]}],["$","div",null,{"data-slot":"card-title","className":"font-semibold text-base mt-3","children":"Daily Automation"}]]}],["$","div",null,{"data-slot":"card-content","className":"px-6","children":[["$","p",null,{"className":"text-sm text-muted-foreground mb-4","children":"Morning briefing orchestration"}],["$","div",null,{"className":"flex items-center justify-between 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-circle-check w-3 h-3 text-green-500","aria-hidden":"true","children":[["$","circle","1mglay",{"cx":"12","cy":"12","r":"10"}],["$","path","dzmm74",{"d":"m9 12 2 2 4-4"}],"$undefined"]}],"active"]}],["$","span",null,{"children":["Last used: ","Today"]}]]}]]}]]}]
|
|
||||||
10:["$","$L8",null,{"value":"templates","className":"space-y-4","children":["$","div",null,{"className":"grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4","children":[["$","div","0",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm cursor-pointer hover:shadow-md transition-shadow","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 pb-3","children":[["$","div",null,{"className":"flex items-start justify-between","children":[["$","div",null,{"className":"w-10 h-10 rounded-lg bg-secondary flex items-center justify-center","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-globe w-5 h-5","aria-hidden":"true","children":[["$","circle","1mglay",{"cx":"12","cy":"12","r":"10"}],["$","path","13o1zl",{"d":"M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20"}],["$","path","9i4pu4",{"d":"M2 12h20"}],"$undefined"]}]}],["$","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 border-border text-foreground [a&]:hover:bg-accent [a&]:hover:text-accent-foreground","children":"Template"}]]}],["$","div",null,{"data-slot":"card-title","className":"font-semibold text-base mt-3","children":"API Integration"}]]}],["$","div",null,{"data-slot":"card-content","className":"px-6","children":[["$","p",null,{"className":"text-sm text-muted-foreground","children":"Connect to external APIs"}],["$","button",null,{"data-slot":"button","data-variant":"ghost","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 hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50 h-9 px-4 py-2 has-[>svg]:px-3 w-full mt-4","children":"Use Template"}]]}]]}],["$","div","1",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm cursor-pointer hover:shadow-md transition-shadow","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 pb-3","children":[["$","div",null,{"className":"flex items-start justify-between","children":[["$","div",null,{"className":"w-10 h-10 rounded-lg bg-secondary flex items-center justify-center","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-database w-5 h-5","aria-hidden":"true","children":[["$","ellipse","msslwz",{"cx":"12","cy":"5","rx":"9","ry":"3"}],["$","path","1wlel7",{"d":"M3 5V19A9 3 0 0 0 21 19V5"}],["$","path","mv7ke4",{"d":"M3 12A9 3 0 0 0 21 12"}],"$undefined"]}]}],["$","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 border-border text-foreground [a&]:hover:bg-accent [a&]:hover:text-accent-foreground","children":"Template"}]]}],"$L17"]}],"$L18"]}],"$L19","$L1a","$L1b"]}]}]
|
|
||||||
11:["$","$L8",null,{"value":"builder","className":"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":"leading-none font-semibold","children":"Quick Tool Builder"}]}],["$","div",null,{"data-slot":"card-content","className":"px-6 space-y-4","children":[["$","div",null,{"className":"grid grid-cols-1 md:grid-cols-2 gap-4","children":[["$","div",null,{"className":"space-y-2","children":[["$","$L1c",null,{"children":"Tool Name"}],["$","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","placeholder":"e.g., Stock Price Checker"}]]}],["$","div",null,{"className":"space-y-2","children":[["$","$L1c",null,{"children":"Category"}],["$","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","placeholder":"e.g., finance"}]]}]]}],["$","div",null,{"className":"space-y-2","children":[["$","$L1c",null,{"children":"Description"}],["$","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","placeholder":"What does this tool do?"}]]}],["$","div",null,{"className":"space-y-2","children":[["$","$L1c",null,{"children":"Script / Command"}],["$","textarea",null,{"className":"w-full min-h-[150px] p-3 rounded-md border border-input bg-background text-sm font-mono","placeholder":"#!/bin/bash\n# Your tool logic here\necho \"Hello World\""}]]}],["$","div",null,{"className":"flex gap-2","children":[["$","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":"Build Tool"}],"$L1d"]}]]}]]}]}]
|
|
||||||
12:["$","script","script-0",{"src":"/_next/static/chunks/e855a97db51ad6c7.js","async":true,"nonce":"$undefined"}]
|
|
||||||
13:["$","script","script-1",{"src":"/_next/static/chunks/5e38d7d587a86e9d.js","async":true,"nonce":"$undefined"}]
|
|
||||||
14:["$","$L1e",null,{"children":["$","$1f",null,{"name":"Next.MetadataOutlet","children":"$@20"}]}]
|
|
||||||
15:["$","$1","h",{"children":[null,["$","$L21",null,{"children":"$L22"}],["$","div",null,{"hidden":true,"children":["$","$L23",null,{"children":["$","$1f",null,{"name":"Next.Metadata","children":"$L24"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}]
|
|
||||||
17:["$","div",null,{"data-slot":"card-title","className":"font-semibold text-base mt-3","children":"Database Tool"}]
|
|
||||||
18:["$","div",null,{"data-slot":"card-content","className":"px-6","children":[["$","p",null,{"className":"text-sm text-muted-foreground","children":"Query and manage databases"}],["$","button",null,{"data-slot":"button","data-variant":"ghost","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 hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50 h-9 px-4 py-2 has-[>svg]:px-3 w-full mt-4","children":"Use Template"}]]}]
|
|
||||||
19:["$","div","2",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm cursor-pointer hover:shadow-md transition-shadow","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 pb-3","children":[["$","div",null,{"className":"flex items-start justify-between","children":[["$","div",null,{"className":"w-10 h-10 rounded-lg bg-secondary flex items-center justify-center","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-terminal w-5 h-5","aria-hidden":"true","children":[["$","path","baeox8",{"d":"M12 19h8"}],["$","path","1yngyt",{"d":"m4 17 6-6-6-6"}],"$undefined"]}]}],["$","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 border-border text-foreground [a&]:hover:bg-accent [a&]:hover:text-accent-foreground","children":"Template"}]]}],["$","div",null,{"data-slot":"card-title","className":"font-semibold text-base mt-3","children":"Script Runner"}]]}],["$","div",null,{"data-slot":"card-content","className":"px-6","children":[["$","p",null,{"className":"text-sm text-muted-foreground","children":"Execute custom scripts"}],["$","button",null,{"data-slot":"button","data-variant":"ghost","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 hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50 h-9 px-4 py-2 has-[>svg]:px-3 w-full mt-4","children":"Use Template"}]]}]]}]
|
|
||||||
1a:["$","div","3",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm cursor-pointer hover:shadow-md transition-shadow","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 pb-3","children":[["$","div",null,{"className":"flex items-start justify-between","children":[["$","div",null,{"className":"w-10 h-10 rounded-lg bg-secondary flex items-center justify-center","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-mail w-5 h-5","aria-hidden":"true","children":[["$","path","132q7q",{"d":"m22 7-8.991 5.727a2 2 0 0 1-2.009 0L2 7"}],["$","rect","izxlao",{"x":"2","y":"4","width":"20","height":"16","rx":"2"}],"$undefined"]}]}],["$","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 border-border text-foreground [a&]:hover:bg-accent [a&]:hover:text-accent-foreground","children":"Template"}]]}],["$","div",null,{"data-slot":"card-title","className":"font-semibold text-base mt-3","children":"Email Processor"}]]}],["$","div",null,{"data-slot":"card-content","className":"px-6","children":[["$","p",null,{"className":"text-sm text-muted-foreground","children":"Process and route emails"}],["$","button",null,{"data-slot":"button","data-variant":"ghost","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 hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50 h-9 px-4 py-2 has-[>svg]:px-3 w-full mt-4","children":"Use Template"}]]}]]}]
|
|
||||||
1b:["$","div","4",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm cursor-pointer hover:shadow-md transition-shadow","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 pb-3","children":[["$","div",null,{"className":"flex items-start justify-between","children":[["$","div",null,{"className":"w-10 h-10 rounded-lg bg-secondary flex items-center justify-center","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"]}]}],["$","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 border-border text-foreground [a&]:hover:bg-accent [a&]:hover:text-accent-foreground","children":"Template"}]]}],["$","div",null,{"data-slot":"card-title","className":"font-semibold text-base mt-3","children":"Calendar Sync"}]]}],["$","div",null,{"data-slot":"card-content","className":"px-6","children":[["$","p",null,{"className":"text-sm text-muted-foreground","children":"Sync multiple calendars"}],["$","button",null,{"data-slot":"button","data-variant":"ghost","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 hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50 h-9 px-4 py-2 has-[>svg]:px-3 w-full mt-4","children":"Use Template"}]]}]]}]
|
|
||||||
1d:["$","button",null,{"data-slot":"button","data-variant":"outline","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 border bg-background shadow-xs hover:bg-accent hover:text-accent-foreground dark:bg-input/30 dark:border-input dark:hover:bg-input/50 h-9 px-4 py-2 has-[>svg]:px-3","children":"Test"}]
|
|
||||||
22:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
|
||||||
25:I[92064,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"IconMark"]
|
|
||||||
20:null
|
|
||||||
24:[["$","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"}],["$","$L25","3",{}]]
|
|
||||||
6
dist/tools/__next._head.txt
vendored
6
dist/tools/__next._head.txt
vendored
@ -1,6 +0,0 @@
|
|||||||
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":"EGp_7KoqQY85q_AoGxmDe","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/tools/__next._index.txt
vendored
5
dist/tools/__next._index.txt
vendored
@ -1,5 +0,0 @@
|
|||||||
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/1809eccc07e0ee86.css","style"]
|
|
||||||
0:{"buildId":"EGp_7KoqQY85q_AoGxmDe","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1809eccc07e0ee86.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/tools/__next._tree.txt
vendored
4
dist/tools/__next._tree.txt
vendored
@ -1,4 +0,0 @@
|
|||||||
:HL["/_next/static/chunks/1809eccc07e0ee86.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":"EGp_7KoqQY85q_AoGxmDe","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"tools","paramType":null,"paramKey":"tools","hasRuntimePrefetch":false,"slots":{"children":{"name":"__PAGE__","paramType":null,"paramKey":"__PAGE__","hasRuntimePrefetch":false,"slots":null,"isRootLayout":false}},"isRootLayout":false}},"isRootLayout":true},"staleTime":300}
|
|
||||||
28
dist/tools/__next.tools.__PAGE__.txt
vendored
28
dist/tools/__next.tools.__PAGE__.txt
vendored
@ -1,28 +0,0 @@
|
|||||||
1:"$Sreact.fragment"
|
|
||||||
2:I[89567,["/_next/static/chunks/e855a97db51ad6c7.js","/_next/static/chunks/5e38d7d587a86e9d.js"],"DashboardLayout"]
|
|
||||||
3:I[5666,["/_next/static/chunks/e855a97db51ad6c7.js","/_next/static/chunks/5e38d7d587a86e9d.js"],"Tabs"]
|
|
||||||
4:I[5666,["/_next/static/chunks/e855a97db51ad6c7.js","/_next/static/chunks/5e38d7d587a86e9d.js"],"TabsList"]
|
|
||||||
5:I[5666,["/_next/static/chunks/e855a97db51ad6c7.js","/_next/static/chunks/5e38d7d587a86e9d.js"],"TabsTrigger"]
|
|
||||||
6:I[5666,["/_next/static/chunks/e855a97db51ad6c7.js","/_next/static/chunks/5e38d7d587a86e9d.js"],"TabsContent"]
|
|
||||||
17:I[3642,["/_next/static/chunks/e855a97db51ad6c7.js","/_next/static/chunks/5e38d7d587a86e9d.js"],"Label"]
|
|
||||||
19:I[85438,["/_next/static/chunks/05acb8b0bd6792f1.js","/_next/static/chunks/62e9970b2d7e976b.js"],"OutletBoundary"]
|
|
||||||
1a:"$Sreact.suspense"
|
|
||||||
0:{"buildId":"EGp_7KoqQY85q_AoGxmDe","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":"Tool Builder"}],["$","p",null,{"className":"text-muted-foreground mt-1","children":"Create and manage custom tools and skills."}]]}],["$","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"]}],"Build New Tool"]}]]}],["$","$L3",null,{"defaultValue":"installed","className":"space-y-6","children":[["$","$L4",null,{"children":[["$","$L5",null,{"value":"installed","children":["Installed (",5,")"]}],["$","$L5",null,{"value":"templates","children":"Templates"}],["$","$L5",null,{"value":"builder","children":"Quick Builder"}]]}],["$","$L6",null,{"value":"installed","className":"space-y-4","children":["$","div",null,{"className":"grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-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-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 pb-3","children":[["$","div",null,{"className":"flex items-start justify-between","children":[["$","div",null,{"className":"w-10 h-10 rounded-lg bg-secondary flex items-center justify-center","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"]}]}],["$","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":"system"}]]}],["$","div",null,{"data-slot":"card-title","className":"font-semibold text-base mt-3","children":"File System Assistant"}]]}],["$","div",null,{"data-slot":"card-content","className":"px-6","children":[["$","p",null,{"className":"text-sm text-muted-foreground mb-4","children":"Organize, search, and manage local files"}],["$","div",null,{"className":"flex items-center justify-between text-xs text-muted-foreground","children":["$L7","$L8"]}]]}]]}],"$L9","$La","$Lb","$Lc"]}]}],"$Ld","$Le"]}]]}]}],["$Lf","$L10"],"$L11"]}],"loading":null,"isPartial":false}
|
|
||||||
7:["$","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-circle-check w-3 h-3 text-green-500","aria-hidden":"true","children":[["$","circle","1mglay",{"cx":"12","cy":"12","r":"10"}],["$","path","dzmm74",{"d":"m9 12 2 2 4-4"}],"$undefined"]}],"active"]}]
|
|
||||||
8:["$","span",null,{"children":["Last used: ","Today"]}]
|
|
||||||
9:["$","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-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 pb-3","children":[["$","div",null,{"className":"flex items-start justify-between","children":[["$","div",null,{"className":"w-10 h-10 rounded-lg bg-secondary flex items-center justify-center","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"]}]}],["$","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":"web"}]]}],["$","div",null,{"data-slot":"card-title","className":"font-semibold text-base mt-3","children":"Browser Automation"}]]}],["$","div",null,{"data-slot":"card-content","className":"px-6","children":[["$","p",null,{"className":"text-sm text-muted-foreground mb-4","children":"Web research, screenshots, form filling"}],["$","div",null,{"className":"flex items-center justify-between 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-circle-check w-3 h-3 text-green-500","aria-hidden":"true","children":[["$","circle","1mglay",{"cx":"12","cy":"12","r":"10"}],["$","path","dzmm74",{"d":"m9 12 2 2 4-4"}],"$undefined"]}],"active"]}],["$","span",null,{"children":["Last used: ","Yesterday"]}]]}]]}]]}]
|
|
||||||
a:["$","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-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 pb-3","children":[["$","div",null,{"className":"flex items-start justify-between","children":[["$","div",null,{"className":"w-10 h-10 rounded-lg bg-secondary flex items-center justify-center","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"]}]}],["$","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":"calendar"}]]}],["$","div",null,{"data-slot":"card-title","className":"font-semibold text-base mt-3","children":"Calendar Assistant"}]]}],["$","div",null,{"data-slot":"card-content","className":"px-6","children":[["$","p",null,{"className":"text-sm text-muted-foreground mb-4","children":"Apple Calendar + Google Calendar integration"}],["$","div",null,{"className":"flex items-center justify-between 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-circle-check w-3 h-3 text-green-500","aria-hidden":"true","children":[["$","circle","1mglay",{"cx":"12","cy":"12","r":"10"}],["$","path","dzmm74",{"d":"m9 12 2 2 4-4"}],"$undefined"]}],"active"]}],["$","span",null,{"children":["Last used: ","Today"]}]]}]]}]]}]
|
|
||||||
b:["$","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-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 pb-3","children":[["$","div",null,{"className":"flex items-start justify-between","children":[["$","div",null,{"className":"w-10 h-10 rounded-lg bg-secondary flex items-center justify-center","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"]}]}],["$","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":"email"}]]}],["$","div",null,{"data-slot":"card-title","className":"font-semibold text-base mt-3","children":"Email Assistant"}]]}],["$","div",null,{"data-slot":"card-content","className":"px-6","children":[["$","p",null,{"className":"text-sm text-muted-foreground mb-4","children":"Apple Mail + Gmail integration"}],["$","div",null,{"className":"flex items-center justify-between 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-circle-check w-3 h-3 text-green-500","aria-hidden":"true","children":[["$","circle","1mglay",{"cx":"12","cy":"12","r":"10"}],["$","path","dzmm74",{"d":"m9 12 2 2 4-4"}],"$undefined"]}],"active"]}],["$","span",null,{"children":["Last used: ","Today"]}]]}]]}]]}]
|
|
||||||
c:["$","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-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 pb-3","children":[["$","div",null,{"className":"flex items-start justify-between","children":[["$","div",null,{"className":"w-10 h-10 rounded-lg bg-secondary flex items-center justify-center","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"]}]}],["$","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":"automation"}]]}],["$","div",null,{"data-slot":"card-title","className":"font-semibold text-base mt-3","children":"Daily Automation"}]]}],["$","div",null,{"data-slot":"card-content","className":"px-6","children":[["$","p",null,{"className":"text-sm text-muted-foreground mb-4","children":"Morning briefing orchestration"}],["$","div",null,{"className":"flex items-center justify-between 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-circle-check w-3 h-3 text-green-500","aria-hidden":"true","children":[["$","circle","1mglay",{"cx":"12","cy":"12","r":"10"}],["$","path","dzmm74",{"d":"m9 12 2 2 4-4"}],"$undefined"]}],"active"]}],["$","span",null,{"children":["Last used: ","Today"]}]]}]]}]]}]
|
|
||||||
d:["$","$L6",null,{"value":"templates","className":"space-y-4","children":["$","div",null,{"className":"grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4","children":[["$","div","0",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm cursor-pointer hover:shadow-md transition-shadow","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 pb-3","children":[["$","div",null,{"className":"flex items-start justify-between","children":[["$","div",null,{"className":"w-10 h-10 rounded-lg bg-secondary flex items-center justify-center","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-globe w-5 h-5","aria-hidden":"true","children":[["$","circle","1mglay",{"cx":"12","cy":"12","r":"10"}],["$","path","13o1zl",{"d":"M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20"}],["$","path","9i4pu4",{"d":"M2 12h20"}],"$undefined"]}]}],["$","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 border-border text-foreground [a&]:hover:bg-accent [a&]:hover:text-accent-foreground","children":"Template"}]]}],["$","div",null,{"data-slot":"card-title","className":"font-semibold text-base mt-3","children":"API Integration"}]]}],["$","div",null,{"data-slot":"card-content","className":"px-6","children":[["$","p",null,{"className":"text-sm text-muted-foreground","children":"Connect to external APIs"}],["$","button",null,{"data-slot":"button","data-variant":"ghost","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 hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50 h-9 px-4 py-2 has-[>svg]:px-3 w-full mt-4","children":"Use Template"}]]}]]}],["$","div","1",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm cursor-pointer hover:shadow-md transition-shadow","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 pb-3","children":[["$","div",null,{"className":"flex items-start justify-between","children":[["$","div",null,{"className":"w-10 h-10 rounded-lg bg-secondary flex items-center justify-center","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-database w-5 h-5","aria-hidden":"true","children":[["$","ellipse","msslwz",{"cx":"12","cy":"5","rx":"9","ry":"3"}],["$","path","1wlel7",{"d":"M3 5V19A9 3 0 0 0 21 19V5"}],["$","path","mv7ke4",{"d":"M3 12A9 3 0 0 0 21 12"}],"$undefined"]}]}],["$","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 border-border text-foreground [a&]:hover:bg-accent [a&]:hover:text-accent-foreground","children":"Template"}]]}],"$L12"]}],"$L13"]}],"$L14","$L15","$L16"]}]}]
|
|
||||||
e:["$","$L6",null,{"value":"builder","className":"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":"leading-none font-semibold","children":"Quick Tool Builder"}]}],["$","div",null,{"data-slot":"card-content","className":"px-6 space-y-4","children":[["$","div",null,{"className":"grid grid-cols-1 md:grid-cols-2 gap-4","children":[["$","div",null,{"className":"space-y-2","children":[["$","$L17",null,{"children":"Tool Name"}],["$","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","placeholder":"e.g., Stock Price Checker"}]]}],["$","div",null,{"className":"space-y-2","children":[["$","$L17",null,{"children":"Category"}],["$","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","placeholder":"e.g., finance"}]]}]]}],["$","div",null,{"className":"space-y-2","children":[["$","$L17",null,{"children":"Description"}],["$","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","placeholder":"What does this tool do?"}]]}],["$","div",null,{"className":"space-y-2","children":[["$","$L17",null,{"children":"Script / Command"}],["$","textarea",null,{"className":"w-full min-h-[150px] p-3 rounded-md border border-input bg-background text-sm font-mono","placeholder":"#!/bin/bash\n# Your tool logic here\necho \"Hello World\""}]]}],["$","div",null,{"className":"flex gap-2","children":[["$","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":"Build Tool"}],"$L18"]}]]}]]}]}]
|
|
||||||
f:["$","script","script-0",{"src":"/_next/static/chunks/e855a97db51ad6c7.js","async":true}]
|
|
||||||
10:["$","script","script-1",{"src":"/_next/static/chunks/5e38d7d587a86e9d.js","async":true}]
|
|
||||||
11:["$","$L19",null,{"children":["$","$1a",null,{"name":"Next.MetadataOutlet","children":"$@1b"}]}]
|
|
||||||
12:["$","div",null,{"data-slot":"card-title","className":"font-semibold text-base mt-3","children":"Database Tool"}]
|
|
||||||
13:["$","div",null,{"data-slot":"card-content","className":"px-6","children":[["$","p",null,{"className":"text-sm text-muted-foreground","children":"Query and manage databases"}],["$","button",null,{"data-slot":"button","data-variant":"ghost","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 hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50 h-9 px-4 py-2 has-[>svg]:px-3 w-full mt-4","children":"Use Template"}]]}]
|
|
||||||
14:["$","div","2",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm cursor-pointer hover:shadow-md transition-shadow","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 pb-3","children":[["$","div",null,{"className":"flex items-start justify-between","children":[["$","div",null,{"className":"w-10 h-10 rounded-lg bg-secondary flex items-center justify-center","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-terminal w-5 h-5","aria-hidden":"true","children":[["$","path","baeox8",{"d":"M12 19h8"}],["$","path","1yngyt",{"d":"m4 17 6-6-6-6"}],"$undefined"]}]}],["$","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 border-border text-foreground [a&]:hover:bg-accent [a&]:hover:text-accent-foreground","children":"Template"}]]}],["$","div",null,{"data-slot":"card-title","className":"font-semibold text-base mt-3","children":"Script Runner"}]]}],["$","div",null,{"data-slot":"card-content","className":"px-6","children":[["$","p",null,{"className":"text-sm text-muted-foreground","children":"Execute custom scripts"}],["$","button",null,{"data-slot":"button","data-variant":"ghost","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 hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50 h-9 px-4 py-2 has-[>svg]:px-3 w-full mt-4","children":"Use Template"}]]}]]}]
|
|
||||||
15:["$","div","3",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm cursor-pointer hover:shadow-md transition-shadow","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 pb-3","children":[["$","div",null,{"className":"flex items-start justify-between","children":[["$","div",null,{"className":"w-10 h-10 rounded-lg bg-secondary flex items-center justify-center","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-mail w-5 h-5","aria-hidden":"true","children":[["$","path","132q7q",{"d":"m22 7-8.991 5.727a2 2 0 0 1-2.009 0L2 7"}],["$","rect","izxlao",{"x":"2","y":"4","width":"20","height":"16","rx":"2"}],"$undefined"]}]}],["$","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 border-border text-foreground [a&]:hover:bg-accent [a&]:hover:text-accent-foreground","children":"Template"}]]}],["$","div",null,{"data-slot":"card-title","className":"font-semibold text-base mt-3","children":"Email Processor"}]]}],["$","div",null,{"data-slot":"card-content","className":"px-6","children":[["$","p",null,{"className":"text-sm text-muted-foreground","children":"Process and route emails"}],["$","button",null,{"data-slot":"button","data-variant":"ghost","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 hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50 h-9 px-4 py-2 has-[>svg]:px-3 w-full mt-4","children":"Use Template"}]]}]]}]
|
|
||||||
16:["$","div","4",{"data-slot":"card","className":"bg-card text-card-foreground flex flex-col gap-6 rounded-xl border py-6 shadow-sm cursor-pointer hover:shadow-md transition-shadow","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 pb-3","children":[["$","div",null,{"className":"flex items-start justify-between","children":[["$","div",null,{"className":"w-10 h-10 rounded-lg bg-secondary flex items-center justify-center","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"]}]}],["$","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 border-border text-foreground [a&]:hover:bg-accent [a&]:hover:text-accent-foreground","children":"Template"}]]}],["$","div",null,{"data-slot":"card-title","className":"font-semibold text-base mt-3","children":"Calendar Sync"}]]}],["$","div",null,{"data-slot":"card-content","className":"px-6","children":[["$","p",null,{"className":"text-sm text-muted-foreground","children":"Sync multiple calendars"}],["$","button",null,{"data-slot":"button","data-variant":"ghost","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 hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50 h-9 px-4 py-2 has-[>svg]:px-3 w-full mt-4","children":"Use Template"}]]}]]}]
|
|
||||||
18:["$","button",null,{"data-slot":"button","data-variant":"outline","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 border bg-background shadow-xs hover:bg-accent hover:text-accent-foreground dark:bg-input/30 dark:border-input dark:hover:bg-input/50 h-9 px-4 py-2 has-[>svg]:px-3","children":"Test"}]
|
|
||||||
1b:null
|
|
||||||
4
dist/tools/__next.tools.txt
vendored
4
dist/tools/__next.tools.txt
vendored
@ -1,4 +0,0 @@
|
|||||||
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":"EGp_7KoqQY85q_AoGxmDe","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"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