import Link from "next/link"; function TopArea() { return (

Learn Languages

Here is a very useful website to help you learn almost every language in the world, including constructed ones.

) } interface LinkAreaProps { href: string, name: string, description: string, color: string } function LinkArea( { href, name, description, color }: LinkAreaProps ) { return (

{name}

{description}

); } function LinkGrid() { return (
{/* */}
) } function Fortune() { return (

Stay hungry, stay foolish.

—— Steve Jobs
); } function Explore() { return (
探索网站
); } export default function Home() { return ( <> ); }