repositories
loading repo index
repositories
loading repo index
repository
loading code, commits, and activity
public Clawd ADK gateway launch mirror
stars
latest
clone command
git clone gitlawb://did:key:z6Mkq5mY...iFZ5/my-project-publ...git clone gitlawb://did:key:z6Mkq5mY.../my-project-publ...2fa351d6docs: add automaton and perps launch sources16d ago| #1 | "use client"; |
| #2 | |
| #3 | import { Install } from "@/components/dashboard/Install"; |
| #4 | import Stats from "@/components/dashboard/Stats"; |
| #5 | import { MemoryFilters } from "@/app/memories/components/MemoryFilters"; |
| #6 | import { MemoriesSection } from "@/app/memories/components/MemoriesSection"; |
| #7 | import "@/styles/animation.css"; |
| #8 | |
| #9 | export default function DashboardPage() { |
| #10 | return ( |
| #11 | <div className="text-white py-6"> |
| #12 | <div className="container"> |
| #13 | <div className="w-full mx-auto space-y-6"> |
| #14 | <div className="grid grid-cols-3 gap-6"> |
| #15 | {/* Memory Category Breakdown */} |
| #16 | <div className="col-span-2 animate-fade-slide-down"> |
| #17 | <Install /> |
| #18 | </div> |
| #19 | |
| #20 | {/* Memories Stats */} |
| #21 | <div className="col-span-1 animate-fade-slide-down delay-1"> |
| #22 | <Stats /> |
| #23 | </div> |
| #24 | </div> |
| #25 | |
| #26 | <div> |
| #27 | <div className="animate-fade-slide-down delay-2"> |
| #28 | <MemoryFilters /> |
| #29 | </div> |
| #30 | <div className="animate-fade-slide-down delay-3"> |
| #31 | <MemoriesSection /> |
| #32 | </div> |
| #33 | </div> |
| #34 | </div> |
| #35 | </div> |
| #36 | </div> |
| #37 | ); |
| #38 | } |
| #39 |