mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-01-03 02:55:29 +08:00
### What problem does this PR solve? Fix: Fixed an issue where parser configurations could be added infinitely #9869 ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue)
This commit is contained in:
@ -42,7 +42,7 @@ export function Banner() {
|
||||
export function NextBanner() {
|
||||
const { t } = useTranslation();
|
||||
return (
|
||||
<section className="text-5xl pt-10 pb-14 font-bold">
|
||||
<section className="text-5xl pt-10 pb-14 font-bold px-10">
|
||||
<span className="text-text-primary">{t('header.welcome')}</span>
|
||||
<span className="pl-3 text-transparent bg-clip-text bg-gradient-to-l from-[#40EBE3] to-[#4A51FF]">
|
||||
RAGFlow
|
||||
|
||||
@ -4,15 +4,13 @@ import { Datasets } from './datasets';
|
||||
|
||||
const Home = () => {
|
||||
return (
|
||||
<div className="mx-8">
|
||||
<section>
|
||||
<NextBanner></NextBanner>
|
||||
<section className="h-[calc(100dvh-260px)] overflow-auto scrollbar-thin">
|
||||
<Datasets></Datasets>
|
||||
<Applications></Applications>
|
||||
</section>
|
||||
<section>
|
||||
<NextBanner></NextBanner>
|
||||
<section className="h-[calc(100dvh-260px)] overflow-auto px-10">
|
||||
<Datasets></Datasets>
|
||||
<Applications></Applications>
|
||||
</section>
|
||||
</div>
|
||||
</section>
|
||||
);
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user