mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-07 20:37:44 +00:00
* feat: og and ui * fix: lines and border issue * fix: changelog ux * fix: better * fix: ui revamp * feat: og image and small fix * fix: docs and parsing
26 lines
768 B
TypeScript
26 lines
768 B
TypeScript
import { AnimatePresence } from "@/components/ui/fade-in";
|
|
import { Logs } from "./_logs";
|
|
import { FormattedDate } from "./_components/fmt-dates";
|
|
const ChangelogPage = () => {
|
|
return (
|
|
<div>
|
|
<div className="mt-10 overflow-visible h-full flex flex-col gap-10">
|
|
{Logs.map((log) => {
|
|
return (
|
|
<div className="relative my-5 h-auto">
|
|
<div className="sticky top-2 flex-1 h-full">
|
|
<FormattedDate
|
|
className="absolute md:-left-32 left-0 text-sm -top-8 md:top-0 font-light"
|
|
date={log.date}
|
|
/>
|
|
</div>
|
|
<log.component />
|
|
</div>
|
|
);
|
|
})}
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
export default ChangelogPage;
|