import { Navbar } from "@/components/Navbar";
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 (
);
}
function LinkGrid() {
return (
{/* */}
);
}
function Fortune() {
return (
Stay hungry, stay foolish.
—— Steve Jobs
);
}
function Explore() {
return (
);
}
export default function Home() {
return (
<>
>
);
}