// Filename - pages/index.js import React from "react"; import './index.css'; function CourseCard({ imageUrl, title, text }) { return (
...
{title}

{text}

Go somewhere
); } function PersonCard({ imageUrl, name, username, socialLinks, websites }) { return (
...

{name}

@{username} | {websites}

{socialLinks.map((link, index) => ( ))}

8471

Interactions

8512

Prepared Students

4751

Something

); } // Componenta principală function Home() { return (

Dashboard


{/* Cursurile tale */}

Your courses

Connect with people

); } export default Home;