"use server"; import { Card } from "flowbite-react"; import Image from "next/image"; import * as fs from "node:fs"; import * as path from "node:path"; import { CURRENT_APP_VERSION } from "#/api/config"; import Styles from "../components/ChangelogModal/ChangelogModal.module.css"; import Markdown from "markdown-to-jsx"; import { Accordion, AccordionContent, AccordionPanel, AccordionTitle, } from "flowbite-react"; import Link from "next/link"; export const AboutPage = () => { const directoryPath = path.join(process.cwd(), "public/changelog"); const files = fs.readdirSync(directoryPath); const current = { version: CURRENT_APP_VERSION, changelog: `#${CURRENT_APP_VERSION}\r\nНет списка изменений`, }; const previous = []; if (files.includes(`${CURRENT_APP_VERSION}.md`)) { const changelog = fs.readFileSync( path.join(directoryPath, `${CURRENT_APP_VERSION}.md`), "utf8" ); current.changelog = changelog; } files.forEach((file) => { if (file != `${CURRENT_APP_VERSION}.md`) { const changelog = fs.readFileSync(path.join(directoryPath, file), "utf8"); previous.push({ version: file.replace(".md", ""), changelog: changelog, }); } }); return (
about image

AniX - Неофициальный веб клиент для Anixart

AniX - это неофициальный веб-клиент для Android-приложения Anixart. Он позволяет вам получать доступ к своей учетной записи Anixart и управлять ею из веб-браузера. Так-же можно синхронизировать и управлять списками и избранным. И самое главное смотреть все доступные аниме из базы Anixart.

developer image

Radiquum

Разработчик

Телеграм канал

@anix_web

Код на GitHub

github.com/Radiquum/AniX

Список изменений

{current.changelog} {previous.reverse().map((changelog) => ( v{changelog.version} {changelog.changelog} ))}
); };