mirror of
https://github.com/eigent-ai/eigent.git
synced 2026-04-28 11:40:25 +00:00
Some checks are pending
CodeQL Advanced / Analyze (actions) (push) Waiting to run
CodeQL Advanced / Analyze (javascript-typescript) (push) Waiting to run
CodeQL Advanced / Analyze (python) (push) Waiting to run
Pre-commit / pre-commit (push) Waiting to run
Test / Run Python Tests (push) Waiting to run
Co-authored-by: Pakchoioioi <happy.regina.bai@gmail.com> Co-authored-by: Douglas Lai <115660088+Douglasymlai@users.noreply.github.com> Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> Co-authored-by: Cursor <cursoragent@cursor.com> Co-authored-by: Douglas <douglas.ym.lai@gmail.com> Co-authored-by: Wendong-Fan <133094783+Wendong-Fan@users.noreply.github.com> Co-authored-by: Wendong-Fan <w3ndong.fan@gmail.com>
46 lines
1.8 KiB
TypeScript
46 lines
1.8 KiB
TypeScript
// ========= Copyright 2025-2026 @ Eigent.ai All Rights Reserved. =========
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
// ========= Copyright 2025-2026 @ Eigent.ai All Rights Reserved. =========
|
|
|
|
import { Brain } from 'lucide-react';
|
|
import { useTranslation } from 'react-i18next';
|
|
|
|
export default function Memory() {
|
|
const { t } = useTranslation();
|
|
|
|
return (
|
|
<div className="m-auto flex h-auto w-full flex-1 flex-col">
|
|
{/* Header Section */}
|
|
<div className="flex w-full items-center justify-between px-6 pb-6 pt-8">
|
|
<div className="text-heading-sm font-bold text-text-heading">
|
|
{t('agents.memory')}
|
|
</div>
|
|
</div>
|
|
|
|
{/* Content Section */}
|
|
<div className="mb-12 flex flex-col gap-6">
|
|
<div className="flex w-full flex-col items-center justify-between rounded-2xl bg-surface-secondary px-6 py-4">
|
|
<div className="flex h-16 w-16 items-center justify-center">
|
|
<Brain className="h-8 w-8 text-icon-secondary" />
|
|
</div>
|
|
<h2 className="mb-2 text-body-md font-bold text-text-heading">
|
|
{t('layout.coming-soon')}
|
|
</h2>
|
|
<p className="max-w-md text-center text-body-sm text-text-label">
|
|
{t('agents.memory-coming-soon-description')}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|