mirror of
https://github.com/neosubhamoy/neodlp-extension.git
synced 2025-12-20 00:39:34 +05:30
(chore): initial MVP release v0.1.0
This commit is contained in:
18
components/header.tsx
Normal file
18
components/header.tsx
Normal file
@@ -0,0 +1,18 @@
|
||||
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>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user