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 ( // // // // nextui logo //
//

{title}

//

// dramalama/{title} //

//
//
// // //

{message}

//
//
//
section image

{title}

); }; return (
{homePageCards( "anime", "Gravity of anime constant state of falling into the depths of happiness and joy", "https://cdn3.iconfinder.com/data/icons/letters-and-numbers-1/32/letter_A_red-256.png" )} {homePageCards( "kdrama", "Infinity loop I'll watch just one k-drama, ok one more, ok wait...", "https://cdn3.iconfinder.com/data/icons/letters-and-numbers-1/32/letter_K_red-512.png" )} {homePageCards( "movies", "Dive into a world of thrilling adventure and heart-pounding suspense", "https://cdn3.iconfinder.com/data/icons/letters-and-numbers-1/32/letter_M_red-512.png" )}
); } // Test push