"use client";

import { motion } from "framer-motion";
import Image from "next/image";

export function Logo() {
  return (
    <div className="">
      <motion.a
        href="#"
        className="flex items-center"
        whileHover={{ scale: 1.05 }}
        whileTap={{ scale: 0.95 }}
      >
        <Image
          src="/logo.png"
          alt="Omicron Logo"
          width={200}
          height={50}
          priority
          className="object-contain"
        />
      </motion.a>
    </div>
  );
}
