mirror of
https://github.com/neosubhamoy/neodlp-extension.git
synced 2025-12-20 00:39:34 +05:30
18 lines
652 B
TypeScript
18 lines
652 B
TypeScript
import { Card } from "@/components/ui/card";
|
|
import { NeoDlpLogo } from "@/components/icons/neodlp";
|
|
|
|
export default function Header() {
|
|
const manifest = browser.runtime.getManifest();
|
|
|
|
return (
|
|
<Card className="p-4">
|
|
<div className="flex items-center justify-center space-x-4">
|
|
<NeoDlpLogo className="w-8 h-8 rounded-lg" />
|
|
<div className="flex flex-col items-start">
|
|
<h1 className="text-sm font-semibold">{manifest.name}</h1>
|
|
<p className="text-xs">Extension - v{manifest.version}</p>
|
|
</div>
|
|
</div>
|
|
</Card>
|
|
)
|
|
} |