Skip to content
This repository was archived by the owner on Mar 5, 2025. It is now read-only.

Commit 2f1a60a

Browse files
committed
update home page
fix
1 parent c70cffe commit 2f1a60a

2 files changed

Lines changed: 14 additions & 28 deletions

File tree

app/[section]/page.tsx

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
import { HomeContent } from '@/components/home';
2-
import { Card } from '@/components/ui/card';
3-
1+
/* eslint-disable react/no-unescaped-entities */
42
interface HomeProps {
53
params: {
64
section: string;
@@ -10,9 +8,16 @@ interface HomeProps {
108
const Home = async ({ params: { section } }: HomeProps) => {
119
return (
1210
<main className='flex flex-col items-center justify-between'>
13-
<Card className='w-full border-0 border-b-2 border-t-2 border-black md:border-4'>
14-
<HomeContent section={section} />
15-
</Card>
11+
<h1>collectionlog.net update</h1>
12+
<p>
13+
collectionlog.net and it's associated API have been discontinued. Due to lack of time and motivation I have failed to keep the site in good working condition.{' '}
14+
It became increasingly suggish and quite frankly didn't function half of the time.{' '}
15+
A recent necessary update made to the backend architecture turned the entire collection.net ecosystem into a trash can due to incompatibilities with several outdated and deprecated libraries the API uses.{' '}
16+
I simply don't have the desire or the time to get everything fixed up just for it to fall into disarray again in the next 3 or 4 months.{' '}
17+
I sincerely apologize to all of the developers who use the API, the people who browse collectionlog.net daily, and to anyone who submitted a GitHub issue that I ignored.{' '}
18+
It was a good couple years though, and I can't thank the <a href='https://discord.gg/log-hunters-922245627092541450'>Log Hunters</a> Discord server for giving the site a place to call home.{' '}
19+
I'm sure everyone reading this is aware, but the wiki released their own <a href='https://oldschool.runescape.wiki/w/Collection_log/Table'>collection log viewer</a>. It's better than collectionlog.net</p>
20+
<p>Thank you everyone who used the site and those that helped along the way.</p>
1621
</main>
1722
);
1823
};

app/layout.tsx

Lines changed: 3 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -31,28 +31,9 @@ const RootLayout = ({ children }: { children: React.ReactNode }) => {
3131
return (
3232
<html lang='en' suppressHydrationWarning>
3333
<body className='flex h-screen flex-col'>
34-
<RootProvider>
35-
<Navbar />
36-
<div className='flex flex-1 flex-col items-center'>
37-
<div className='w-full md:w-10/12'>{children}</div>
38-
</div>
39-
<footer className='bottom-0 mt-2.5 w-full border-t-4 border-t-black bg-card p-2 shadow-log'>
40-
<div className='flex flex-wrap justify-around text-center text-sm'>
41-
<p>
42-
Oldschool Runescape is a trademark of{' '}
43-
<a href='https://www.jagex.com/en-GB/'>Jagex Ltd.</a>
44-
</p>
45-
<p>
46-
Install the <a href={PLUGIN_URL}>Collection Log plugin</a> on{' '}
47-
<a href='https://runelite.net'>RuneLite</a>
48-
</p>
49-
<p>
50-
Have a problem or found a bug? Submit an issue on{' '}
51-
<a href={GITHUB_URL + '/issues/new/choose'}>GitHub</a>
52-
</p>
53-
</div>
54-
</footer>
55-
</RootProvider>
34+
<div className='flex flex-1 flex-col items-center'>
35+
<div className='w-full md:w-10/12'>{children}</div>
36+
</div>
5637
</body>
5738
<GoogleAnalytics gaId={process.env.GA_MEASUREMENT_ID ?? ''} />
5839
</html>

0 commit comments

Comments
 (0)