2025-10-25 08:37:07 +00:00
|
|
|
import { Box, Container, Title, Text, SimpleGrid, Center } from "@mantine/core";
|
2025-10-24 22:20:37 +00:00
|
|
|
import AlbumCard from "../Components/AlbumCard";
|
|
|
|
|
import { albums } from "../lib/list";
|
|
|
|
|
|
|
|
|
|
export default function HomePage() {
|
|
|
|
|
return (
|
2025-10-25 08:37:07 +00:00
|
|
|
<>
|
|
|
|
|
<Box className="min-h-screen bg-gray-900">
|
|
|
|
|
<Container size="xl" className="py-16">
|
|
|
|
|
<Box className="mb-12 text-center text-pretty">
|
2026-05-14 11:47:47 +00:00
|
|
|
<Title order={1} className="mb-4 text-6xl font-bold text-white">
|
2025-10-25 08:37:07 +00:00
|
|
|
Linkin Park Albums
|
|
|
|
|
</Title>
|
|
|
|
|
<Text size="xl" className="text-gray-400">
|
|
|
|
|
On this website you can find all the albums of Linkin Park. Their new Live Versions with Emily made by fans and
|
|
|
|
|
the official Live Versions from the Linkin Park Youtube Channel.
|
|
|
|
|
</Text>
|
|
|
|
|
</Box>
|
2025-10-24 22:20:37 +00:00
|
|
|
|
2025-10-25 18:58:22 +00:00
|
|
|
<SimpleGrid cols={{ base: 1, sm: 2, md: 3 }} className="gap-8">
|
2025-10-25 08:37:07 +00:00
|
|
|
{albums.map((album) => (
|
|
|
|
|
<AlbumCard key={album.id} album={album} />
|
|
|
|
|
))}
|
|
|
|
|
</SimpleGrid>
|
|
|
|
|
</Container>
|
|
|
|
|
</Box>
|
|
|
|
|
<Box className="bg-gray-900 pb-12">
|
|
|
|
|
<Center>
|
2025-10-25 18:58:22 +00:00
|
|
|
<Text size="sm" className="px-4 text-gray-400 sm:px-0">
|
2025-10-25 08:37:07 +00:00
|
|
|
Disclaimer: This website is not affiliated with Linkin Park or any of its members. <br />
|
|
|
|
|
All rights reserved to the respective owners. This website is a fan-made project and is not intended to be used
|
|
|
|
|
for commercial purposes.
|
|
|
|
|
<br />
|
|
|
|
|
The Album Covers are the property of the respective owners.
|
|
|
|
|
</Text>
|
|
|
|
|
</Center>
|
|
|
|
|
</Box>
|
|
|
|
|
</>
|
2025-10-24 22:20:37 +00:00
|
|
|
);
|
|
|
|
|
}
|