app-nimble-capybara-buzz/components/Logo.tsx

17 lines
500 B
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

"use client";
import Link from "next/link";
import React from "react";
export const Logo = () => {
return (
<Link
href="/"
className="font-normal flex space-x-2 items-center text-sm mr-4 text-black px-2 py-1 relative z-20"
>
{/* Replace with actual logo or app name */}
<span className="text-2xl"></span>
<span className="font-bold text-transparent bg-clip-text bg-gradient-to-r from-amber-400 to-yellow-600">كورس حنان</span>
</Link>
);
};