From 26aa2e8e4324266e20c605eef9fceaabf0b6a398 Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Thu, 15 Jan 2026 14:28:40 +0000 Subject: [PATCH] Update components/Logo.tsx --- components/Logo.tsx | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 components/Logo.tsx diff --git a/components/Logo.tsx b/components/Logo.tsx new file mode 100644 index 0000000..2f2ba32 --- /dev/null +++ b/components/Logo.tsx @@ -0,0 +1,16 @@ +"use client"; +import Link from "next/link"; +import React from "react"; + +export const Logo = () => { + return ( + + {/* Replace with actual logo or app name */} +
+ CalcMaster + + ); +};