Added disclaimer about this being a fork, before total asset adjustments. Linking/mentioning the original projects as a start.

This commit is contained in:
2025-10-27 09:20:36 +08:00
parent 31ee652bff
commit d0d3373b3b
5 changed files with 67 additions and 14 deletions

View File

@@ -21,9 +21,64 @@ export default function Homepage() {
<IconLinkCard title='Feedback' iconText='pest_control' onClick={() => setFeedbackModalOpen(true)} />
<IconLinkCard title='About' iconText='help_outline' href='/about' />
</div>
<FeedbackModal isOpen={isFeedbackModalOpen} setIsOpen={val => setFeedbackModalOpen(val)} />
<ManageDataModal variant='plugin' isOpen={isPluginModalOpen} setIsOpen={val => setPluginModalOpen(val)} />
<p className='text-3xl small-caps ml-1 mt-2'>Updates</p>
{/* === Bold Disclaimer Section === */}
<div className='bg-red-900/90 border-l-4 border-red-500 text-red-100 rounded-lg px-6 py-5 mt-8 mx-auto max-w-5xl shadow-lg'>
<p className='text-lg font-bold uppercase tracking-wide mb-2'>
Important Disclaimer
</p>
<p className='text-sm leading-relaxed'>
This project is an <strong>independent fork</strong> of the open-source{' '}
<a
href='https://github.com/osrs-reldo/os-league-tools'
target='_blank'
rel='noopener noreferrer'
className='underline font-semibold text-red-200 hover:text-white'
>
OS League Tools
</a>{' '}
created by the original contributors such as{' '}
<a
href='https://github.com/chaiinchomp'
target='_blank'
rel='noopener noreferrer'
className='underline font-semibold text-red-200 hover:text-white'
>
chaiinchomp
</a>
{', '}
<a
href='https://github.com/JamesShelton140'
target='_blank'
rel='noopener noreferrer'
className='underline font-semibold text-red-200 hover:text-white'
>
James Shelton
</a>
{', and '}
<a
href='https://github.com/tylerthardy'
target='_blank'
rel='noopener noreferrer'
className='underline font-semibold text-red-200 hover:text-white'
>
Tyler Hardy
</a>
.
It is <strong>not affiliated, associated, authorized, endorsed by, or connected</strong> in any way
with the original project or its maintainers.
</p>
<p className='text-sm mt-3 italic text-red-200'>
Full credit and appreciation go to the original developers and contributors.
This fork continues separately, expanding in different technical directions.
</p>
</div>
<p className='text-3xl small-caps ml-1 mt-6'>Updates</p>
{newsPosts.map(newsPost => (
<NewsCard
key={newsPost.title}