import { Box, Container, Title, Text, SimpleGrid } from "@mantine/core"; import AlbumCard from "../Components/AlbumCard"; import { albums } from "../lib/list"; export default function HomePage() { return ( Linkin Park Albums Explore the complete discography of Linkin Park {albums.map((album) => ( ))} ); }