v5.2.0: undo/redo, version history, embedded AI assistant, mobile builder & more (#3205)

This commit is contained in:
Amruth Pillai
2026-07-04 14:57:25 +02:00
committed by GitHub
parent 09bc6ec521
commit 57e9c8c487
181 changed files with 46794 additions and 11348 deletions
+9 -1
View File
@@ -1,3 +1,4 @@
import { Trans } from "@lingui/react/macro";
import { createFileRoute, Outlet, redirect, useRouter } from "@tanstack/react-router";
import { SidebarProvider } from "@reactive-resume/ui/components/sidebar";
import { createNoindexFollowMeta } from "@/libs/seo";
@@ -30,9 +31,16 @@ function RouteComponent() {
return (
<SidebarProvider open={sidebarState} onOpenChange={handleSidebarOpenChange}>
<a
href="#main-content"
className="sr-only rounded-md bg-popover px-4 py-2 text-sm ring-2 ring-ring focus:not-sr-only focus:absolute focus:inset-s-2 focus:top-2 focus:z-[100]"
>
<Trans>Skip to main content</Trans>
</a>
<DashboardSidebar />
<main className="@container flex-1 p-4 md:ps-2">
<main id="main-content" className="@container flex-1 p-4 md:ps-2">
<Outlet />
</main>
</SidebarProvider>