import { Card, CardHeader, CardBody, Divider, Link } from "@nextui-org/react";
import Image from "next/image";
export default async function Home() {
const homePageCards = (title, message, url) => {
return (
{title}
dramalama/{title}
{message}
);
};
return (
{homePageCards(
"anime",
"Gravity of anime constant state of falling into the depths of happiness and joy",
"https://i.ibb.co/bLJzm3T/Whats-App-Image-2024-05-23-at-22-05-59-09933e5f.jpg"
)}
{homePageCards(
"kdrama",
"Infinity loop I'll watch just one k-drama, ok one more, ok wait...",
"https://ih1.redbubble.net/image.2656505524.2951/poster,504x498,f8f8f8-pad,600x600,f8f8f8.jpg"
)}
{homePageCards(
"movies",
"Dive into a world of thrilling adventure and heart-pounding suspense",
"https://images.hdqwalls.com/download/poster-avengers-endgame-ni-1920x1080.jpg"
)}
);
}
// Test push