Hey there, I am
Rasheed Olatunde
> Software developer
// find my profile on Github:
const githubLink = "https://github.com/olatunde1998"
import { useTranslations } from "next-intl";
import { motion } from "framer-motion";
export default function Welcome() {
const t = useTranslations("HelloPage");
return (
<div className="text-primary">
<span className="md:text-sm">
{t("greetings")}
</span>
<h1 className="text-5xl text-accent">
{t("name")}
</h1>
<h2 className="text-accent-primary">
> {t("jobTitle")}
</h2>
</div>
)}