From 20009aed53d8864c9204d43a17895168a777d2cc Mon Sep 17 00:00:00 2001 From: Ilan Bigio Date: Mon, 16 Dec 2024 13:06:08 -0800 Subject: Initial commit --- webapp/components/top-bar.tsx | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 webapp/components/top-bar.tsx (limited to 'webapp/components/top-bar.tsx') diff --git a/webapp/components/top-bar.tsx b/webapp/components/top-bar.tsx new file mode 100644 index 0000000..6061c6c --- /dev/null +++ b/webapp/components/top-bar.tsx @@ -0,0 +1,37 @@ +import React from "react"; +import { Button } from "@/components/ui/button"; +import { BookOpen, FileText } from "lucide-react"; +import Link from "next/link"; + +const TopBar = () => { + return ( +
+
+ + + +

OpenAI Call Assistant

+
+
+ +
+
+ ); +}; + +export default TopBar; -- cgit v1.2.3